/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Montserrat:wght@300;400;500;600&family=Cinzel:wght@400;500&display=swap');

:root {
    --emeraude: #1A3B32;
    --emeraude-light: #2A4F42;
    --or: #D4AF37;
    --or-light: #E8CB6A;
    --bleu-nuit: #1D2A44;
    --beige: #F9F6F0;
    --beige-warm: #F4EFE4;
    --bordeaux: #6B2737;

    --font-title: 'Playfair Display', Georgia, serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    --font-decorative: 'Cinzel', Georgia, serif;

    --shadow-soft: 0 4px 20px rgba(26, 59, 50, 0.06);
    --shadow-medium: 0 8px 40px rgba(26, 59, 50, 0.12);
    --shadow-luxury: 0 20px 60px rgba(26, 59, 50, 0.18);

    --radius: 2px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--bleu-nuit);
    background: var(--beige);
    font-weight: 400;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(26, 59, 50, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 1.25rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-family: var(--font-title);
    font-size: 1.35rem;
    color: var(--or);
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.logo span {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 300;
    font-size: 1.1rem;
    color: var(--beige);
    opacity: 0.75;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--beige);
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--or);
    transition: width 0.3s ease;
}

.nav-link:hover { color: var(--or); }
.nav-link:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    font-size: 1.6rem;
    color: var(--or);
    padding: 0.25rem 0.5rem;
}

.cta-header {
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.7rem 1.4rem;
    border: 1px solid var(--or);
    color: var(--or);
    transition: var(--transition);
    font-weight: 500;
}

.cta-header:hover {
    background: var(--or);
    color: var(--emeraude);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--or);
    color: var(--emeraude);
    border-color: var(--or);
}

.btn-primary:hover {
    background: transparent;
    color: var(--or);
    border-color: var(--or);
}

.btn-offer {
    background: var(--bleu-nuit);
    color: var(--beige);
    border-color: var(--bleu-nuit);
    margin-top: 1rem;
}

.btn-offer:hover {
    background: transparent;
    color: var(--bleu-nuit);
    border-color: var(--or);
}

.btn-whatsapp {
    background: var(--or);
    color: var(--emeraude);
    border-color: var(--or);
}

.btn-whatsapp:hover {
    background: transparent;
    color: var(--or);
    border-color: var(--or);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('images/hero-paysage.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 6rem 0;
}



.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 59, 50, 0.7) 0%,
        rgba(26, 59, 50, 0.55) 50%,
        rgba(26, 59, 50, 0.8) 100%
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    color: var(--beige);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-title em {
    font-style: italic;
    color: var(--or);
    font-weight: 400;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    color: var(--beige);
    opacity: 0.85;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-text {
    font-size: 1.05rem;
    color: var(--beige);
    opacity: 0.8;
    max-width: 620px;
    margin: 0 auto 3rem;
    line-height: 1.85;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.hero-subtext {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--beige);
    opacity: 0.6;
}

/* ===== SECTIONS ===== */
.section { padding: 7rem 0; }

.section-title {
    font-family: var(--font-title);
    font-size: clamp(1.9rem, 4vw, 3rem);
    color: var(--emeraude);
    text-align: center;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--or);
    margin: 1.5rem auto 0;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: var(--or);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 400;
    opacity: 0.85;
}

/* ===== PROBLEM ===== */
.problem { background: var(--beige); }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-bottom: 4rem;
}

.card {
    background: #FFFFFF;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(26, 59, 50, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--or), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(212, 175, 55, 0.3);
}

.card:hover::before { opacity: 1; }

.card-icon {
    font-size: 1.5rem;
    color: var(--or);
    margin-bottom: 1.25rem;
    font-family: var(--font-decorative);
}

.card-title {
    font-family: var(--font-title);
    font-size: 1.25rem;
    color: var(--emeraude);
    margin-bottom: 0.85rem;
    font-weight: 600;
}

.card-text {
    font-size: 0.92rem;
    color: var(--bleu-nuit);
    line-height: 1.75;
    opacity: 0.85;
    font-weight: 300;
}

.transition-text {
    text-align: center;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--emeraude);
    max-width: 720px;
    margin: 4rem auto 0;
    padding: 3rem 2rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    line-height: 1.6;
    font-weight: 400;
}

/* ===== WHO ===== */
.who {
    background: var(--emeraude);
    color: var(--beige);
    position: relative;
}

.who::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.who .section-title { color: var(--or); }
.who .section-title::after { background: var(--or); }
.who .section-subtitle { color: var(--beige); opacity: 0.7; }

.who-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.who-text p {
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--beige);
    opacity: 0.88;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.who-image {
    display: flex;
    justify-content: center;
}

