:root {
    --primary: #000000;
    --neon: #CCFF00;
    --neon-glow: #6B18AA;
    --accent: #020F59;
    --bg: #FFFFFF;
    --text: #333333;
    --gray: #f4f4f4;
}

body.dark-mode {
    --bg: #0a0a0a;
    --text: #ffffff;
    --gray: #1a1a1a;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    transition: background 0.3s;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.dark-mode header {
    background: rgba(10,10,10,0.95);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--neon);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-icon {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-icon:hover {
    transform: scale(1.1);
}

.btn-cta {
    background: var(--neon);
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(204, 255, 0, 0.3);
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 255, 0, 0.5);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== HERO SECTION AVEC 2 DRONES CÔTE À CÔTE ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 5% 5rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.dark-mode .hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px;
}

/* Titre principal */
.hero-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-glow), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text);
    opacity: 0.8;
}

/* Conteneur des 2 drones */
.drones-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Carte de drone */
.drone-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem 2rem;
    border: 2px solid rgba(107, 24, 170, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.dark-mode .drone-card {
    background: rgba(26, 26, 26, 0.9);
    border-color: rgba(204, 255, 0, 0.2);
}

.drone-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    border-color: var(--neon);
}

/* TEXTE GÉANT EN ARRIÈRE-PLAN */
.drone-background-text {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    width: 100%;
    text-align: center;
}

.morph-text {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px #CCFF00;
    text-stroke: 2px #CCFF00;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    user-select: none;
    will-change: transform, filter;
    text-shadow: 
        0 0 10px rgba(204, 255, 0, 0.3),
        0 0 20px rgba(204, 255, 0, 0.2),
        0 0 30px rgba(204, 255, 0, 0.1);
}

.dark-mode .morph-text {
    -webkit-text-stroke: 2px #CCFF00;
    text-stroke: 2px #CCFF00;
    text-shadow: 
        0 0 15px rgba(204, 255, 0, 0.5),
        0 0 30px rgba(204, 255, 0, 0.3),
        0 0 45px rgba(204, 255, 0, 0.2);
}

/* EFFET HOVER MORPH - TEXTE DEVIENT FLOU */
.drone-card:hover .morph-text {
    filter: blur(15px);
    transform: scale(1.1);
    -webkit-text-stroke: 1px #CCFF00;
    text-stroke: 1px #CCFF00;
    opacity: 0.7;
}

/* Image du drone */
.drone-image-wrapper {
    position: relative;
    perspective: 2000px;
    transform-style: preserve-3d;
    z-index: 2;
    margin-bottom: 2rem;
}

.drone-image-container {
    position: relative;
    padding: 2rem 1rem;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.drone-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, filter;
    position: relative;
    z-index: 2;
}

/* EFFET 3D AU SURVOL DE L'IMAGE */
.drone-card:hover .drone-image {
    filter: drop-shadow(0 40px 80px rgba(204, 255, 0, 0.4));
    transform: translateZ(30px) scale(1.05);
}

/* Particules flottantes */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--neon);
    border-radius: 50%;
    opacity: 0.5;
    animation: particle-float 4s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 75%;
    animation-delay: 1.5s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 25%;
    animation-delay: 3s;
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.5; }
    50% { transform: translateY(-25px) scale(1.3); opacity: 1; }
}

/* Informations du drone */
.drone-info {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* 1️⃣ CACHER LE TITRE H3 SUR PC/MAC */
.drone-info h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text);
    display: none; /* ✅ CACHÉ SUR PC */
}

