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

@font-face {
    font-family: 'Futura Std';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/futura-std/Futura-Std-Book.woff2') format('woff2');
}
@font-face {
    font-family: 'Futura Std';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/assets/fonts/futura-std/Futura-Std-Medium.woff2') format('woff2');
}
@font-face {
    font-family: 'Futura Std';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/futura-std/Futura-Std-Bold.woff2') format('woff2');
}
@font-face {
    font-family: 'Futura Std';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('/assets/fonts/futura-std/Futura-Std-Heavy.woff2') format('woff2');
}

:root {
    --aci-green:  #1BA455;
    --aci-green2: #027031;
    --aci-orange: #ED7F3A;
    --aci-dark:   #0b1f2e;
    --gold:       #b8922a;
    --gold-light: #d4a83e;
    --text:       #1a2332;
    --text-muted: #7A7A7A;
    --border:     #e5e7eb;
    --bg-soft:    #f7f8fa;
}

html {
    /* Aligne l'échelle typographique sur le site aircotedivoire.com (boutons 16px, corps de texte 14-18px)
       — tout le fichier est en rem, donc ce facteur remonte l'ensemble de la page proportionnellement. */
    font-size: 112.5%;
}

body {
    font-family: 'Futura Std', sans-serif;
    background: #fff;
    color: var(--text);
    overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: .8rem 3rem;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0,0,0,.06);
    backdrop-filter: blur(10px);
}
nav .logo img { height: 34px; }
nav .nav-actions { display: flex; align-items: center; gap: .75rem; }
.btn-nav-outline,
.btn-nav-green {
    display: inline-flex; align-items: center; gap: .45rem;
    border: none;
    padding: .5rem 1.5rem; border-radius: 50px;
    font-size: .84rem; font-weight: 400;
    text-transform: uppercase; letter-spacing: .02em;
    cursor: pointer; text-decoration: none;
    transition: all .2s ease;
}
.btn-nav-outline {
    color: var(--text); background: #e6e6e6;
}
.btn-nav-outline i { font-size: .78rem; }
.btn-nav-outline:hover { background: #000; color: #fff; }
.btn-nav-green {
    background: var(--aci-orange);
    color: #fff;
}
.btn-nav-green:hover { background: var(--aci-green); color: #fff; }

/* ── HERO ────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ── Slideshow ───────────────────────────────── */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #0a0f0a;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    overflow: hidden;
}
.hero-slide.active {
    opacity: 1;
}
.hero-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 55%;
    display: block;
}

/* ── Variantes Ken Burns ─── */
[data-kb="zoom-center"] img {
    transform-origin: center center;
    animation: kb-zoom-center 18s ease-out forwards;
}
[data-kb="pan-right"] img {
    transform-origin: left center;
    animation: kb-pan-right 18s ease-out forwards;
}
[data-kb="zoom-top-left"] img {
    transform-origin: top right;
    animation: kb-zoom-top-left 18s ease-out forwards;
}

@keyframes kb-zoom-center {
    from { transform: scale(1); }
    to   { transform: scale(1.10); }
}
@keyframes kb-pan-right {
    from { transform: scale(1.08) translateX(-2%); }
    to   { transform: scale(1.08) translateX(2%); }
}
@keyframes kb-zoom-top-left {
    from { transform: scale(1.05) translate(1%, 1%); }
    to   { transform: scale(1.12) translate(-1%, -1%); }
}

/* Dégradé sombre pour lisibilité du texte */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        100deg,
        rgba(5, 15, 10, .82) 0%,
        rgba(5, 15, 10, .6)  45%,
        rgba(5, 15, 10, .2)  100%
    );
}

/* Contenu */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 12rem 3rem 5rem;
}
.hero-inner { max-width: 620px; }

/* Eyebrow */
.hero-eyebrow {
    font-family: 'Futura Std', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: 1.5rem;
    display: block;
}

/* Titre */
.hero-title {
    font-family: 'Futura Std', sans-serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -.02em;
    text-wrap: balance;
}
.hero-title em {
    font-style: italic;
    color: var(--aci-orange);
}

/* Description */
.hero-desc {
    font-size: .9rem;
    line-height: 1.85;
    color: rgba(255,255,255,.62);
    max-width: 480px;
    margin-bottom: 2.5rem;
}

/* Boutons hero */
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-hero-primary {
    display: inline-flex; align-items: center; gap: .55rem;
    padding: .9rem 2.2rem;
    background: var(--aci-orange);
    color: #fff;
    border: 2px solid var(--aci-orange);
    border-radius: 2px;
    font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    text-decoration: none;
    transition: background .2s, border-color .2s, transform .2s;
}
.btn-hero-primary:hover {
    background: #d9600f; border-color: #d9600f;
    color: #fff; transform: translateY(-1px);
}

.btn-hero-secondary {
    display: inline-flex; align-items: center;
    padding: .9rem 2.2rem;
    color: rgba(255,255,255,.88);
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 2px;
    font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
    text-decoration: none;
    transition: border-color .2s, background .2s, color .2s;
}
.btn-hero-secondary:hover {
    border-color: rgba(255,255,255,.8);
    background: rgba(255,255,255,.1);
    color: #fff;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,.14);
}
.stat-item { text-align: left; }
.stat-value {
    font-family: 'Futura Std', sans-serif;
    font-size: 2.2rem; font-weight: 800;
    color: #fff;
    display: block; line-height: 1;
    letter-spacing: -.02em;
}
.stat-label {
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.42);
    display: block;
    margin-top: .45rem;
}

/* Flèche scroll */
.hero-scroll-hint {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,.35);
    font-size: .75rem;
    animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── SECTION CARDS ───────────────────────────── */