.who-image img {
    max-width: 100%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1rem;
}

.signature-quote {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    color: var(--or);
    text-align: center;
    padding: 2.5rem 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* ===== PROCESS ===== */
.process { background: var(--beige-warm); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 1rem;
    position: relative;
}

.step-number {
    font-family: var(--font-decorative);
    font-size: 3rem;
    color: var(--or);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 1.5rem;
    display: block;
    letter-spacing: 2px;
}

.step-title {
    font-family: var(--font-title);
    font-size: 1.25rem;
    color: var(--emeraude);
    margin-bottom: 0.85rem;
    font-weight: 600;
}

.step-text {
    font-size: 0.9rem;
    color: var(--bleu-nuit);
    opacity: 0.8;
    line-height: 1.75;
    font-weight: 300;
}

/* ===== OFFERS ===== */
.offers { background: #FFFFFF; }

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.offer-card {
    background: var(--beige);
    padding: 3rem 2.25rem;
    border: 1px solid rgba(26, 59, 50, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.offer-card.featured {
    border: 1px solid var(--or);
    background: linear-gradient(180deg, var(--beige) 0%, #FFFEF9 100%);
    box-shadow: var(--shadow-soft);
}

.offer-card.featured:hover {
    box-shadow: var(--shadow-luxury);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--or);
    color: var(--emeraude);
    padding: 0.4rem 1.2rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.offer-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--emeraude);
    font-weight: 600;
    margin-top: 0.5rem;
}

.offer-details {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.offer-duration {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bleu-nuit);
    opacity: 0.7;
}

.offer-price {
    font-family: var(--font-title);
    font-size: 1.7rem;
    color: var(--or);
    font-weight: 600;
}

.offer-description {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--bleu-nuit);
    opacity: 0.85;
    flex-grow: 1;
    font-weight: 300;
}

.offers-reassurance {
    text-align: center;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1rem;
    color: var(--bleu-nuit);
    opacity: 0.7;
    margin-top: 4rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--beige-warm); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #FFFFFF;
    padding: 2.5rem 2rem;
    border-left: 2px solid var(--or);
    box-shadow: var(--shadow-soft);
}

.testimonial-text {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--emeraude);
    line-height: 1.75;
    opacity: 0.75;
}

/* ===== CITATIONS ===== */
.citations {
    background: var(--bleu-nuit);
    padding: 6rem 0;
    color: var(--beige);
}

.carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 180px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    padding: 0 4rem;
    text-align: center;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.25rem, 2.8vw, 1.9rem);
    color: var(--or);
    line-height: 1.6;
    font-weight: 300;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--or);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
    line-height: 1;
}