/* Afficher uniquement sur mobile */
@media (max-width: 768px) {
    .drone-info h3 {
        display: block; /* ✅ VISIBLE SUR MOBILE */
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .drone-info h3 {
        font-size: 1rem;
    }
}

.drone-specs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.spec {
    background: rgba(204, 255, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.drone-price {
    margin-bottom: 1.5rem;
}

.price-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-glow), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-compare {
    display: inline-block;
    background: var(--neon);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(204, 255, 0, 0.3);
    transition: all 0.3s;
}

.btn-compare:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(204, 255, 0, 0.5);
}

/* Sélecteur de drone */
.drone-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.selector-btn {
    padding: 1rem 2rem;
    border: 2px solid var(--text);
    background: transparent;
    color: var(--text);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.selector-btn:hover {
    background: var(--text);
    color: var(--bg);
}

.selector-btn.active {
    background: var(--neon);
    border-color: var(--neon);
    color: #000;
}

/* Tableau comparatif */
.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.dark-mode .comparison-table {
    background: #1a1a1a;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--neon);
    color: #000;
    font-weight: 900;
    padding: 1.5rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.3s;
}

.dark-mode .comparison-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-row:hover {
    background: rgba(204, 255, 0, 0.05);
}

.feature-name {
    font-weight: 700;
}

.drone-column {
    text-align: center;
}

.drone-column.winner {
    color: var(--neon-glow);
    font-weight: 900;
    position: relative;
}

.drone-column.winner::before {
    content: '✓';
    position: absolute;
    left: -20px;
}

.section {
    padding: 5rem 5%;
}

.section.bg-light {
    background: var(--gray);
}

.dark-mode .section.bg-light {
    background: #0f0f0f;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--text);
    background: transparent;
    color: var(--text);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    background: var(--text);
    color: var(--bg);
}

.filter-btn.active {
    background: var(--neon-glow);
    border-color: var(--neon-glow);
    color: white;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.price-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    transition: 0.4s;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.dark-mode .price-card {
    background: #1a1a1a;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* 2️⃣ BADGE "MEILLEUR PRIX" OPTIMISÉ MOBILE */
.best-price {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--neon);
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.85rem;
    animation: pulse 2s infinite;
    white-space: nowrap; /* ✅ Empêche le retour à la ligne */
    z-index: 10;
}

@media (max-width: 768px) {
    .best-price {
        font-size: 0.65rem;
        padding: 3px 8px;
        top: -5px;
        right: -5px;
    }
}

@media (max-width: 480px) {
    .best-price {
        font-size: 0.6rem;
        padding: 2px 6px;
        top: -3px;
        right: -3px;
    }
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-glow);
    margin: 1rem 0;
}

.price-card .rating {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.price-card .stock {
    margin: 0.5rem 0;
    font-weight: 600;
}

.price-card .shipping {
    margin: 0.5rem 0;
    opacity: 0.7;
}

.alert-section {
    background: linear-gradient(135deg, var(--neon-glow) 0%, var(--accent) 100%);
    color: white;
}

.alert-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.alert-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.alert-box p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

#alert-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#alert-form select,
#alert-form input {
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    cursor: pointer;
    color: white;
}

.checkbox-container input {
    width: auto;
    cursor: pointer;
}

.btn-primary {
    background: var(--neon);
    color: #000;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(204, 255, 0, 0.3);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(204, 255, 0, 0.5);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.dark-mode .accordion-item {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.05);
}

.accordion-item:hover {
    border-color: var(--neon);
}

.accordion-header {
    padding: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1.1rem;
}

.accordion-header:hover {
    background: var(--neon);
    color: #000;
}

.accordion-content {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.7;
    opacity: 0.8;
}

footer {
    background: var(--primary);
    color: white;
    padding: 3rem 5% 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    text-align: center;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--neon);
}

.copyright {
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== STYLES POUR LES SÉLECTEURS DE PACKS ===== */

.pack-selector {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(204, 255, 0, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(204, 255, 0, 0.2);
}

.pack-selector.hidden {
    display: none;
}

.pack-title {
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.pack-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.pack-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.dark-mode .pack-btn {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.1);
}

.pack-btn:hover {
    transform: translateY(-5px);
    border-color: var(--neon);
    box-shadow: 0 10px 30px rgba(204, 255, 0, 0.2);
}

.pack-btn.active {
    background: var(--neon);
    border-color: var(--neon);
    color: #000;
}

.dark-mode .pack-btn.active {
    background: var(--neon);
    color: #000;
}

.pack-name {
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    display: block;
}

.pack-desc {
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.8;
    margin-bottom: 0.75rem;
    display: block;
}

.pack-content {
    font-size: 0.8rem;
    line-height: 1.5;
    opacity: 0.7;
    display: block;
}

.pack-btn.active .pack-content {
    opacity: 0.9;
}

/* ===== RESPONSIVE MOBILE OPTIMISÉ ===== */

/* Tablette et mobile */
@media (max-width: 1024px) {
    /* Les 2 drones restent côte à côte sur tablette */
    .drones-comparison {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .drone-card {
        padding: 1.5rem 1rem;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        font-size: 0.9rem;
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }
}

/* MOBILE - MODIFICATIONS SPÉCIFIQUES */
@media (max-width: 768px) {
    .hero {
        padding: 8rem 3% 3rem;
    }

    .main-title {
        font-size: 2rem;
    }

    .main-subtitle {
        font-size: 1rem;
    }

    /* ✅ Les 2 drones RESTENT CÔTE À CÔTE sur mobile */
    .drones-comparison {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .morph-text {
        font-size: clamp(1rem, 4vw, 1.8rem);
        -webkit-text-stroke: 1.5px #CCFF00;
    }

    .drone-card {
        padding: 1.5rem 0.75rem;
    }

    .drone-image {
        max-width: 250px;
    }

    .drone-info h3 {
        font-size: 1.2rem;
    }

    .drone-specs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .spec {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .price-value {
        font-size: 1.8rem;
    }

    .btn-compare {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    /* ✅ Pack buttons: 2 PAR LIGNE sur mobile */
    .pack-buttons {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
    }

    .pack-btn {
        padding: 1rem;
    }

    .pack-name {
        font-size: 0.9rem;
    }

    .pack-desc {
        font-size: 0.75rem;
    }

    .pack-content {
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .pack-title {
        font-size: 1.1rem;
    }

    .pack-selector {
        padding: 1.5rem 1rem;
    }

    /* ✅ Price cards: MAX 100px de hauteur */
    .price-card {
        padding: 0.75rem;
        min-height: auto;
        max-height: 100px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .price-card h3 {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .price-card .price {
        font-size: 1.3rem;
        margin: 0.25rem 0;
    }

    .price-card .rating,
    .price-card .stock,
    .price-card .shipping {
        font-size: 0.7rem;
        margin: 0.15rem 0;
        display: none; /* Cacher pour gagner de la place */
    }

    .price-card .rating {
        display: block; /* Garder uniquement la note */
    }

    .best-price {
        font-size: 0.65rem;
        padding: 3px 8px;
        top: -5px;
        right: -5px;
    }

    .price-card .btn-cta {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        margin-top: 0.25rem;
    }

    /* Grid de prix en 2 colonnes sur mobile */
    .price-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn-cta {
        display: none;
    }

    .comparison-header,
    .comparison-row {
        font-size: 0.75rem;
        padding: 0.75rem;
    }

    .drone-column.winner::before {
        left: -12px;
        font-size: 0.8rem;
    }
}

/* TRÈS PETIT MOBILE (iPhone SE, etc.) */
@media (max-width: 480px) {
    .morph-text {
        font-size: clamp(0.85rem, 3.5vw, 1.5rem);
        -webkit-text-stroke: 1px #CCFF00;
    }

    /* Les 2 drones toujours côte à côte même sur petit écran */
    .drones-comparison {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .drone-card {
        padding: 1rem 0.5rem;
    }

    .drone-image {
        max-width: 150px;
    }

    .drone-info h3 {
        font-size: 1rem;
    }

    .price-value {
        font-size: 1.5rem;
    }

    .spec {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }

    /* Pack buttons toujours 2 par ligne */
    .pack-buttons {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem;
    }

    .pack-btn {
        padding: 0.75rem 0.5rem;
    }

    .pack-name {
        font-size: 0.8rem;
    }

    .pack-desc {
        font-size: 0.7rem;
    }

    .pack-content {
        font-size: 0.65rem;
    }

    /* Price cards encore plus compactes */
    .price-card {
        max-height: 90px;
        padding: 0.5rem;
    }

    .price-card h3 {
        font-size: 0.75rem;
    }

    .price-card .price {
        font-size: 1.1rem;
    }

    .price-card .rating {
        font-size: 0.65rem;
    }

    .price-card .btn-cta {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr 0.8fr 0.8fr;
        font-size: 0.7rem;
        padding: 0.5rem;
    }
}

/* ===== SÉLECTEUR DE LANGUE ===== */

.language-selector {
    position: relative;
    margin-right: 1rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--text);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
    color: var(--text);
}

.lang-btn:hover {
    background: var(--neon);
    border-color: var(--neon);
    color: #000;
}

.lang-btn .flag {
    font-size: 1.2rem;
}

.lang-btn .lang-code {
    font-size: 0.9rem;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1000;
    min-width: 180px;
}

.dark-mode .lang-dropdown {
    background: #1a1a1a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
}

.lang-option:hover {
    background: var(--neon);
    color: #000;
}

.lang-option .flag {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .lang-btn {
        padding: 0.4rem 0.8rem;
    }
    
    .lang-btn .lang-code {
        display: none;
    }
    
    .lang-dropdown {
        right: auto;
        left: 0;
    }
}