.section-cards { background: var(--bg-soft); padding: 6rem 3rem; border-top: 1px solid var(--border); }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
    text-align: center;
    font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--aci-green); font-weight: 600; margin-bottom: .9rem;
}
.section-title {
    font-family: 'Futura Std', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600;
    text-align: center; color: var(--text); margin-bottom: .8rem;
    text-transform: uppercase; letter-spacing: .1em;
}
.section-subtitle {
    text-align: center; color: var(--text-muted);
    font-size: .88rem; max-width: 540px; margin: 0 auto 3.5rem;
    line-height: 1.75;
}
.elementor-divider {
    text-align: center;
    padding-block: 15px;
}
.elementor-divider-separator {
    display: block;
    width: 85%;
    margin: 0 auto;
    border-block-start: 1px solid #464646;
}
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.section-note { text-align: right; color: var(--aci-green); font-style: italic; font-size: .8rem; margin: 1.5rem 0 0; }
.card-skypass {
    background: #fff; border: 1px solid var(--border);
    border-radius: 1.25rem; padding: 2rem;
    padding-bottom: 4rem;
    transition: all .3s ease; position: relative; overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
    cursor: pointer;
}
.card-skypass::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--aci-orange);
    opacity: 0; transition: opacity .3s;
}
.card-skypass:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.1); border-color: rgba(27,164,85,.2); }
.card-skypass:hover::before { opacity: 1; }
.card-skypass.featured { border-color: rgba(27,164,85,.25); box-shadow: 0 4px 20px rgba(27,164,85,.1); }
.card-skypass.featured::before { opacity: 1; }
.card-type-badge { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .22rem .8rem; border-radius: 50px; margin-bottom: 1.2rem; }
.badge-business  { background: #e8f5ee; color: var(--aci-green); border: 1px solid rgba(27,164,85,.2); }
.badge-premium   { background: #fff4ec; color: #c45c0e; border: 1px solid rgba(237,127,58,.25); }
.badge-corporate { background: #fdf8ec; color: var(--gold); border: 1px solid rgba(184,146,42,.25); }
.card-name { font-family: 'Futura Std', sans-serif; font-size: 1.2rem; font-weight: 600; color: var(--text); margin-bottom: .5rem; }
.card-plan-img { display: none; width: 100%; aspect-ratio: 8 / 5; object-fit: cover; border-radius: .75rem; margin: 1rem 0; }
.card-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.5rem; overflow-wrap: break-word; }
.card-price { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.card-price--dual { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; }
.card-price--dual .price-period { flex-basis: 100%; margin-top: 0; }
.card-price-xof, .card-price-eur { white-space: nowrap; }
.card-price-sep { width: 1px; height: 2.4rem; background: var(--border); flex-shrink: 0; }
.price-amount { font-family: 'Futura Std', sans-serif; font-size: 1.9rem; font-weight: 700; color: var(--aci-green); }
.price-currency { font-size: .95rem; color: var(--text-muted); margin-left: .3rem; }
.price-period { font-size: .78rem; color: var(--text-muted); display: block; margin-top: .2rem; }
.card-price-table { width: 100%; border-collapse: collapse; }
.card-price-table tr:not(:last-child) td { border-bottom: 1px solid var(--border); }
.card-price-table td { padding: .5rem 0; }
.cpt-label { font-size: .82rem; color: var(--text-muted); white-space: nowrap; }
.cpt-value { text-align: right; font-family: 'Futura Std', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--aci-green); white-space: nowrap; }
.cpt-currency { font-size: .68rem; font-weight: 600; color: var(--text-muted); margin-left: .35rem; }
.card-benefits { list-style: none; }
.card-benefits li { display: flex; align-items: center; gap: .6rem; font-size: .82rem; color: var(--text-muted); padding: .3rem 0; }
.card-benefits li i { color: var(--aci-green); font-size: .7rem; flex-shrink: 0; }
.card-price-corner { position: absolute; right: 1.75rem; bottom: 1.25rem; left: 1.75rem; }
.card-price-corner-sep { display: block; border-top: 1px solid var(--border); margin-bottom: .55rem; }
.card-price-corner-row { display: flex; align-items: baseline; justify-content: space-between; gap: .75rem; }
.card-price-corner-label { font-size: .64rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.card-price-corner-value { font-size: .78rem; font-weight: 700; color: var(--text); white-space: nowrap; }
.card-price-corner-asterisk { vertical-align: super; font-size: 1.2em; color: var(--aci-green); margin-left: .05rem; }
.price-period-asterisk { color: var(--aci-green); }
.card-price-table + .price-period { text-align: right; }

/* ── HOW IT WORKS ────────────────────────────── */
.section-how { background: #fff; border-top: 1px solid var(--border); padding: 6rem 3rem; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; margin-top: 3.5rem; }
.step {
    text-align: center;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .9s ease, transform .9s ease;
}
/* Apparition en cascade : 1, puis 2, 3, 4 — déclenchée au scroll (voir landing.js) */
.steps-grid.is-visible .step { opacity: 1; transform: translateY(0); }
.steps-grid.is-visible .step:nth-child(1) { transition-delay: 0s; }
.steps-grid.is-visible .step:nth-child(2) { transition-delay: .25s; }
.steps-grid.is-visible .step:nth-child(3) { transition-delay: .5s; }
.steps-grid.is-visible .step:nth-child(4) { transition-delay: .75s; }
.step-num {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--aci-green);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Futura Std', sans-serif; font-size: 1.1rem; font-weight: 700; color: #fff;
    margin: 0 auto 1.2rem;
    box-shadow: 0 0 0 8px rgba(27,164,85,.08);
}
.step-title { font-size: 1.02rem; font-weight: 600; color: var(--text); margin-bottom: .5rem; }
.step-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* ── CTA ─────────────────────────────────────── */
.section-cta {
    background: linear-gradient(135deg, #f0faf5 0%, #e6f4ed 100%);
    border-top: 1px solid rgba(27,164,85,.1); padding: 6rem 3rem; text-align: center;
}
.cta-title { font-family: 'Futura Std', sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; color: var(--text); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .1em; }
.cta-sub { font-size: .9rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary-aci {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .9rem 2.2rem;
    background: var(--aci-orange); color: #fff;
    border: 2px solid var(--aci-orange); border-radius: 2px;
    font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
    text-decoration: none; cursor: pointer;
    transition: background .2s, border-color .2s, transform .2s;
}
.btn-primary-aci:hover { background: #d9600f; border-color: #d9600f; color: #fff; transform: translateY(-1px); }

.btn-secondary-aci {
    display: inline-flex; align-items: center;
    padding: .9rem 2.2rem;
    color: var(--text); background: #fff;
    border: 2px solid var(--border); border-radius: 2px;
    font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
    text-decoration: none; cursor: pointer;
    transition: border-color .2s, color .2s;
}
.btn-secondary-aci:hover { border-color: var(--aci-green); color: var(--aci-green); }

/* ── FOOTER ──────────────────────────────────── */
/* Reprend le schéma du footer aircotedivoire.com : bloc principal gris clair (#F5F5F5),
   titres/texte sombres, puis une barre de copyright pleine largeur en vert de marque. */
/* ── FOOTER ──────────────────────────────────── */
footer { background: #F5F5F5; }

.footer-main {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 2.5rem;
    padding: 3rem 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Brand wordmark */
.footer-brand-name {
    display: block;
    font-family: 'Futura Std', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1;
}
.footer-brand-name em {
    font-style: normal;
    color: var(--aci-orange);
}
.footer-tagline {
    font-family: 'Futura Std', sans-serif;
    font-style: italic;
    font-size: .88rem;
    color: var(--text-muted);
    margin-bottom: .75rem;
}
.footer-desc {
    font-size: .78rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 360px;
}

/* Contact */
.footer-contact { padding-top: .25rem; }
.footer-heading {
    font-family: 'Futura Std', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .75rem; }
.footer-links li { font-size: .8rem; color: var(--text-muted); display: flex; align-items: center; gap: .65rem; line-height: 1.5; }
.footer-links li i { color: var(--aci-orange); font-size: .72rem; width: 12px; text-align: center; flex-shrink: 0; }
.footer-links a { font-size: .8rem; color: var(--text-muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--aci-orange); }

/* Separator */
.footer-sep { border: none; border-top: 1px solid rgba(0,0,0,.08); margin: 0 3.5rem; }

/* Social */
.payment-logo { display: inline-flex; align-items: center; height: 2rem; }
.payment-logo svg { height: 100%; width: auto; display: block; }
.payment-logo-wave svg { width: 2rem; border-radius: 6px; }
.footer-social-icons { display: flex; align-items: center; gap: .75rem; }
.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.15);
    color: var(--text-muted);
    font-size: .85rem;
    text-decoration: none;
    transition: all .2s;
}
.footer-social-icons a:hover { background: var(--aci-orange); border-color: var(--aci-orange); color: #fff; }

/* Bottom bar — barre verte pleine largeur, comme sur aircotedivoire.com */
.footer-bottom-wrap { background: var(--aci-green); }
.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: .75rem;
    padding: .75rem 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-bottom p { font-size: .72rem; color: rgba(255,255,255,.85); letter-spacing: .01em; }
.footer-bottom-links { display: flex; align-items: center; flex-wrap: wrap; row-gap: .4rem; }
.footer-bottom .footer-credit { margin: 0; }
.footer-bottom a { font-size: .72rem; color: rgba(255,255,255,.85); text-decoration: none; transition: color .2s; letter-spacing: .01em; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom-separator { color: rgba(255,255,255,.45); margin: 0 .4rem; }

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes plane-takeoff {
    0%   { transform: translateY(0) scale(1) rotate(0deg); opacity: 1; }
    20%  { transform: translateY(-18px) scale(1.04) rotate(-3deg); opacity: 1; }
    100% { transform: translate(160%, -250%) scale(0.1) rotate(18deg); opacity: 0; }
}
.plane-takeoff { animation: plane-takeoff 1.4s cubic-bezier(0.4, 0, 1, 1) forwards !important; }
@keyframes hero-fade-out {
    0%   { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); pointer-events: none; }
}
.hero-left-fadeout { animation: hero-fade-out .5s ease .7s forwards; }
@keyframes slideUpForm {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── PROGRESS BAR ────────────────────────────── */
.headerProgesssbar { position: fixed; width: 100%; height: 100%; z-index: 2000; }
.headerProgesssbar > div {
    width: 24rem; padding: 2rem 1rem; background: rgba(0,0,0,.7);
    margin: 0 auto; box-shadow: 0 0 1em black; border-radius: 0 0 1em 1em;
}
.progress-bar { display: flex; align-items: center; justify-content: center; overflow: hidden; font-size: .875rem; color: #fff; font-weight: 500; }
.bg-success { background-color: #1BA455 !important; }
.h5 { font-size: 1rem; padding: .5rem; width: 100%; height: auto; }
.progress-bar-striped { background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); background-size: 1rem 1rem; }
.progress-bar-animated { animation: progress-bar-stripes 1s linear infinite; }
@keyframes progress-bar-stripes { from { background-position: 1rem 0; } to { background-position: 0 0; } }
.d-none { display: none !important; }

/* ── COMMON FORM ELEMENTS ────────────────────── */
.form-back-btn {
    background: none; border: none; cursor: pointer;
    color: var(--text-muted); font-size: .82rem; font-weight: 500;
    font-family: 'Futura Std', sans-serif;
    display: inline-flex; align-items: center; gap: .45rem;
    padding: 0; margin-top: 1.5rem; margin-bottom: 2rem; transition: color .2s;
}
.form-back-btn:hover { color: var(--aci-green); }
.form-step-tag {
    font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--aci-green); font-weight: 600; margin-bottom: .6rem;
}
.form-main-title {
    font-family: 'Futura Std', sans-serif;
    font-size: 1.4rem; font-weight: 600; color: var(--text);
    margin-bottom: .5rem; line-height: 1.25;
}
.form-main-sub { font-size: .86rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 2rem; }
.form-section-label {
    font-size: .76rem; font-weight: 700; color: var(--text);
    text-transform: uppercase; letter-spacing: .08em;
    margin-bottom: 1rem; margin-top: 2rem;
    display: flex; align-items: center; gap: .5rem;
}
.form-section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.form-section-label i { color: var(--aci-green); font-size: .8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .79rem; font-weight: 500; color: var(--text); margin-bottom: .38rem; }
.form-group label .req { color: var(--aci-green); margin-left: .2rem; }
.form-group label.field-required::after { content: '*'; color: var(--aci-green); margin-left: .2rem; }
.fg-input {
    width: 100%; padding: .65rem 1rem;
    border: 1.5px solid var(--border); border-radius: .5rem;
    font-family: 'Futura Std', sans-serif; font-size: .86rem; color: var(--text);
    background: #fff; outline: none; transition: border-color .2s, box-shadow .2s;
}
.fg-input:focus { border-color: var(--aci-green); box-shadow: 0 0 0 3px rgba(27,164,85,.1); }
.fg-input::placeholder { color: #b0b8c1; }
.fg-select {
    width: 100%; padding: .65rem 2.2rem .65rem 1rem;
    border: 1.5px solid var(--border); border-radius: .5rem;
    font-family: 'Futura Std', sans-serif; font-size: .86rem; color: var(--text);
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right .85rem center;
    outline: none; appearance: none; transition: border-color .2s, box-shadow .2s;
}
.fg-select:focus { border-color: var(--aci-green); box-shadow: 0 0 0 3px rgba(27,164,85,.1); }

/* ── TYPE SELECTION SCREEN ───────────────────── */
.section-type {
    display: none;
    min-height: 100vh;
    background: var(--bg-soft);
    padding: 6rem 3rem 4rem;
}
.section-type.visible {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    animation: slideUpForm .45s cubic-bezier(0.2, 0, 0.2, 1);
}
.type-inner { max-width: 900px; width: 100%; }
.type-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem;
}
.type-card {
    border-radius: 1.25rem; overflow: hidden; cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative; min-height: 340px;
    display: flex; flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.type-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.22); }
.type-card-individual {
    background:
        linear-gradient(180deg, rgba(0,20,10,.4) 0%, rgba(0,20,10,.5) 100%),
        url('/assets/img/A330_VRE_BC_mood_meal_0018.jpg') center 55%/cover no-repeat;
    background-color: #0a1f12;
}
.type-card-corporate {
    background:
        linear-gradient(180deg, rgba(5,10,25,.4) 0%, rgba(5,10,25,.5) 100%),
        url('/assets/img/A330_VRE_prEC_mood_meal_0001.jpg') center 50%/cover no-repeat;
    background-color: #0b1f2e;
}
.type-card-body {
    padding: 1.75rem; color: #fff; position: relative; z-index: 2;
    display: flex; flex-direction: column; justify-content: space-between;
    flex: 1;
}
.type-card-title {
    font-family: 'Futura Std', sans-serif; font-size: 1.6rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .04em; text-align: right;
    line-height: 1.15; text-shadow: 0 2px 10px rgba(0,0,0,.5);
    align-self: flex-end;
}
.type-card-cta {
    align-self: flex-end;
    display: inline-flex; align-items: center; gap: .5rem;
    color: #fff; font-size: .84rem; font-weight: 500;
    text-shadow: 0 1px 6px rgba(0,0,0,.5);
    transition: gap .2s;
}
.type-card:hover .type-card-cta { gap: .75rem; }

/* ── FORM SECTION — SPLIT LAYOUT ─────────────── */
.section-form { display: none; min-height: 100vh; }
.section-form.visible {
    display: flex;
    animation: slideUpForm .55s cubic-bezier(0.2, 0, 0.2, 1);
}
.form-panel-bg {
    position: sticky; top: 0; align-self: flex-start;
    width: 38%; height: 100vh;
    flex-shrink: 0;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 3rem;
    background: linear-gradient(160deg, #1BA455 0%, #003c1e 100%);
    transition: background .6s ease;
}
.form-panel-bg.individual {
    background:
        linear-gradient(160deg, rgba(27,164,85,.20) 0%, rgba(0,40,20,.75) 100%),
        url('/assets/img/A330_VRE_BC_mood_meal_0004.jpg') center 40%/cover no-repeat;
    background-color: #002f14;
}
.form-panel-bg.corporate {
    background:
        linear-gradient(160deg, rgba(237,127,58,.18) 0%, rgba(100,40,0,.75) 100%),
        url('/assets/img/A330_VRE_prEC_mood_meal_0004.jpg') center 45%/cover no-repeat;
    background-color: #3d1800;
}
.panel-bg-logo img { height: 30px; filter: brightness(0) invert(1); opacity: .9; }
.panel-bg-badge {
    display: inline-flex; align-items: center; gap: .45rem;
    background: rgba(255,255,255,.15); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.28); color: #fff;
    padding: .28rem .9rem; border-radius: 50px;
    font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    margin-bottom: 1rem; width: fit-content;
}
.panel-bg-title {
    font-family: 'Futura Std', sans-serif; font-size: 1.65rem; font-weight: 700;
    color: #fff; line-height: 1.25; margin-bottom: .9rem;
}
.panel-bg-sub { font-size: .8rem; color: rgba(255,255,255,.72); line-height: 1.75; }
.panel-bg-divider { width: 40px; height: 2px; background: rgba(255,255,255,.3); margin: 1.2rem 0; }
.panel-bg-info { font-size: .75rem; color: rgba(255,255,255,.55); }

.form-panel-fields {
    flex: 1; padding: 4.5rem 3.5rem 4rem;
    min-height: 100vh; background: #fff;
}
.form-wrap { max-width: 640px; }

/* Plan selection */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .85rem; margin-bottom: .5rem; }
.plan-radio { display: none; }
.plan-grid > div { display: flex; }
.plan-card-label {
    display: block; border: 1.5px solid var(--border);
    border-radius: .875rem; padding: 1.1rem 1.2rem;
    cursor: pointer; transition: all .2s;
    width: 100%; box-sizing: border-box;
}
.plan-radio:checked + .plan-card-label { border-color: var(--aci-green); background: #f0faf5; box-shadow: 0 0 0 3px rgba(27,164,85,.1); }
.plan-card-label:hover { border-color: rgba(27,164,85,.4); }
.plan-card-name { font-size: .9rem; font-weight: 600; color: var(--text); display: block; margin-bottom: .15rem; }
.plan-card-type { font-size: .72rem; color: var(--text-muted); }
.plan-card-price { font-size: .78rem; font-weight: 600; color: var(--aci-green); margin-top: .5rem; display: block; }
.plan-card-quota { font-size: .74rem; font-style: italic; color: rgba(27,164,85,.6); margin: .6rem 0 0; }

/* sMiles toggle */
.smiles-toggle { display: flex; gap: .65rem; margin-top: .5rem; }
.smiles-btn {
    flex: 1; padding: .6rem .8rem;
    border: 1.5px solid var(--border); border-radius: .5rem;
    background: #fff; font-family: 'Futura Std', sans-serif;
    font-size: .82rem; font-weight: 500; color: var(--text-muted);
    cursor: pointer; transition: all .2s; text-align: center;
}
.smiles-btn.active { border-color: var(--aci-green); background: #f0faf5; color: var(--aci-green); font-weight: 600; }
.smiles-btn:hover:not(.active) { border-color: rgba(27,164,85,.3); color: var(--text); }

/* Engagement box */
.engagement-box {
    background: #f7f8fa; border: 1.5px solid var(--border);
    border-radius: .75rem; padding: 1.3rem 1.5rem; margin-top: .5rem;
}
.engagement-box p { font-size: .79rem; color: var(--text-muted); line-height: 1.75; }
.engagement-check { display: flex; align-items: flex-start; gap: .75rem; margin-top: .9rem; }
.engagement-check input[type="checkbox"] {
    width: 17px; height: 17px; min-width: 17px;
    accent-color: var(--aci-green); cursor: pointer; margin-top: 2px;
}
.engagement-check label { font-size: .8rem; color: var(--text); line-height: 1.6; cursor: pointer; }

/* Submit footer */
.form-footer-actions { margin-top: 1.8rem; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.btn-form-submit {
    background: var(--aci-green); color: #fff; border: none;
    padding: .88rem 2.4rem; border-radius: 50px;
    font-family: 'Futura Std', sans-serif; font-size: .9rem; font-weight: 600;
    cursor: pointer; transition: all .22s;
    box-shadow: 0 4px 16px rgba(27,164,85,.25);
    display: inline-flex; align-items: center; gap: .5rem;
}
.btn-form-submit:hover { background: var(--aci-green2); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(27,164,85,.35); }
.btn-form-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.form-legal { font-size: .74rem; color: var(--text-muted); line-height: 1.6; }

/* Success state */
.form-success { display: none; text-align: center; padding: 3rem 2rem; animation: slideUpForm .5s ease; }
.form-success.visible { display: block; }
.success-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: #f0faf5; border: 2px solid rgba(27,164,85,.2);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem; font-size: 1.8rem; color: var(--aci-green);
}
.success-title { font-family: 'Futura Std', sans-serif; font-size: 1.5rem; font-weight: 600; color: var(--text); margin-bottom: .6rem; }
.success-msg { font-size: .88rem; color: var(--text-muted); line-height: 1.8; max-width: 420px; margin: 0 auto 2rem; }
.success-steps { display: flex; flex-direction: column; gap: .7rem; max-width: 360px; margin: 0 auto 2.5rem; text-align: left; }
.success-step { display: flex; align-items: center; gap: .8rem; font-size: .82rem; color: var(--text-muted); background: var(--bg-soft); border-radius: .5rem; padding: .6rem .9rem; }
.success-step i { color: var(--aci-green); width: 14px; flex-shrink: 0; }

/* ── ÉTAPES ─────────────────────────────────── */
.form-steps {
    display: flex; align-items: center; margin-bottom: 2.2rem; gap: 0;
}
.form-step-item { display: flex; align-items: center; gap: .55rem; }
.form-step-item:not(:last-child) { flex: 1; }
.step-circle {
    width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
    border: 2px solid var(--border); background: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Futura Std', sans-serif; font-size: .78rem; font-weight: 700;
    color: var(--text-muted); transition: all .3s;
}
.form-step-item.active .step-circle  { border-color: var(--aci-green); background: var(--aci-green); color: #fff; }
.form-step-item.done   .step-circle  { border-color: var(--aci-green); background: #e8f5ee; color: var(--aci-green); }
.step-lbl { font-size: .74rem; font-weight: 600; color: var(--text-muted); white-space: nowrap; transition: color .3s; }
.form-step-item.active .step-lbl { color: var(--text); }
.form-step-item.done   .step-lbl { color: var(--aci-green); }
.step-line { flex: 1; height: 1.5px; background: var(--border); margin: 0 .5rem; transition: background .3s; }
.step-line.done { background: var(--aci-green); }

/* ── CONTENU DES ÉTAPES ──────────────────────── */
.form-step { display: none; }
.form-step.active {
    display: block;
    animation: stepIn .3s cubic-bezier(0.2, 0, 0.2, 1);
}
.form-step.active.back {
    animation: stepInBack .3s cubic-bezier(0.2, 0, 0.2, 1);
}
@keyframes stepIn     { from { opacity: 0; transform: translateX(22px); } to { opacity: 1; transform: translateX(0); } }
@keyframes stepInBack { from { opacity: 0; transform: translateX(-22px); } to { opacity: 1; transform: translateX(0); } }

/* ── BOUTONS NAVIGATION ÉTAPES ───────────────── */
.step-actions {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; margin-top: 1.8rem;
}
.btn-step-next {
    background: var(--aci-green); color: #fff; border: none;
    padding: .82rem 2rem; border-radius: 50px;
    font-family: 'Futura Std', sans-serif; font-size: .88rem; font-weight: 600;
    cursor: pointer; transition: all .22s;
    display: inline-flex; align-items: center; gap: .5rem;
    box-shadow: 0 4px 16px rgba(27,164,85,.25); margin-left: auto;
}
.btn-step-next:hover { background: var(--aci-green2); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(27,164,85,.35); }
.btn-step-prev {
    background: none; border: 1.5px solid var(--border); color: var(--text-muted);
    padding: .8rem 1.6rem; border-radius: 50px;
    font-family: 'Futura Std', sans-serif; font-size: .86rem; font-weight: 500;
    cursor: pointer; transition: all .22s;
    display: inline-flex; align-items: center; gap: .45rem;
}
.btn-step-prev:hover { border-color: var(--aci-green); color: var(--aci-green); }

/* ── CARTE "SOUSCRIPTEUR = BÉNÉFICIAIRE" ─────── */
.same-as-sub-card {
    display: flex; align-items: center; gap: .9rem;
    padding: .95rem 1.2rem;
    border: 1.5px solid var(--border); border-radius: .875rem;
    cursor: pointer; transition: all .22s; margin-bottom: 1.6rem; background: #fff;
    user-select: none;
}
.same-as-sub-card:hover { border-color: rgba(27,164,85,.35); background: #fafffe; }
.same-as-sub-card.active { border-color: var(--aci-green); background: #f0faf5; }
.same-as-icon {
    width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
    background: #e8f5ee; color: var(--aci-green);
    display: flex; align-items: center; justify-content: center; font-size: .95rem;
    transition: all .22s;
}
.same-as-sub-card.active .same-as-icon { background: var(--aci-green); color: #fff; }
.same-as-text { flex: 1; }
.same-as-title { font-size: .84rem; font-weight: 600; color: var(--text); }
.same-as-desc  { font-size: .74rem; color: var(--text-muted); margin-top: .1rem; }
.same-as-check {
    width: 22px; height: 22px; border-radius: 50%;
    border: 1.5px solid var(--border); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: transparent; font-size: .68rem; transition: all .22s;
}
.same-as-sub-card.active .same-as-check { background: var(--aci-green); border-color: var(--aci-green); color: #fff; }

.fg-input.synced {
    background: #f0faf5; color: var(--text-muted);
    border-color: rgba(27,164,85,.2); cursor: not-allowed;
}

/* ── BÉNÉFICIAIRES DE LA CARTE (corporate) ───── */
.corp-benef-card {
    background: #fafbfc;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.3rem 1.4rem;
    margin-bottom: 1.6rem;
}
.corp-benef-head { display: flex; align-items: center; gap: .65rem; margin-bottom: .4rem; }
.corp-benef-head-icon {
    width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
    background: #e8f5ee; color: var(--aci-green);
    display: flex; align-items: center; justify-content: center; font-size: .88rem;
}
.corp-benef-head-title {
    font-family: 'Futura Std', sans-serif;
    font-size: .92rem; font-weight: 600; color: var(--text); margin: 0;
}
.corp-benef-badge {
    font-size: .74rem; font-weight: 600; color: var(--aci-green);
    background: #e8f5ee; border-radius: 20px; padding: .18rem .65rem; margin-left: auto;
}
.corp-benef-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.65; margin: 0 0 1.1rem; }

.corp-benef-item {
    display: flex; align-items: center; gap: .75rem;
    background: #fff; border: 1px solid var(--border); border-radius: .75rem;
    padding: .65rem .9rem; margin-bottom: .55rem;
    transition: border-color .2s, box-shadow .2s;
}
.corp-benef-item:hover { border-color: rgba(27,164,85,.3); box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.corp-benef-avatar {
    width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
    background: var(--aci-green); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: .78rem; font-weight: 700;
}
.corp-benef-info { flex: 1; min-width: 0; }
.corp-benef-name { font-size: .85rem; font-weight: 600; color: var(--text); }
.corp-benef-meta { font-size: .74rem; color: var(--text-muted); margin-top: .1rem; }
.corp-benef-actions { display: flex; align-items: center; gap: .1rem; flex-shrink: 0; margin-left: .5rem; }
.corp-benef-actions button {
    background: none; border: none; cursor: pointer; padding: .35rem .45rem;
    border-radius: .4rem; font-size: .82rem; line-height: 1; transition: background .2s;
}
.corp-benef-actions button:hover { background: #f1f5f9; }
.corp-benef-edit-btn { color: var(--aci-green); }
.corp-benef-remove-btn { color: #ef4444; }

.corp-benef-add-form {
    background: #fff; border: 1.5px dashed rgba(27,164,85,.4); border-radius: .8rem;
    padding: 1.15rem 1.25rem; margin-bottom: .85rem;
}
.corp-benef-form-title {
    font-size: .78rem; font-weight: 600; color: var(--aci-green);
    text-transform: uppercase; letter-spacing: .04em; margin: 0 0 1rem;
    display: flex; align-items: center; gap: .4rem;
}

.corp-benef-add-btn {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    width: 100%;
    font-size: .84rem; font-weight: 600; color: var(--aci-green);
    background: #f0faf5; border: 1.5px dashed rgba(27,164,85,.45);
    border-radius: .7rem; padding: .7rem 1.1rem; cursor: pointer;
    transition: all .2s; margin-bottom: 1.5rem;
}
.corp-benef-add-btn:hover { background: #e8f5ee; border-color: var(--aci-green); }
.corp-benef-add-btn i {
    width: 20px; height: 20px; border-radius: 50%; background: var(--aci-green); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: .62rem;
}

.corp-benef-save-btn {
    background: var(--aci-green); color: #fff; border: none; border-radius: .5rem;
    padding: .45rem 1.15rem; font-size: .82rem; font-weight: 600; cursor: pointer;
    transition: background .2s;
}
.corp-benef-save-btn:hover { background: var(--aci-green2); }
.corp-benef-cancel-btn {
    background: none; border: 1.5px solid var(--border); border-radius: .5rem;
    padding: .45rem 1rem; font-size: .82rem; color: var(--text-muted); cursor: pointer;
    transition: all .2s;
}
.corp-benef-cancel-btn:hover { border-color: #d1d5db; color: var(--text); }

/* ── RESPONSIVE ──────────────────────────────── */

/* Tablette paysage */
@media (max-width: 1000px) {
    .form-panel-bg { display: none; }
    .form-panel-fields { padding: 5rem 2rem 3rem; }
    .form-wrap { max-width: 100%; }
}

/* Tablette (portrait + paysage, ex. iPad 768–1200px) */
@media (max-width: 1200px) {
    .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
    .step-num { width: 42px; height: 42px; font-size: .95rem; margin-bottom: .9rem; }
    .step-title { font-size: .88rem; }
    .step-desc { font-size: .76rem; line-height: 1.5; }
}

/* Tablette portrait */
@media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .hero-content { padding: 8rem 1.5rem 4rem; }
    .hero-inner { max-width: 100%; }
    .hero-stats { gap: 2rem; }

    .section-cards, .section-how, .section-cta { padding: 4rem 1.5rem; }
    .section-type { padding: 5rem 1.5rem 3rem; }
    .type-grid { grid-template-columns: 1fr; gap: 1rem; }
    .type-card { min-height: 260px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 2.5rem 1.5rem 2rem; }
    .footer-sep { margin: 0 1.5rem; }
    .footer-bottom { padding: .65rem 1.5rem; }
}

/* Grand mobile */
@media (max-width: 768px) {
    .aircraft-wrap { max-width: 300px; }
    /* Nav */
    nav { padding: .85rem 1.2rem; }
    nav .logo img { height: 28px; }
    .btn-nav-outline { padding: .4rem .9rem; font-size: .78rem; }
    .btn-nav-green  { padding: .42rem 1rem; font-size: .78rem; }

    /* Hero */
    .hero-badge { font-size: .68rem; }
    .hero-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
    .hero-stats { flex-wrap: wrap; gap: 1.2rem; }
    .stat-value { font-size: 1.5rem; }

    /* Sections */
    .section-title { font-size: 1.15rem; font-weight: 500; letter-spacing: 0; }
    .cta-title { font-size: 1.15rem; font-weight: 500; letter-spacing: .02em; }
    .cards-grid { grid-template-columns: 1fr; grid-template-rows: none; }
    .card-skypass.featured { grid-column: auto; grid-row: auto; }
    .card-desc, .card-benefits { display: block; }
    .card-plan-img { display: none; }
    .card-price { margin-top: 0; border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }

    /* Prix double devise */
    .card-price--dual { gap: .5rem; }
    .card-price--dual .price-amount { font-size: 1.55rem; }
    .card-price--dual .price-currency { font-size: .82rem; margin-left: .2rem; }
    .card-price-sep { height: 2rem; flex-shrink: 0; }

    /* Formulaire */
    .form-panel-fields { padding: 4.5rem 1.2rem 2.5rem; }
    .form-main-title { font-size: 1.05rem; font-weight: 500; }
    .form-row { grid-template-columns: 1fr; }
    input[type="date"].fg-input { max-width: 170px; }

    /* Récapitulatif */
    .recap-modal-body { padding: 1rem 1.1rem 1.25rem; }
    .recap-modal-footer { flex-direction: column-reverse; padding: .85rem 1.1rem; }
    .recap-row { font-size: .82rem; }

    /* Étapes */
    .step-lbl { display: none; }
    .step-actions { flex-direction: column-reverse; gap: .7rem; }
    .btn-step-next { width: 100%; justify-content: center; margin-left: 0; }
    .btn-step-prev { width: 100%; justify-content: center; }

    /* Plan grid */
    .plan-grid { grid-template-columns: 1fr; }

    /* sMiles */
    .smiles-toggle { flex-direction: column; }

    /* Submit */
    .form-footer-actions { flex-direction: column; align-items: stretch; }
    .btn-form-submit { width: 100%; justify-content: center; }
    .form-legal { text-align: center; }

    /* Type selection */
    .type-inner { padding: 0 .5rem; }
    .type-card-title { font-size: 1.5rem; }
}

/* Mobile standard */
@media (max-width: 480px) {
    .footer-main { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 1.2rem 1.5rem; }
    .footer-sep { margin: 0 1.2rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: .4rem; }
    .footer-brand,
    .footer-contact,
    .footer-follow { text-align: center; }
    .footer-desc { margin-left: auto; margin-right: auto; }
    .footer-links { align-items: center; }
    .footer-links li { justify-content: center; }
    .footer-social-icons { justify-content: center; }
    .footer-bottom { padding: .7rem 1rem .85rem; }
    .footer-bottom p,
    .footer-bottom a { font-size: .78rem; line-height: 1.5; color: rgba(255,255,255,.62); }
    .footer-bottom-links { width: 100%; flex-direction: column; gap: .45rem; }
    .footer-bottom-separator { display: none; }

    /* Nav : masquer Souscrire, garder Se connecter */
    .btn-nav-green { display: none; }

    /* Hero */
    .hero { min-height: 75vh; }
    .hero-content { padding: 7rem 1rem 4rem; }
    .hero-title { font-size: clamp(1.9rem, 8vw, 2.8rem); }
    .hero-desc { font-size: .84rem; }
    .hero-actions { flex-direction: column; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; text-align: center; justify-content: center; }
    .hero-stats { padding-top: 1.5rem; margin-top: 1.5rem; gap: 1.5rem; }
    .hero-scroll-hint { display: none; }

    /* Sections */
    .section-cards, .section-how, .section-cta { padding: 3rem 1rem; }
    .section-type { padding: 4rem 1rem 2.5rem; }
    .steps-grid { grid-template-columns: 1fr; }

    /* Prix double devise */
    .card-price--dual { gap: .45rem; }
    .card-price--dual .price-amount { font-size: 1.32rem; }
    .card-price--dual .price-currency { font-size: .74rem; margin-left: .15rem; }
    .card-price-sep { height: 1.75rem; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn-primary-aci,
    .cta-actions .btn-secondary-aci { width: 100%; text-align: center; justify-content: center; }

    /* Formulaire */
    .form-panel-fields { padding: 4rem 1rem 2rem; }
    .form-main-title { font-size: .95rem; font-weight: 500; }
    .form-main-sub { font-size: .82rem; }

    /* Étapes — cercles plus petits */
    .step-circle { width: 26px; height: 26px; font-size: .72rem; }
    .step-line { margin: 0 .3rem; }

    /* Cards formulaire */
    .plan-card-label { padding: .9rem 1rem; }
    .same-as-sub-card { padding: .8rem 1rem; }

    /* Engagement */
    .engagement-box { padding: 1rem; }

    /* Type cards */
    .type-card { min-height: 220px; }
    .type-card-body { padding: 1.5rem; }
    .type-card-title { font-size: 1.3rem; }
}

/* Mobile : première image fixe, pas de slideshow ni de Ken Burns */
@media (max-width: 600px) {
    .hero-slide             { transition: none; }
    .hero-slide:not(.active){ display: none; }
    .hero-slide img         { animation: none !important; }
}

/* Mobile : bouton "Se connecter" réduit à une icône verte */
@media (max-width: 600px) {
    .btn-nav-outline {
        background: transparent;
        color: var(--aci-green);
        padding: 0;
        width: 32px; height: 32px;
        justify-content: center;
    }
    .btn-nav-outline span { display: none; }
    .btn-nav-outline i { font-size: 1.4rem; font-weight: 400; }
    .btn-nav-outline:hover { background: transparent; color: var(--aci-green2); }
}

/* Mobile : étapes sur 2 colonnes (au-delà, cf. règle tablette 4 colonnes ; en dessous de 480px, cf. 1 colonne) */
@media (max-width: 600px) and (min-width: 481px) {
    .steps-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

/* Petit mobile */
@media (max-width: 360px) {
    nav .logo img { height: 24px; }
    .hero-title { font-size: 1.6rem; }
    .stat-value { font-size: 1.4rem; }
    .form-steps { gap: 0; }
    .step-circle { width: 24px; height: 24px; font-size: .68rem; }
}
/* ══════════════════════════════════════════════════
   Page : Mentions légales (mentions-legales.html.twig)
   ══════════════════════════════════════════════════ */
body { background: #fff; }
.btn-orange-aci {
    color: #fff !important;
    background-color: #f58220 !important;
    border-color: #f58220 !important;
}
.btn-orange-aci:hover,
.btn-orange-aci:focus-visible {
    color: #fff !important;
    background-color: #d96a0b !important;
    border-color: #d96a0b !important;
}
.btn-orange-outline-aci {
    color: #f58220 !important;
    background-color: transparent !important;
    border-color: #f58220 !important;
}
.btn-orange-outline-aci:hover,
.btn-orange-outline-aci:focus-visible {
    color: #fff !important;
    background-color: #f58220 !important;
    border-color: #f58220 !important;
}

/* ── PAGE HEADER ──────────────────────────────── */
.ml-page-header {
    max-width: 900px;
    margin: 0 auto;
    padding: 6.5rem 2rem 2.5rem;
    border-bottom: 1px solid #e5e7eb;
}
.ml-breadcrumb {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    color: #7A7A7A;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.ml-breadcrumb a { color: #374151; text-decoration: underline; text-underline-offset: 2px; }
.ml-breadcrumb a:hover { color: #111; }
.ml-breadcrumb i { font-size: .55rem; color: #9ca3af; }
.ml-page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.ml-page-intro {
    font-size: .88rem;
    color: #374151;
    line-height: 1.8;
    max-width: 680px;
    margin-bottom: .5rem;
}
.ml-page-date {
    font-size: .76rem;
    color: #9ca3af;
    margin-top: .75rem;
}

/* ── BODY ─────────────────────────────────────── */
.ml-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
}

/* ── TOGGLE BAR ───────────────────────────────── */
.ml-toggle-bar {
    display: flex;
    justify-content: flex-end;
    padding: 1.25rem 0 .5rem;
}
.ml-toggle-all {
    background: none;
    border: none;
    font-family: 'Roboto', sans-serif;
    font-size: .8rem;
    color: #374151;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    padding: 0;
    transition: color .15s;
}
.ml-toggle-all:hover { color: #111; }

/* ── ACCORDION ────────────────────────────────── */
.ml-accordion { border-top: 1px solid #e5e7eb; }
.ml-item { border-bottom: 1px solid #e5e7eb; scroll-margin-top: 90px; }

.ml-item-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}
.ml-item-title {
    font-family: 'Montserrat', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}
.ml-item-chevron {
    color: #7A7A7A;
    font-size: .72rem;
    flex-shrink: 0;
    transition: transform .25s ease;
}
.ml-item.open .ml-item-chevron { transform: rotate(180deg); }

.ml-item-body {
    display: none;
    padding: 0 0 1.5rem;
}
.ml-item.open .ml-item-body { display: block; }

.ml-item-body p, .ml-item-body li {
    font-size: .875rem;
    color: #374151;
    line-height: 1.85;
    margin-bottom: .6rem;
}
.ml-item-body ul, .ml-item-body ol { padding-left: 1.3rem; margin-bottom: .6rem; }
.ml-item-body strong { color: #111827; font-weight: 600; }
.ml-item-body a { color: #374151; text-decoration: underline; }

/* ── INFO CARDS ───────────────────────────────── */
.ml-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-bottom: .75rem;
}
.ml-info-card {
    border: 1px solid #e5e7eb;
    border-radius: .4rem;
    padding: .85rem 1rem;
}
.ml-info-card p { margin: 0; font-size: .855rem; color: #374151; line-height: 1.5; }
.ml-info-card strong {
    display: block;
    color: #7A7A7A;
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .3rem;
    font-weight: 600;
}

/* ── WARNING ──────────────────────────────────── */
.ml-warning {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    background: #fffbf0;
    border: 1px solid #f3d07a;
    border-radius: .4rem;
    padding: .85rem 1rem;
    margin-top: .75rem;
    font-size: .855rem;
    color: #374151;
    line-height: 1.7;
}
.ml-warning i { color: #b45309; font-size: .85rem; margin-top: .15rem; flex-shrink: 0; }

@media (max-width: 640px) {
    .ml-page-header { padding: 5.5rem 1.2rem 2rem; }
    .ml-body { padding: 0 1.2rem 4rem; }
    .ml-cards-grid { grid-template-columns: 1fr; }
    .ml-item-title { font-size: .88rem; }
}

/* ══════════════════════════════════════════════════
   Page : Politique cookies (politique-cookies.html.twig)
   ══════════════════════════════════════════════════ */
.pc-page-header {
    max-width: 900px; margin: 0 auto;
    padding: 6.5rem 2rem 2.5rem;
    border-bottom: 1px solid #e5e7eb;
}
.pc-breadcrumb {
    display: flex; align-items: center; gap: .4rem;
    font-size: .8rem; color: #7A7A7A;
    margin-bottom: 1.5rem; flex-wrap: wrap;
}
.pc-breadcrumb a { color: #374151; text-decoration: underline; text-underline-offset: 2px; }
.pc-breadcrumb a:hover { color: #111; }
.pc-breadcrumb i { font-size: .55rem; color: #9ca3af; }
.pc-page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700; color: #111827;
    margin-bottom: 1rem; line-height: 1.2;
}
.pc-intro { font-size: .88rem; color: #374151; line-height: 1.8; max-width: 680px; }
.pc-date  { font-size: .76rem; color: #9ca3af; margin-top: .75rem; }
.pc-body  { max-width: 900px; margin: 0 auto; padding: 0 2rem 5rem; }
.pc-section { margin-top: 2.5rem; }
.pc-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem; font-weight: 700;
    color: #1BA455; margin-bottom: .75rem;
    display: flex; align-items: center; gap: .5rem;
}
.pc-section h2::before {
    content: ''; display: block;
    width: 3px; height: 1.1rem;
    background: #1BA455; border-radius: 2px; flex-shrink: 0;
}
.pc-section p, .pc-section li {
    font-size: .875rem; color: #374151;
    line-height: 1.8; margin-bottom: .5rem;
}
.pc-section ul { padding-left: 1.4rem; }
.pc-section a { color: #1BA455; text-decoration: underline; text-underline-offset: 2px; }
/* Tableau des cookies */
.cookie-table-wrap { overflow-x: auto; margin-top: 1rem; border-radius: 8px; border: 1px solid #e5e7eb; }
.cookie-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.cookie-table thead { background: #1BA455; color: #fff; }
.cookie-table th {
    padding: .75rem 1rem; text-align: left;
    font-weight: 600; white-space: nowrap;
}
.cookie-table td { padding: .65rem 1rem; border-bottom: 1px solid #f3f4f6; color: #374151; vertical-align: top; }
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:nth-child(even) td { background: #f9fafb; }
.badge-cat {
    display: inline-flex; align-items: center; gap: .3rem;
    padding: .15rem .55rem; border-radius: 20px;
    font-size: .72rem; font-weight: 700;
}
.badge-cat.necessary  { background: #f0faf5; color: #1BA455; }
.badge-cat.analytics  { background: #eff6ff; color: #1d4ed8; }
.badge-cat.prefs      { background: #fff7ed; color: #c2410c; }
/* Bloc de préférence interactif */
.pc-prefs-block {
    background: #f9fafb; border: 1px solid #e5e7eb;
    border-radius: 10px; padding: 1.25rem 1.5rem;
    margin-top: 1rem;
}
.pc-prefs-block p { margin-bottom: .75rem; font-size: .875rem; color: #374151; }
.pc-prefs-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.pc-nav-home-mobile { display: none; }
@media (max-width: 576px) {
    .pc-nav-home-desktop { display: none; }
    .pc-nav-home-mobile { display: inline; }
}
.choices__item[data-value="other"] {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--aci-green);
}

/* ── Récap modal (souscription) ─────────────── */
.recap-modal-overlay {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(15,23,20,.55);
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity .25s ease;
}
.recap-modal-overlay.is-visible { opacity: 1; }
.recap-modal {
    background: #fff; border-radius: 18px; overflow: hidden;
    width: 100%; max-width: 560px; max-height: 88vh;
    display: flex; flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    transform: translateY(16px) scale(.97);
    transition: transform .25s ease;
}
.recap-modal-overlay.is-visible .recap-modal { transform: translateY(0) scale(1); }
.recap-modal--wide { max-width: 960px; }
.recap-modal-header {
    display: flex; align-items: flex-start; gap: .9rem;
    padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border);
}
.recap-modal-icon {
    width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
    background: var(--aci-green); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.recap-modal-header-text { flex: 1; min-width: 0; }
.recap-modal-header h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 0; }
.recap-modal-subtitle { font-size: .78rem; color: var(--text-muted); margin: .2rem 0 0; }
.recap-modal-close {
    background: none; border: none; cursor: pointer; flex-shrink: 0;
    font-size: 1.1rem; color: var(--text-muted); padding: .25rem .4rem;
}
.recap-modal-close:hover { color: var(--text); }
.recap-modal-body { padding: 1.25rem 1.5rem 1.5rem; overflow-y: auto; }
.recap-modal-footer {
    display: flex; justify-content: space-between; gap: .75rem;
    padding: 1rem 1.5rem; border-top: 1px solid var(--border);
}

/* Cards */
.recap-modal-body > .recap-card,
.recap-modal-body > .recap-cols { margin-bottom: 1rem; }
.recap-modal-body > *:last-child { margin-bottom: 0; }
.recap-cols { display: flex; gap: 1rem; }
.recap-card {
    background: var(--bg-soft); border: 1px solid var(--border); border-radius: 12px;
    padding: 1.1rem 1.25rem;
}
.recap-cols > .recap-card { flex: 1; min-width: 0; margin-bottom: 0; }
@media (max-width: 640px) {
    .recap-cols { flex-direction: column; }
}
.recap-card-title {
    display: flex; align-items: center; gap: .55rem;
    font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
    color: var(--text); margin: 0 0 .3rem;
}
.recap-card-icon {
    width: 26px; height: 26px; border-radius: 7px; flex-shrink: 0;
    background: #e3f3ea; color: var(--aci-green);
    display: flex; align-items: center; justify-content: center; font-size: .7rem;
}
.recap-card-underline { display: block; width: 22px; height: 2px; background: var(--aci-green); border-radius: 2px; margin: 0 0 .85rem 34px; }
.recap-row {
    padding: .35rem 0;
    font-size: .84rem; line-height: 1.5; word-break: break-word;
}
.recap-row-icon { color: var(--text-muted); font-size: .76rem; margin-right: .5rem; }
.recap-label { color: var(--text-muted); }
.recap-label::after { content: ' :'; }
.recap-value { color: var(--text); font-weight: 500; margin-left: .35rem; }
.recap-empty { font-size: .84rem; color: var(--text-muted); margin: 0; }
.recap-table-scroll { overflow-x: auto; margin-top: -.2rem; }
.recap-benef-table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: .8rem; }
.recap-benef-table thead tr { background: #e3f3ea; }
.recap-benef-table th {
    text-align: left; color: var(--aci-green); font-weight: 700;
    font-size: .68rem; text-transform: uppercase; letter-spacing: .03em;
    padding: .5rem .6rem;
}
.recap-benef-table th:first-child { border-radius: 6px 0 0 6px; }
.recap-benef-table th:last-child { border-radius: 0 6px 6px 0; }
.recap-benef-table td {
    padding: .5rem .6rem; border-bottom: 1px dashed var(--border);
    color: var(--text); vertical-align: top;
}
.recap-benef-table tr:last-child td { border-bottom: none; }
.recap-benef-table td:first-child { font-weight: 600; white-space: nowrap; }