.carousel-btn:hover {
    background: var(--or);
    color: var(--bleu-nuit);
    border-color: var(--or);
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

/* ===== FAQ ===== */
.faq { background: var(--beige); }

.accordion {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion-item {
    background: #FFFFFF;
    border: 1px solid rgba(26, 59, 50, 0.1);
    transition: var(--transition);
}

.accordion-item:hover { border-color: rgba(212, 175, 55, 0.4); }

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.accordion-title {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--emeraude);
    line-height: 1.4;
}

.accordion-icon {
    color: var(--or);
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-header[aria-expanded="true"] .accordion-icon { transform: rotate(180deg); }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-content p {
    padding: 0 2rem 1.75rem;
    color: var(--bleu-nuit);
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.85;
    font-weight: 300;
}

/* ===== CTA FINAL ===== */
.cta-final {
    background: linear-gradient(160deg, var(--emeraude) 0%, var(--bleu-nuit) 100%);
    text-align: center;
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-final .section-title {
    color: var(--beige);
    position: relative;
    z-index: 1;
}

.cta-final .section-title::after { background: var(--or); }

.cta-text {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    color: var(--beige);
    opacity: 0.85;
    max-width: 640px;
    margin: 3rem auto;
    line-height: 1.6;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.cta-final .btn {
    position: relative;
    z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
    background: #0F1F1A;
    color: var(--beige);
    padding: 4rem 0 3rem;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--or);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-baseline {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.05rem;
    opacity: 0.7;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social a {
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    transition: var(--transition);
    color: var(--beige);
}

.footer-social a:hover { color: var(--or); opacity: 1; }

.footer-location {
    font-size: 0.85rem;
    opacity: 0.55;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0.5rem 0;
    font-size: 0.82rem;
}

.footer-nav a {
    opacity: 0.65;
    transition: var(--transition);
    color: var(--beige);
}

.footer-nav a:hover { color: var(--or); opacity: 1; }

.footer-copyright {
    font-size: 0.75rem;
    opacity: 0.45;
    margin-top: 1.5rem;
    letter-spacing: 0.5px;
    font-weight: 300;
}

/* ===== WHATSAPP FLOTTANT ===== */
.float-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.float-whatsapp:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

.float-whatsapp svg { width: 28px; height: 28px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .cards-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .offers-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .who-content { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }
    .section { padding: 5rem 0; }
    .hero { min-height: 85vh; padding: 5rem 0; }
    .hero-title { font-size: 2.5rem; }

    .nav-toggle { display: block; }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--emeraude);
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        border-top: 1px solid rgba(212, 175, 55, 0.15);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav { position: relative; }

    .cards-grid, .steps-grid { grid-template-columns: 1fr; }

    .carousel-slide { padding: 0 2.5rem; font-size: 1.1rem; }
    .carousel-btn { width: 36px; height: 36px; font-size: 1.1rem; }

    .float-whatsapp {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
    }

    .float-whatsapp svg { width: 24px; height: 24px; }

    .footer-social { gap: 1.25rem; }
    .footer-nav { gap: 1.25rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.1rem; }
    .section-title { font-size: 1.7rem; }
    .btn { width: 100%; padding: 1rem 1.5rem; }
    .hero-actions { width: 100%; }
    .card, .offer-card, .testimonial-card { padding: 2rem 1.5rem; }
}

/* ===== CORRECTION MENU MOBILE ===== */
@media (max-width: 768px) {
    .nav-list {
        padding: 2rem 1.5rem 2.5rem;
        gap: 1.25rem;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 0.75rem 0;
        font-size: 0.9rem;
        letter-spacing: 2px;
        color: var(--beige);
    }

    .nav-link::after {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-link:hover::after {
        width: 40px;
    }

    .nav-list .cta-header {
        display: block;
        width: 100%;
        margin-top: 0.75rem;
        padding: 0.9rem 1.5rem;
        text-align: center;
        box-sizing: border-box;
    }

    .nav-toggle {
        font-size: 1.4rem;
        padding: 0.25rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .nav-list {
        padding: 1.5rem 1rem 2rem;
    }

    .nav-link {
        font-size: 0.82rem;
        letter-spacing: 1.5px;
    }
}

/* ===== CORRECTION ACCORDÉON FAQ ===== */
.accordion-item.active {
    border-color: var(--or);
    box-shadow: 0 4px 20px rgba(26, 59, 50, 0.08);
}

.accordion-item.active .accordion-header {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-content p {
    padding: 1.5rem 2rem 1.75rem;
    margin: 0;
}

/* ===== CORRECTION MENU MOBILE v2 ===== */
@media (max-width: 768px) {
    .header {
        position: sticky;
        overflow: visible;
    }

    .header-content {
        position: relative;
        overflow: visible;
    }

    .nav {
        position: static;
    }

    .nav-list {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
        background: var(--emeraude);
        flex-direction: column;
        padding: 2rem 1.5rem 2.5rem;
        gap: 1.25rem;
        align-items: stretch;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        overflow-x: hidden;
        z-index: 999;
    }

    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list li {
        width: 100%;
        max-width: 100%;
        text-align: center;
        overflow: hidden;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 0.85rem 0.5rem;
        font-size: 0.88rem;
        letter-spacing: 1.5px;
        color: var(--beige);
        white-space: normal;
        word-break: break-word;
        text-align: center;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        color: var(--or);
    }

    .nav-list .cta-header {
        display: block;
        width: 100%;
        max-width: 100%;
        margin-top: 0.75rem;
        padding: 0.9rem 1rem;
        text-align: center;
        box-sizing: border-box;
        font-size: 0.78rem;
        letter-spacing: 1.5px;
        word-break: break-word;
    }
}

/* ===== TÉMOIGNAGES — version avec auteur ===== */
.testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-author {
    font-family: var(--font-title);
    font-size: 1rem;
    color: var(--emeraude);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.25rem;
}

.testimonial-source {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--or);
    opacity: 0.85;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CORRECTION LOGO HEADER ===== */
.header .logo img {
    max-height: 42px !important;
    width: auto !important;
    display: block;
}

@media (max-width: 768px) {
    .header .logo img {
        max-height: 32px !important;
    }
}



/* ===== LOGO FINAL — TAILLE OPTIMALE ===== */
.header .logo img {
    max-height: 70px !important;
    width: auto !important;
    display: block;
}

@media (max-width: 768px) {
    .header .logo img {
        max-height: 50px !important;
    }
}



/* ===== CORRECTION PHOTO CONSULTATION ===== */
.process-image {
    max-width: 380px !important;
    margin: 0 auto 4rem !important;
}

.process-image img {
    width: 100%;
    height: auto;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 12px 40px rgba(26, 59, 50, 0.15);
}

@media (max-width: 768px) {
    .process-image {
        max-width: 300px !important;
        margin-bottom: 3rem !important;
    }
}


/* ===== LOGO TYPOGRAPHIQUE PREMIUM ===== */
.header .logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    text-decoration: none;
    gap: 2px;
}

.header .logo-line-1 {
    font-family: var(--font-title);
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--or);
    line-height: 1;
}

.header .logo-line-2 {
    font-family: var(--font-title);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--or);
    opacity: 0.85;
    line-height: 1;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .header .logo-line-1 {
        font-size: 1.35rem;
        letter-spacing: 0.12em;
    }
    .header .logo-line-2 {
        font-size: 0.58rem;
        letter-spacing: 0.28em;
    }
}

/* ===== BLOG ===== */
.articles-grid {
    display: grid;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.article-card {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 2rem;
}

.article-card:last-child {
    border-bottom: none;
}

.article-date {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 0.75rem;
}

.article-title {
    font-family: var(--font-title);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    color: var(--emeraude);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: var(--or);
}

.article-excerpt {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--bleu-nuit);
    opacity: 0.85;
    margin-bottom: 1rem;
}

.article-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--or);
    font-weight: 500;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: var(--emeraude);
}

/* ===== ARTICLE PAGE ===== */
.article-page {
    padding: 6rem 0;
}

.article-meta {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--or);
    text-align: center;
    margin-bottom: 1.5rem;
}

.article-page-title {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--emeraude);
    text-align: center;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.article-page-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--or);
    margin: 1.5rem auto 0;
}

