/* HEADER */
header {
    margin-bottom: 60px;
}
/* ===== HERO SECTION ===== */
.hero {
    text-align: center;
    padding: 180px 40px 140px;
    /* Dégradé doux et profond */
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.98) 0%,
        rgba(15, 30, 50, 0.95) 50%,
        rgba(10, 22, 40, 0.98) 100%
    );
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

/* --- Effet de lumière subtile (optionnel) --- */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 217, 255, 0.08) 0%,
        rgba(0, 217, 255, 0.02) 50%,
        transparent 70%
    );
    border-radius: 50%;
    z-index: 0;
}

/* --- Badge "Offre Spéciale" --- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00D9FF, #00B8D9);
    color: #0A1628;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 50px;
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

/* --- Animation pour le badge --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* --- Titre principal --- */
.hero h1 {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 32px;
    color: #FFFFFF;
    line-height: 1.1;
}

.hero h1 .highlight {
    color: #00D9FF;
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.3);
}

/* --- Sous-titre --- */
.hero-subtitle {
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 24px;
    font-weight: 600;
}

/* --- Description --- */
.hero-description {
    font-size: 18px;
    color: #A0AEC0;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* --- Bouton principal --- */
.hero a.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 23px;
    background: linear-gradient(135deg, #00D9FF, #00B8D9);
    color: #0A1628;
    padding: 20px 48px;
    border-radius: 50px;
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
    margin: 50px auto;
    box-shadow: 0 12px 32px rgba(0, 217, 255, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero a.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 217, 255, 0.5);
    background: linear-gradient(135deg, #00E7FF, #00C8FF);
}

/* --- Note bonus --- */
.hero-note {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(0, 217, 255, 0.1);
    padding: 20px 40px;
    border-radius: 50px;
    border: 1px solid rgba(0, 217, 255, 0.3);
    font-size: 16px;
    color: #00D9FF;
    font-weight: 600;
    margin: 0 auto;
    backdrop-filter: blur(8px);
}

.hero-note .note-icon {
    font-size: 24px;
}

.hero-note .note-text strong {
    color: #FFFFFF;
}




/* OFFER SECTION */
.offer-section {
    max-width: 1400px;
    margin: 150px auto 100px;
    padding: 0 40px;
}

.offer-section h2 {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #A0AEC0;
    margin-bottom: 60px;
}

.format-block {
    margin-bottom: 80px;
}

.format-title {
    font-size: 32px;
    font-weight: 900;
    color: #00D9FF;
    margin-bottom: 32px;
    text-align: center;
}

/* PRICING GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.pricing-card {
    background: #1A2332;
    padding: 40px 32px;
    border-radius: 16px;
    border: 2px solid rgba(0, 217, 255, 0.2);
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: #00D9FF;
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.2);
}

.pricing-card.featured {
    border-color: #00D9FF;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), transparent);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #00D9FF;
    color: #0A1628;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-level {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 900;
    color: #00D9FF;
    margin-bottom: 32px;
}

/* PRICING VIDEO */
.pricing-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 24px;
    background: #0A1628;
    border: 2px solid rgba(0, 217, 255, 0.2);
}

.pricing-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.pricing-features li {
    font-size: 14px;
    color: #A0AEC0;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00D9FF;
    font-weight: 900;
}

.pricing-duration {
    font-size: 13px;
    color: #00D9FF;
    font-weight: 600;
    margin-bottom: 12px;
}

.pricing-example {
    font-size: 13px;
    color: #A0AEC0;
    font-style: italic;
}

/* BONUS SECTION */
.bonus-section {
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

.bonus-card {
    background: linear-gradient(135deg, #00D9FF, #00B8D9);
    color: #0A1628;
    padding: 22px;
    border-radius: 24px;
    text-align: center;
}

.bonus-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.bonus-card h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 16px;
}

.bonus-card p {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.bonus-card strong {
    font-weight: 900;
}

.bonus-note {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 16px;
}

/* CALENDLY CTA */
.calendly-cta {
    max-width: 1000px;
    margin: 0 auto 100px;
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, #1A2332, #0A1628);
    border-radius: 24px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 8px 40px rgba(0, 217, 255, 0.1);
}

.calendly-cta h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.calendly-cta p {
    font-size: 18px;
    color: #A0AEC0;
    margin-bottom: 40px;
}

.calendly-inline-widget {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* FAQ */
.faq-section {
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

.faq-section h2 {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: #FFFFFF;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #1A2332;
    border-radius: 12px;
    border: 2px solid rgba(0, 217, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item a {
    text-decoration: none;
}

.faq-item:hover {
    border-color: #00D9FF;
}

.faq-question {
    padding: 24px;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "+";
    font-size: 32px;
    color: #00D9FF;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    /* margin-top: 2px; */
    font-size: 16px;
    color: #A0AEC0;
    line-height: 1.6;
    margin-bottom: 12px;
}

.faq-answer strong {
    color: #00D9FF;
    font-weight: 700;
}

/* FINAL CTA */
.final-cta {
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 80px 40px;
    background: linear-gradient(135deg, #1A2332, #0A1628);
    border-radius: 24px;
    text-align: center;
}

.final-cta h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.final-cta p {
    font-size: 18px;
    color: #A0AEC0;
    margin-bottom: 40px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    /* --- HERO --- */
    .hero {
        padding: 80px 20px 60px; /* On réduit drastiquement les marges internes */
        border-radius: 0 0 30px 30px; /* Optionnel : Enlève l'arrondi du haut sur mobile car il colle au menu */
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 20px;
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 38px; /* Plus petit pour éviter les césures bizarres */
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 20px; /* Réduit pour marquer la hiérarchie */
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .hero a.btn-primary {
        padding: 16px 24px;
        font-size: 16px;
        width: 100%; /* Le bouton prend toute la largeur sur mobile */
        margin: 30px auto;
    }

    .hero-note {
        flex-direction: column; /* Empile l'icône et le texte */
        text-align: center;
        padding: 16px 20px;
        font-size: 14px;
    }

    /* --- RESTE DE LA PAGE --- */
    .offer-section,
    .bonus-section,
    .faq-section {
        padding: 0 20px;
        margin: 60px auto; /* Réduit l'espace entre les sections */
    }

    .offer-section h2,
    .faq-section h2,
    .calendly-cta h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .final-cta h2 {
        font-size: 32px;
    }

    .format-title {
        font-size: 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 30px 20px; /* Réduit l'espace dans les cartes de prix */
    }

    .bonus-card {
        padding: 30px 20px;
    }

    .bonus-card h3 {
        font-size: 24px;
    }

    .calendly-cta {
        padding: 40px 20px;
        margin: 60px 20px; /* Garde une marge avec les bords de l'écran */
    }
    
    .final-cta {
        padding: 60px 20px;
        margin: 60px 20px 80px;
    }
    
    .final-cta a.btn-primary {
        width: 100%; /* Bouton pleine largeur */
        box-sizing: border-box;
    }
}