:root {
    /* --navy: #0D1B2A; */
    --navy: #030e30;
    /* --navy-mid: #1A2E45; */
    --navy-mid: #1d4243;
    /* --gold: #C9A84C; */
    --gold: #30deee;
    --gold-light: #30deee90;
    /* --gold-light: #E8C97A; */
    --cream: #d2cecc;
    /* --cream: #F7F3EE; */
    /* --cream-dark: #EDE7DC; */
    --cream-dark: #97abab;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-mid: #4A5568;
    --text-light: #718096;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
}

.faq-page-wrap {
    background-color: var(--white);
}

/* HERO FAQ */
.faq-hero {
    /* background: var(--navy); */
    padding: 130px 40px 80px;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.faq-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 20px;
}

.hero-title em {
    font-style: normal;
    color: var(--gold);
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    max-width: 680px;
    margin-bottom: 36px;
}

.zone-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.zone-pill {
    background: rgba(38, 222, 238, 0.12);
    border: 1px solid rgba(38, 222, 238, 0.35);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 2px;
    letter-spacing: 0.04em;
}

.kpi-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.kpi {
    text-align: left;
}

.kpi-val {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.kpi-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 3px;
}

/* NAVIGATION ZONES */
.zones-nav {
    background: #000;
    border-bottom: 2px solid var(--gold);
}

.zones-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    overflow-x: auto;
    padding: 0;
}

.zone-tab {
    padding: 18px 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    letter-spacing: 0.03em;
}

.zone-tab:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.zone-tab.active {
    color: var(--navy);
    border-bottom-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

/* LAYOUT FAQ */
.faq-layout {
    background-color: var(--white);
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

/* SIDEBAR */
.faq-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-section {
    margin-bottom: 32px;
}

.sidebar-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-link {
    padding: 9px 14px;
    font-size: 0.85rem;
    color: var(--text-mid);
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.sidebar-link:hover {
    background: var(--gold-light);
    color: var(--navy);
    border-left-color: var(--gold);
}

.sidebar-link.zone {
    font-weight: 600;
    color: var(--navy);
}

.sidebar-cta {
    background: var(--navy);
    padding: 24px;
    border-top: 3px solid var(--gold);
}

.sidebar-cta p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 16px;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    padding: 11px 20px;
    border-radius: 50vh;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
    text-align: center;
    transition: background 0.2s;
}

.btn-gold:hover {
    color: var(--white);
    background: var(--gold-light);
}

.btn-outline-w {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.75);
    padding: 9px 20px;
    border-radius: 50vh;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    display: block;
    text-align: center;
    margin-top: 8px;
    transition: all 0.2s;
}

.btn-outline-w:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* FAQ CONTENT */
.faq-content {
}

.faq-zone-block {
    margin-bottom: 64px;
}

.zone-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 28px;
    border-bottom: 2px solid var(--cream-dark);
}

.zone-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.zone-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
}

.zone-header h2 span {
    color: var(--gold);
}

.faq-item {
    border-bottom: 1px solid var(--cream-dark);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.2s;
    line-height: 1.4;
}

.faq-q:hover, .faq-q.active {
    color: var(--navy);
}

.faq-ico {
    width: 26px;
    height: 26px;
    border: 1.5px solid var(--cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s;
}

.faq-q.active .faq-ico {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-a.open {
    max-height: 500px;
}

.faq-a-inner {
    padding-bottom: 20px;
    font-size: 0.93rem;
    line-height: 1.8;
    color: var(--text-mid);
}

/* CTA INTER-SECTION */
.cta-strip {
    background: var(--navy);
    padding: 32px 40px;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    border-left: 4px solid var(--gold);
}

.cta-strip p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 500px;
    line-height: 1.6;
}

.cta-strip a {
    background: var(--gold);
    color: var(--navy);
    padding: 11px 24px;
    border-radius: 50vh;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.2s;
}

.cta-strip a:hover {
    color: var(--white);
    background: var(--gold-light);
}

/* SECTION GÉNÉRALE */
.general-header {
    margin-bottom: 28px;
}

.general-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.rule {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-top: 12px;
}

/* FOOTER */
footer {
    background: #080F17;
    padding: 44px 40px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
}

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

.footer-logo {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-logo span {
    color: var(--gold);
}

.footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* RESPONSIVE */

@media (max-width: 900px) {
    header {
        padding: 14px 20px;
    }
    .faq-hero {
        padding: 110px 24px 60px;
    }
    .faq-layout {
        grid-template-columns: 1fr;
        padding: 40px 24px;
    }
    .faq-sidebar {
        position: static;
    }
    footer {
        padding: 36px 24px;
    }
    .cta-strip {
        padding: 24px;
        flex-direction: column;
    }
}