.article-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--bleu-nuit);
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--emeraude);
    margin: 3rem 0 1rem;
}

.article-content blockquote {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--or);
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--or);
    margin: 2rem 0;
    background: var(--beige-warm);
}

/* ===== BANNIÈRE COOKIES ===== */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bleu-nuit);
    color: var(--beige);
    z-index: 9999;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 280px;
    font-size: 0.88rem;
    line-height: 1.6;
}

.cookie-banner-text p {
    margin: 0 0 0.25rem 0;
}

.cookie-banner-text strong {
    color: var(--or);
    font-family: var(--font-title);
    font-size: 1rem;
}

.cookie-banner-text a {
    color: var(--or);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-btn-primary {
    background: var(--or);
    color: var(--emeraude);
    border-color: var(--or);
}

.cookie-btn-primary:hover {
    background: transparent;
    color: var(--or);
}

.cookie-btn-secondary {
    background: transparent;
    color: var(--beige);
    border-color: rgba(249, 246, 240, 0.4);
}

.cookie-btn-secondary:hover {
    border-color: var(--beige);
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    .cookie-banner-actions {
        justify-content: center;
    }
    .cookie-btn {
        flex: 1;
    }
}

/* ===== CORRECTIF BANNIÈRE COOKIES (conflit avec transition globale) ===== */
#cookie-banner,
#cookie-banner * {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

#cookie-banner {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    z-index: 99999 !important;
    background: var(--bleu-nuit) !important;
    color: var(--beige) !important;
    padding: 1.25rem 1.5rem !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3) !important;
}

#cookie-banner .cookie-banner-inner {
    display: flex !important;
    flex-direction: row !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 2rem !important;
    flex-wrap: wrap !important;
}

#cookie-banner .cookie-btn {
    display: inline-block !important;
    padding: 0.7rem 1.5rem !important;
    cursor: pointer !important;
    border-radius: 0 !important;
}

@media (max-width: 768px) {
    #cookie-banner .cookie-banner-inner {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    #cookie-banner .cookie-banner-actions {
        display: flex !important;
        justify-content: center !important;
        gap: 0.75rem !important;
    }
}

/* ===== FORMULAIRE DE CONTACT ===== */
.contact-form {
    background: var(--beige-warm);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--emeraude);
    margin-bottom: 0.6rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--bleu-nuit);
    background: #FFFFFF;
    border: 1px solid rgba(26, 59, 50, 0.15);
    border-radius: 2px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--or);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    font-family: var(--font-body);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
}

.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.82rem;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
    color: var(--bleu-nuit);
    cursor: pointer;
    margin: 0;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--or);
}

.form-checkbox a {
    color: var(--or);
    text-decoration: underline;
}

.contact-form button[type="submit"] {
    cursor: pointer;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

/* ===== HERO STATS (preuve sociale) ===== */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 100px;
}

.hero-stat-number {
    font-family: var(--font-title);
    font-size: 1.25rem;
    color: var(--or);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.4rem;
}

.hero-stat-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--beige);
    opacity: 0.7;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 1.5rem;
        margin-top: 2.5rem;
        padding-top: 2rem;
    }
    .hero-stat {
        min-width: 80px;
    }
    .hero-stat-number {
        font-size: 1.05rem;
    }
    .hero-stat-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
    .hero-stat-divider {
        height: 30px;
    }
}

/* ===== AMÉLIORATION LISIBILITÉ HERO STATS ===== */
.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(15, 31, 26, 0.4) 40%,
        rgba(15, 31, 26, 0.75) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-stats {
    position: relative;
    z-index: 2;
}

.hero-stat-number {
    text-shadow: 
        0 2px 12px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(212, 175, 55, 0.4);
}

.hero-stat-label {
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
    opacity: 0.9;
}

.hero-stat-divider {
    background: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

/* ===== HERO STATS : doré adouci ===== */
.hero-stat-number {
    color: rgba(212, 175, 55, 0.85) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
    font-weight: 500 !important;
}

.hero-stat-label {
    color: rgba(249, 246, 240, 0.75) !important;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5) !important;
    opacity: 1 !important;
}

.hero-stat-divider {
    background: rgba(212, 175, 55, 0.4) !important;
    box-shadow: none !important;
}

/* ===== PAGE RENDEZ-VOUS ===== */
.rdv-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.rdv-card {
    background: var(--beige-warm);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(26, 59, 50, 0.1);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.rdv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 59, 50, 0.12);
}

.rdv-featured {
    border: 1px solid var(--or);
    background: linear-gradient(180deg, var(--beige-warm) 0%, #FFFEF9 100%);
}

.rdv-title {
    font-family: var(--font-title);
    font-size: 1.4rem;
    color: var(--emeraude);
    font-weight: 600;
    margin: 0;
}

.rdv-duration {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bleu-nuit);
    opacity: 0.7;
    margin: 0;
}

.rdv-price {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--or);
    font-weight: 600;
    margin: 0.5rem 0 1rem 0;
}

.rdv-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--bleu-nuit);
    opacity: 0.85;
    flex-grow: 1;
    margin: 0 0 1rem 0;
}

@media (max-width: 768px) {
    .rdv-options {
        grid-template-columns: 1fr;
    }
}

/* ===== NEWSLETTER ===== */
.newsletter-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.newsletter-lead {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--emeraude);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.newsletter-intro p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--bleu-nuit);
    opacity: 0.9;
    margin-bottom: 1.25rem;
}

.newsletter-form-wrapper {
    background: var(--beige-warm);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-top: 3px solid var(--or);
    margin: 3rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.brevo-custom-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.brevo-form-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.brevo-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--emeraude);
}

.brevo-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--bleu-nuit);
    background: #FFFFFF;
    border: 1px solid rgba(26, 59, 50, 0.15);
    border-radius: 2px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.brevo-input:focus {
    outline: none;
    border-color: var(--or);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.brevo-submit {
    width: 100%;
    cursor: pointer;
    padding: 1rem 2rem;
}

.brevo-microtext {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--bleu-nuit);
    opacity: 0.65;
    text-align: center;
    margin: 0;
}

.brevo-hidden {
    display: none;
}

.brevo-success {
    text-align: center;
    padding: 2rem 1rem;
}

.newsletter-reassurance {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.newsletter-reassurance p {
    font-size: 0.9rem;
    color: var(--bleu-nuit);
    opacity: 0.7;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .newsletter-form-wrapper {
        padding: 2rem 1.5rem;
    }
    .newsletter-lead {
        font-size: 1.25rem;
    }
}

/* ===== NEWSLETTER ===== */
.newsletter-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.newsletter-lead {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--emeraude);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.newsletter-intro p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--bleu-nuit);
    opacity: 0.9;
    margin-bottom: 1.25rem;
}

.newsletter-form-wrapper {
    background: var(--beige-warm);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-top: 3px solid var(--or);
    margin: 3rem auto;
    max-width: 600px;
}

.brevo-custom-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.brevo-form-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.brevo-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--emeraude);
}

.brevo-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--bleu-nuit);
    background: #FFFFFF;
    border: 1px solid rgba(26, 59, 50, 0.15);
    border-radius: 2px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.brevo-input:focus {
    outline: none;
    border-color: var(--or);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.brevo-submit {
    width: 100%;
    cursor: pointer;
    padding: 1rem 2rem;
    border: none;
}

.brevo-microtext {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--bleu-nuit);
    opacity: 0.65;
    text-align: center;
    margin: 0;
}

.brevo-hidden {
    display: none;
}

.brevo-success {
    text-align: center;
    padding: 2rem 1rem;
}

.newsletter-reassurance {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.newsletter-reassurance p {
    font-size: 0.9rem;
    color: var(--bleu-nuit);
    opacity: 0.7;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .newsletter-form-wrapper {
        padding: 2rem 1.5rem;
    }
    .newsletter-lead {
        font-size: 1.25rem;
    }
}

/* ===== FOOTER NEWSLETTER ===== */
.footer-newsletter {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1.5rem 2rem;
    margin: 2rem auto;
    max-width: 500px;
    border-radius: 4px;
    text-align: center;
}

.footer-newsletter-title {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--or);
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.5px;
}

.footer-newsletter-text {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--beige);
    opacity: 0.85;
    margin: 0 0 1.25rem 0;
    line-height: 1.5;
}

.footer-newsletter-btn {
    display: inline-block;
    background: var(--or);
    color: var(--emeraude);
    padding: 0.75rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--or);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.footer-newsletter-btn:hover {
    background: transparent;
    color: var(--or);
}

@media (max-width: 768px) {
    .footer-newsletter {
        padding: 1.25rem 1.5rem;
        margin: 1.5rem auto;
    }
    .footer-newsletter-title {
        font-size: 1.05rem;
    }
    .footer-newsletter-text {
        font-size: 0.88rem;
    }
}

/* ===== QUIZ AMOUREUX ===== */
.quiz-screen {
    display: none;
    min-height: 80vh;
    padding: 6rem 0;
}

.quiz-screen-active {
    display: block;
}

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

/* --- Écran d'accueil --- */
.quiz-intro {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(160deg, var(--emeraude) 0%, var(--emeraude-light) 100%);
    color: var(--beige);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.quiz-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.quiz-eyebrow {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.quiz-title {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.quiz-subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    color: var(--beige);
}

.quiz-btn-big {
    font-size: 0.95rem;
    padding: 1.25rem 2.5rem;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.quiz-reassurance {
    font-size: 0.82rem;
    opacity: 0.7;
    margin-top: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* --- Barre de progression --- */
.quiz-progress {
    margin-bottom: 3rem;
}

.quiz-progress-bar {
    height: 3px;
    background: rgba(26, 59, 50, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.quiz-progress-fill {
    height: 100%;
    background: var(--or);
    width: 0;
    transition: width 0.4s ease;
}

.quiz-progress-text {
    text-align: right;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--bleu-nuit);
    opacity: 0.6;
    margin: 0;
}

/* --- Question --- */
.quiz-question-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.quiz-question {
    font-family: var(--font-title);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--emeraude);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-answers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 650px;
    margin: 0 auto;
}

.quiz-answer {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: var(--beige-warm);
    border: 1px solid rgba(26, 59, 50, 0.1);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--bleu-nuit);
    line-height: 1.5;
    width: 100%;
}

.quiz-answer:hover {
    border-color: var(--or);
    background: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 59, 50, 0.08);
}

.quiz-answer.selected {
    border-color: var(--or);
    background: var(--or);
    color: var(--emeraude);
    transform: translateY(-2px);
}

.quiz-answer-letter {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--or);
    color: var(--emeraude);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.9rem;
}

.quiz-answer.selected .quiz-answer-letter {
    background: var(--emeraude);
    color: var(--or);
}

.quiz-answer-text {
    flex: 1;
}

.quiz-back-btn {
    display: block;
    margin: 2rem auto 0;
    background: none;
    border: none;
    color: var(--bleu-nuit);
    opacity: 0.5;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: opacity 0.3s ease;
}

.quiz-back-btn:hover {
    opacity: 1;
}

/* --- Capture email --- */
.quiz-capture-content {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: var(--beige-warm);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-top: 3px solid var(--or);
    border-radius: 4px;
}

.quiz-capture-title {
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--emeraude);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.quiz-capture-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--bleu-nuit);
    opacity: 0.85;
    margin-bottom: 2.5rem;
}

.quiz-capture-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.quiz-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.quiz-form-group label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--emeraude);
}

.quiz-form-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--bleu-nuit);
    background: #FFFFFF;
    border: 1px solid rgba(26, 59, 50, 0.15);
    border-radius: 2px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.quiz-form-group input:focus {
    outline: none;
    border-color: var(--or);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.quiz-capture-reassurance {
    font-size: 0.78rem;
    color: var(--bleu-nuit);
    opacity: 0.65;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

/* --- Résultat --- */
.quiz-result-content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.quiz-result-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--emeraude);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.quiz-result-accroche {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    color: var(--or);
    line-height: 1.5;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-result-block {
    background: var(--beige-warm);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    margin-bottom: 2.5rem;
    text-align: left;
}

.quiz-result-description {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--bleu-nuit);
    opacity: 0.9;
    margin: 0;
}

.quiz-result-message {
    background: linear-gradient(160deg, var(--emeraude) 0%, var(--emeraude-light) 100%);
    color: var(--beige);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    margin-bottom: 3rem;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.quiz-result-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--or);
}

.quiz-result-message-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.quiz-result-message-text {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--beige);
    opacity: 0.95;
    margin: 0;
}

.quiz-result-cta {
    background: var(--beige-warm);
    padding: 3rem 2rem;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.quiz-result-cta-title {
    font-family: var(--font-title);
    font-size: 1.4rem;
    color: var(--emeraude);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.quiz-result-cta-note {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--bleu-nuit);
    opacity: 0.7;
    margin-top: 1rem;
}

.quiz-result-actions {
    margin-top: 2.5rem;
    text-align: center;
}

.quiz-link {
    background: none;
    border: none;
    color: var(--bleu-nuit);
    opacity: 0.6;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: opacity 0.3s ease;
}

.quiz-link:hover {
    opacity: 1;
    color: var(--or);
}

/* --- Bloc quiz sur la home --- */
.quiz-promo {
    background: linear-gradient(160deg, var(--emeraude) 0%, var(--emeraude-light) 100%);
    color: var(--beige);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.quiz-promo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.quiz-promo-inner {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quiz-promo-eyebrow {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.quiz-promo-title {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--beige);
}

.quiz-promo-text {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .quiz-screen {
        padding: 4rem 0;
    }
    .quiz-intro,
    .quiz-capture-content,
    .quiz-result-block,
    .quiz-result-message,
    .quiz-result-cta {
        padding: 2rem 1.5rem;
    }
    .quiz-answer {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
        gap: 1rem;
    }
    .quiz-answer-letter {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    .quiz-promo {
        padding: 4rem 0;
    }
}

/* ===== SOUS-MENU DEROULANT ===== */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown > .nav-link { cursor: pointer; }

.nav-submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--emeraude);
    min-width: 240px;
    padding: 0.75rem 0;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 1000;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 0.5rem;
}

.nav-item-dropdown:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-submenu li { width: 100%; }

.nav-submenu .nav-link {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--beige);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-submenu .nav-link:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--or);
}

.nav-submenu .nav-link::after { display: none; }

/* ===== PAGE HUB ===== */
.hub-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.hub-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--beige-warm);
    border: 1px solid rgba(26, 59, 50, 0.1);
    border-top: 3px solid var(--or);
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.hub-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(26, 59, 50, 0.12);
    border-color: var(--or);
}

.hub-card-icon {
    font-size: 2.5rem;
    color: var(--or);
    margin-bottom: 1.25rem;
    line-height: 1;
}

.hub-card-title {
    font-family: var(--font-title);
    font-size: 1.35rem;
    color: var(--emeraude);
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.hub-card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--bleu-nuit);
    opacity: 0.85;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.hub-card-link {
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--or);
    font-weight: 500;
}

/* ===== FOOTER ICONES SOCIALES ===== */
.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--or);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--or);
    color: var(--emeraude);
    border-color: var(--or);
    transform: translateY(-2px);
}

.footer-social svg { display: block; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .nav-item-dropdown { width: 100%; }

    .nav-submenu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: rgba(26, 59, 50, 0.5);
        border: none;
        margin: 0.5rem 0 0 0;
        padding: 0.5rem 0;
        border-left: 2px solid var(--or);
        border-radius: 0;
    }

    .nav-submenu .nav-link {
        padding: 0.6rem 1rem 0.6rem 1.5rem;
        font-size: 0.78rem;
    }

    .nav-list {
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        padding-bottom: 3rem;
    }

    .hub-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-social a { width: 40px; height: 40px; }
}

/* ===== QUIZ PLEIN ECRAN ===== */
.quiz-screen-active {
    padding: 0 !important;
}

.quiz-screen {
    padding: 0 !important;
}

#quiz-start.quiz-screen-active {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(160deg, var(--emeraude) 0%, var(--emeraude-light) 100%);
    padding: 2rem !important;
    box-sizing: border-box;
}

#quiz-start .quiz-container {
    max-width: 700px;
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

.quiz-intro {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    text-align: center;
    width: 100%;
}

.quiz-intro::before {
    display: none;
}

/* Questions : garder le conteneur normal */
#quiz-questions.quiz-screen-active,
#quiz-capture.quiz-screen-active,
#quiz-result.quiz-screen-active {
    padding: 6rem 0 !important;
}

@media (max-width: 768px) {
    #quiz-start.quiz-screen-active {
        min-height: 100vh;
        padding: 1.5rem !important;
    }
    
    #quiz-questions.quiz-screen-active,
    #quiz-capture.quiz-screen-active,
    #quiz-result.quiz-screen-active {
        padding: 4rem 0 !important;
    }
}

/* ===== PHRASE D'ANCRAGE QUIZ ===== */
.quiz-anchor {
    max-width: 620px;
    margin: 0 auto 3rem;
    padding: 2rem 2.5rem;
    background: rgba(249, 246, 240, 0.08);
    border-left: 3px solid var(--or);
    border-radius: 4px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.quiz-anchor p {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--beige);
    opacity: 0.9;
    margin: 0 0 1rem 0;
}

.quiz-anchor p:last-child {
    margin-bottom: 0;
}

.quiz-anchor-highlight {
    font-family: var(--font-title) !important;
    font-style: normal !important;
    font-size: 1.15rem !important;
    color: var(--or) !important;
    opacity: 1 !important;
    margin-top: 1.5rem !important;
    text-align: center;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .quiz-anchor {
        padding: 1.5rem 1.75rem;
        margin-bottom: 2rem;
    }
    .quiz-anchor p {
        font-size: 0.98rem;
        line-height: 1.7;
    }
    .quiz-anchor-highlight {
        font-size: 1.05rem !important;
    }
}

/* ===== VIDEO HERO ===== */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* Retirer le background-image de l'ancien hero */
.hero {
    background-image: none !important;
}

@media (max-width: 768px) {
    .hero-video {
        object-position: center center;
    }
}

/* ===== HERO COMPACT (bouton visible sans scroll) ===== */
.hero {
    min-height: auto !important;
    padding: 4rem 0 3rem !important;
}

.hero-content {
    padding: 2rem 1.5rem !important;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem) !important;
    margin-bottom: 1rem !important;
}

.hero-subtitle {
    margin-bottom: 1.5rem !important;
}

.hero-actions {
    margin: 1.5rem 0 1rem !important;
}

.hero-stats {
    margin-top: 2rem !important;
    padding-top: 1.5rem !important;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto !important;
        padding: 2.5rem 0 2rem !important;
    }
    
    .hero-content {
        padding: 1rem 1.25rem !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .hero-eyebrow {
        font-size: 0.7rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .hero-actions {
        margin: 1rem 0 !important;
    }
    
    .hero-stats {
        margin-top: 1.5rem !important;
        padding-top: 1rem !important;
        gap: 1rem !important;
    }
    
    .hero-stat-number {
        font-size: 1rem !important;
    }
    
    .hero-stat-label {
        font-size: 0.6rem !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem !important;
    }
    
    .hero-eyebrow {
        font-size: 0.65rem !important;
        letter-spacing: 2px !important;
    }
    
    .hero-subtitle {
        font-size: 0.92rem !important;
    }
    
    .hero-stats {
        display: none !important;
    }
}

/* ===== HERO PLEIN ECRAN MOBILE ===== */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh !important;
        min-height: 100dvh !important;
        height: auto !important;
        padding: 2rem 1.25rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-content {
        padding: 0 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0 !important;
    }

    .hero-eyebrow {
        font-size: 0.65rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 1rem !important;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.2rem) !important;
        line-height: 1.15 !important;
        margin-bottom: 0.75rem !important;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
        max-width: 90% !important;
    }

    .hero-actions {
        margin: 0 !important;
        width: 100% !important;
        gap: 0.75rem !important;
    }

    .hero-actions .btn {
        padding: 1rem 1.5rem !important;
        font-size: 0.8rem !important;
    }

    .hero-subtext {
        font-size: 0.8rem !important;
        margin-top: 0.25rem !important;
    }

    .hero-stats {
        margin-top: 2rem !important;
        padding-top: 1.5rem !important;
        gap: 1.25rem !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .hero-stat {
        min-width: 70px !important;
    }

    .hero-stat-number {
        font-size: 0.95rem !important;
        margin-bottom: 0.25rem !important;
    }

    .hero-stat-label {
        font-size: 0.58rem !important;
        letter-spacing: 0.8px !important;
    }

    .hero-stat-divider {
        height: 28px !important;
    }
}

/* Pour les très petits écrans en hauteur (iPhone SE, etc.) */
@media (max-width: 768px) and (max-height: 700px) {
    .hero-title {
        font-size: 1.65rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.88rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .hero-eyebrow {
        margin-bottom: 0.75rem !important;
    }
    
    .hero-actions .btn {
        padding: 0.9rem 1.25rem !important;
        font-size: 0.75rem !important;
    }
    
    .hero-stats {
        margin-top: 1.25rem !important;
        padding-top: 1rem !important;
        gap: 0.75rem !important;
    }
    
    .hero-stat-number {
        font-size: 0.85rem !important;
    }
    
    .hero-stat-label {
        font-size: 0.55rem !important;
    }
}
