/* ═══════════════════════════════════════════════════════════
   Galsend — design system "clair & premium"
   Blanc, marine profond, vert de marque, or en touche.
   Ombres douces, hairlines 1px, boutons pilule : sobre et pro.
═══════════════════════════════════════════════════════════ */

:root {
    /* Couleurs */
    --ink: #0B1526;
    --ink-soft: #3D4B63;
    --muted: #64748B;
    --bg: #FFFFFF;
    --bg-soft: #F6F8FB;
    --line: #E6EAF1;
    --vert: #2E9E4C;
    --vert-dark: #23803D;
    --vert-soft: #EAF6EE;
    --or: #F0B429;
    --or-dark: #C8890A;
    --navy: #0B1526;
    --navy-2: #13203A;
    --blanc: #FFFFFF;

    /* Ombres douces */
    --shadow-sm: 0 1px 2px rgba(11, 21, 38, 0.06);
    --shadow-md: 0 10px 30px -10px rgba(11, 21, 38, 0.14);
    --shadow-lg: 0 28px 60px -20px rgba(11, 21, 38, 0.22);

    --radius: 20px;
    --radius-sm: 12px;
    --pill: 999px;

    --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ── Reset ─────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--vert-soft); color: var(--ink); }

:focus-visible { outline: 2px solid var(--vert); outline-offset: 3px; border-radius: 6px; }

section, header[id] { scroll-margin-top: 84px; }

/* ── Icônes inline ─────────────────────────────────────── */
.ico {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: -0.12em;
}

/* ── Lien d'évitement ──────────────────────────────────── */
.skip-link {
    position: fixed;
    top: 12px; left: 12px;
    z-index: 300;
    padding: 12px 20px;
    font: 600 0.9rem var(--font-body);
    color: var(--blanc);
    background: var(--ink);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transform: translateY(-200%);
}
.skip-link:focus { transform: none; }

/* ── Typo ──────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.5rem, 4.6vw, 3.9rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); font-weight: 800; letter-spacing: -0.03em; }
h3 { font-size: 1.22rem; font-weight: 700; }
h4 { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; }

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--vert);
    margin-bottom: 18px;
}
.kicker::before {
    content: '';
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: var(--or);
}

/* mot accentué : trait surligneur discret */
.souligne, .souligne-or { position: relative; white-space: nowrap; isolation: isolate; }
.souligne::after, .souligne-or::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: 0.02em;
    height: 0.13em;
    border-radius: var(--pill);
    background: var(--or);
    opacity: 0.9;
    z-index: -1;
}

/* ── Layout ────────────────────────────────────────────── */
.section { padding: 112px 6%; max-width: 1280px; margin: 0 auto; }
.section-tinted {
    max-width: none;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.section-tinted > * { max-width: 1280px; margin-left: auto; margin-right: auto; }
.section-ink { max-width: none; background: var(--navy); color: rgba(255, 255, 255, 0.85); }
.section-ink > * { max-width: 1280px; margin-left: auto; margin-right: auto; }
.section-ink h2 { color: #fff; }

.section-head { margin-bottom: 60px; }
.section-head h2 { max-width: 640px; }

/* ── Boutons ───────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--ink);
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--pill);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); box-shadow: var(--shadow-sm); }

.btn-primary {
    background: var(--vert);
    color: #fff;
    border-color: var(--vert);
    box-shadow: 0 10px 24px -10px rgba(46, 158, 76, 0.65);
}
.btn-primary:hover { background: var(--vert-dark); border-color: var(--vert-dark); box-shadow: 0 16px 32px -12px rgba(46, 158, 76, 0.6); }

.btn-ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-ink:hover { background: var(--navy-2); border-color: var(--navy-2); box-shadow: 0 14px 30px -14px rgba(11, 21, 38, 0.55); }

.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { background: var(--bg-soft); box-shadow: none; }

.btn-whatsapp { background: var(--vert); color: #fff; border-color: var(--vert); }
.btn-whatsapp:hover { background: var(--vert-dark); border-color: var(--vert-dark); box-shadow: 0 14px 30px -12px rgba(46, 158, 76, 0.55); }
.btn-whatsapp .ico { width: 1.2em; height: 1.2em; }

.btn-large { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; margin-top: 24px; }

/* ── Badges & pills ────────────────────────────────────── */
.sticker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--ink-soft);
    padding: 8px 16px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--pill);
    box-shadow: var(--shadow-sm);
}

.pill {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--pill);
    background: var(--bg-soft);
    color: var(--ink-soft);
}
.pill-client { background: var(--vert-soft); color: var(--vert-dark); }
.pill-business { background: var(--navy); color: #fff; }
.role-card-featured .pill-business,
.section-ink .pill-business { background: rgba(255, 255, 255, 0.12); color: #fff; }
.section-ink .pill-client { background: rgba(46, 158, 76, 0.25); color: #8FE0A8; }

/* ── Navbar ────────────────────────────────────────────── */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
#navbar.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 6%;
    display: flex;
    align-items: center;
    gap: 28px;
}

.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.logo-mark { width: 40px; height: 40px; border-radius: 10px; box-shadow: var(--shadow-sm); }
.logo-word { font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; color: var(--ink); letter-spacing: -0.02em; }
.logo-word em { font-style: normal; color: var(--vert); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a:not(.btn) {
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.15s ease;
}
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-cta-mobile { display: none; }
.nav-cta { padding: 11px 22px; font-size: 0.9rem; }

.menu-toggle {
    display: none;
    width: 44px; height: 44px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--ink);
}
.menu-toggle .ico { width: 1.2rem; height: 1.2rem; }
.menu-toggle .ico-close { display: none; }
.menu-toggle.open .ico-burger { display: none; }
.menu-toggle.open .ico-close { display: inline-block; }

/* ── Hero ──────────────────────────────────────────────── */
#hero {
    padding: 168px 6% 96px;
    background:
        radial-gradient(1100px 520px at 82% -10%, rgba(46, 158, 76, 0.09), transparent 65%),
        radial-gradient(800px 420px at -8% 30%, rgba(240, 180, 41, 0.08), transparent 60%),
        var(--bg);
    border-bottom: 1px solid var(--line);
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 72px;
    align-items: center;
}

.sticker-flag { margin-bottom: 28px; }

.hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 540px; margin: 26px 0 34px; }
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    max-width: 560px;
}
.hero-facts li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-right: 32px;
}
.hero-facts li + li { border-left: 1px solid var(--line); padding-left: 32px; }
.hero-facts strong { font-family: var(--font-display); font-size: 1.18rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.hero-facts span { font-size: 0.82rem; color: var(--muted); }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual::before {
    content: '';
    position: absolute;
    inset: 8% -6%;
    background: radial-gradient(closest-side, rgba(46, 158, 76, 0.13), transparent);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.phone {
    position: relative;
    z-index: 1;
    background: #0F1B30;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 44px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 300px;
}
.phone img { border-radius: 34px; width: 100%; }

.float-chip {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: var(--pill);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}
.float-chip .ico { width: 1.15em; height: 1.15em; color: var(--vert); }
.chip-gps { top: 12%; right: 0; animation: flotte 6s ease-in-out infinite; }
.chip-otp { bottom: 9%; left: 0; animation: flotte 7s ease-in-out 1.2s infinite; }

@keyframes flotte {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ── Marquee villes ────────────────────────────────────── */
.marquee {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    overflow: hidden;
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 34px;
    width: max-content;
    animation: defile 55s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--muted);
    white-space: nowrap;
}
.marquee-track .ico-voile { width: 0.85rem; height: 0.85rem; color: var(--ink); opacity: 0.55; }

@keyframes defile {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── 01 · Rôles ────────────────────────────────────────── */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.role-card {
    position: relative;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 36px 30px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.role-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.role-card-featured { background: var(--navy); border-color: var(--navy); color: rgba(255, 255, 255, 0.85); }
.role-card-featured:hover { box-shadow: var(--shadow-lg); }
.role-card-featured h3 { color: #fff; }
.role-card-featured p { color: rgba(255, 255, 255, 0.68); }

.role-num {
    position: absolute;
    top: 22px;
    right: 26px;
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--line);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.role-card-featured .role-num { color: rgba(255, 255, 255, 0.14); }

.role-card .pill { align-self: flex-start; }
.role-card p { color: var(--muted); font-size: 0.95rem; }

.ticks { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-top: 8px; }
.ticks li { position: relative; padding-left: 30px; font-weight: 500; font-size: 0.92rem; color: var(--ink-soft); }
.ticks li::before {
    content: '✓';
    position: absolute;
    left: 0; top: 0.12em;
    width: 20px; height: 20px;
    display: grid;
    place-items: center;
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--vert-dark);
    background: var(--vert-soft);
    border-radius: 50%;
}
.ticks-large li { font-size: 1rem; }
.role-card-featured .ticks li { color: rgba(255, 255, 255, 0.85); }
.role-card-featured .ticks li::before { background: rgba(46, 158, 76, 0.3); color: #8FE0A8; }

.card-link {
    margin-top: auto;
    padding-top: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--or);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.15s ease;
}
.card-link:hover { gap: 12px; }

/* ── 02 · Comment ça marche ────────────────────────────── */
#etapes { padding: 112px 6%; }

.steps {
    list-style: none;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 32px;
}
/* le fil qui relie les étapes */
.steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 30px;
    right: calc(25% - 55px);
    border-top: 2px dashed #CBD5E2;
    z-index: 0;
}

.step { position: relative; display: flex; flex-direction: column; gap: 9px; }

.step-disc {
    position: relative;
    z-index: 1;
    width: 58px; height: 58px;
    display: grid;
    place-items: center;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    margin-bottom: 10px;
}
.step-disc .ico { width: 1.5rem; height: 1.5rem; color: var(--vert-dark); }
.step:last-child .step-disc { background: var(--vert); border-color: var(--vert); box-shadow: 0 10px 24px -10px rgba(46, 158, 76, 0.6); }
.step:last-child .step-disc .ico { color: #fff; }

.step-count {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--vert);
}
.step h3 { font-size: 1.08rem; }
.step p { color: var(--muted); font-size: 0.93rem; max-width: 300px; }

/* ── 03 · Estimateur ───────────────────────────────────── */
.prix-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.prix-copy p { color: var(--muted); font-size: 1.08rem; margin: 18px 0 26px; max-width: 480px; }

.estimateur {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.estimateur-row { display: flex; flex-direction: column; gap: 10px; }
.estimateur label, .label-like, .sim-card label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink-soft);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.estimateur output, .sim-card output { font-size: 0.92rem; font-weight: 700; color: var(--vert-dark); font-variant-numeric: tabular-nums; }

.estimateur select {
    appearance: none;
    font: 500 0.98rem var(--font-body);
    color: var(--ink);
    padding: 13px 44px 13px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 16px center;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.estimateur select:hover { border-color: #CBD5E1; }
.estimateur select:focus { outline: none; border-color: var(--vert); box-shadow: 0 0 0 3px var(--vert-soft); }

.segmented {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--pill);
}
.seg-btn {
    flex: 1;
    padding: 10px;
    font: 600 0.92rem var(--font-body);
    background: transparent;
    color: var(--muted);
    border: none;
    border-radius: var(--pill);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.seg-btn.active { background: var(--bg); color: var(--ink); font-weight: 700; box-shadow: var(--shadow-sm); }

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: var(--pill);
    background: linear-gradient(to right, var(--vert) 15%, var(--line) 15%);
    cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--bg);
    border: 2.5px solid var(--vert);
    box-shadow: var(--shadow-md);
    cursor: grab;
}
input[type="range"]::-moz-range-thumb {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--bg);
    border: 2.5px solid var(--vert);
    box-shadow: var(--shadow-md);
    cursor: grab;
}

.est-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--vert-soft);
    border: 1px solid #D5EDDC;
    border-radius: var(--radius-sm);
    padding: 18px 22px;
}
.est-label { font-weight: 600; font-size: 0.9rem; color: var(--ink-soft); }
.est-amount { display: flex; align-items: baseline; gap: 8px; }
.est-amount span {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--vert-dark);
    font-variant-numeric: tabular-nums;
}
.est-amount small { font-weight: 700; font-size: 0.85rem; color: var(--muted); }

.est-note { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }

/* ── 04 · Captures ─────────────────────────────────────── */
.section-ink .kicker { color: #6FD695; }

.captures-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 44px;
    align-items: end;
}

.capture { text-align: center; }
.capture .phone {
    margin: 0 auto 22px;
    background: #17233C;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 32px 64px -20px rgba(0, 0, 0, 0.55);
    max-width: 255px;
}
.capture .phone img { border-radius: 32px; }

.tablet {
    background: #17233C;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 11px;
    box-shadow: 0 32px 64px -20px rgba(0, 0, 0, 0.55);
    margin: 0 auto 22px;
}
.tablet img { border-radius: 15px; }

.capture figcaption {
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* ── 05 · Simulateur gains ─────────────────────────────── */
.sim-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.sim-copy p { color: var(--muted); font-size: 1.08rem; margin: 18px 0 26px; max-width: 480px; }

.sim-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* ── 06 · Sécurité ─────────────────────────────────────── */
#securite { padding: 112px 6%; }

.sec-list { list-style: none; }

.sec-row {
    display: flex;
    gap: 26px;
    align-items: flex-start;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
    max-width: 860px;
}
.sec-list .sec-row:first-child { border-top: 1px solid var(--line); }

.sec-num {
    flex-shrink: 0;
    width: 48px; height: 48px;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--vert-dark);
    background: var(--vert-soft);
    border-radius: 50%;
}
.sec-row h3 { margin-bottom: 6px; font-size: 1.12rem; }
.sec-row p { color: var(--muted); font-size: 0.97rem; max-width: 640px; }

/* ── Télécharger ───────────────────────────────────────── */
.dl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.dl-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: var(--bg);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dl-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
}
.dl-client::before { background: var(--vert); }
.dl-business::before { background: linear-gradient(90deg, var(--navy) 60%, var(--or) 60%); }

.dl-logo { width: 68px; height: 68px; border-radius: 16px; border: 1px solid var(--line); object-fit: cover; box-shadow: var(--shadow-sm); }
.dl-card h3 { font-size: 1.45rem; }
.dl-card h3 em { font-style: normal; color: var(--or-dark); }
.dl-tag { color: var(--muted); font-weight: 500; margin-top: -8px; }

.store-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    background: var(--ink);
    color: #fff;
    border: 1px solid var(--ink);
    border-radius: var(--radius-sm);
}
.store-btn .ico { width: 1.4rem; height: 1.4rem; }
.store-btn span { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; font-weight: 600; font-size: 0.92rem; }
.store-btn small { font-size: 0.65rem; font-weight: 500; opacity: 0.7; }

/* stores pas encore ouverts : pas de faux lien */
.store-btn.is-soon {
    background: var(--bg-soft);
    color: var(--muted);
    border: 1px dashed #CBD5E1;
    cursor: default;
}

/* ── FAQ ───────────────────────────────────────────────── */
#faq { padding: 112px 6%; }

.faq-container { max-width: 860px; margin: 0 auto; }
#faq .section-head { max-width: 860px; margin-left: auto; margin-right: auto; }

.faq-item {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}
.faq-item.active { box-shadow: var(--shadow-md); }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    font: 600 0.98rem var(--font-body);
    color: var(--ink);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}
.faq-question .ico { width: 0.95rem; height: 0.95rem; transition: transform 0.25s ease; color: var(--vert); }
.faq-item.active .faq-question .ico { transform: rotate(45deg); }

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}
.faq-answer > div { overflow: hidden; }
.faq-item.active .faq-answer { grid-template-rows: 1fr; }
.faq-answer p { padding: 0 24px 22px; color: var(--muted); font-size: 0.95rem; }

/* ── Footer ────────────────────────────────────────────── */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
    padding: 56px 6% 32px;
    position: relative;
    overflow: hidden;
}

.footer-word {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3rem, 12vw, 9.5rem);
    line-height: 1;
    text-align: center;
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: -0.02em;
    user-select: none;
    margin-bottom: 44px;
    white-space: nowrap;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; max-width: 280px; }

.social-links { display: flex; gap: 10px; margin-top: 22px; }
.social-btn {
    width: 42px; height: 42px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: transform 0.15s ease, background 0.15s ease;
}
.social-btn .ico { width: 1.15rem; height: 1.15rem; }
.social-btn:hover { transform: translateY(-3px); background: var(--vert); border-color: var(--vert); }

.footer-links h4, .footer-contact h4 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-contact a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.15s ease;
}
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact p { color: rgba(255, 255, 255, 0.62); font-size: 0.95rem; margin-bottom: 10px; }
.footer-contact a { display: block; margin-bottom: 8px; }
.contact-sub { color: rgba(255, 255, 255, 0.4); font-size: 0.82rem; }

.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 28px; text-align: center; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.4); }

/* ── Modals (CGU / Privacy) ────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(11, 21, 38, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 20px;
}
.modal-overlay.active { display: flex; }

.modal {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 760px;
    max-height: 86vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 22px 28px;
    border-bottom: 1px solid var(--line);
}
.modal-header h2 { font-size: 1.15rem; letter-spacing: -0.01em; }

.close-btn {
    width: 40px; height: 40px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: var(--bg-soft);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.15s ease;
}
.close-btn:hover { background: var(--line); }
.close-btn .ico { width: 0.95rem; height: 0.95rem; }

.modal-content { padding: 26px 28px; overflow-y: auto; overscroll-behavior: contain; }
.modal-content h3 { margin: 22px 0 8px; font-size: 1rem; color: var(--vert-dark); }
.modal-content p { font-size: 0.93rem; color: var(--ink-soft); }
.modal-content em { font-size: 0.85rem; color: var(--muted); }

/* ── Back to top ───────────────────────────────────────── */
#back-to-top {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 90;
    width: 50px; height: 50px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.15s ease;
}
#back-to-top:hover { background: var(--bg-soft); }
#back-to-top .ico { width: 1.1rem; height: 1.1rem; }
#back-to-top.visible { opacity: 1; pointer-events: auto; transform: none; }

/* ── Animations d'apparition ───────────────────────────── */
[data-aos] { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1); }
[data-aos].aos-animate { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    [data-aos] { opacity: 1; transform: none; transition: none; }
    .marquee-track { animation: none; }
    .float-chip { animation: none; }
    * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 72px; }
    .hero-visual { order: -1; }
    .phone-hero { max-width: 250px; }
    .chip-gps { right: 6%; }
    .chip-otp { left: 6%; }

    .roles-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; gap: 26px; }
    .steps { grid-template-columns: 1fr 1fr; max-width: 720px; margin: 0 auto; }
    .steps::before { display: none; }
    .prix-wrap, .sim-wrap { grid-template-columns: 1fr; gap: 48px; }
    .captures-grid { grid-template-columns: 1fr; gap: 56px; }
    .capture-wide { order: -1; }
    .dl-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 84px 6%; }
    #etapes, #securite, #faq { padding: 84px 6%; }
    #hero { padding-top: 130px; }

    .nav-cta { display: none; }
    .nav-cta-mobile { display: block; margin-top: 10px; }
    .menu-toggle { display: grid; place-items: center; }

    .nav-links {
        position: fixed;
        inset: 0;
        z-index: -1;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        background: var(--bg);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
    }
    .nav-links.open { opacity: 1; pointer-events: auto; z-index: 99; }
    .nav-links a:not(.btn) { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--ink); }

    .hero-facts { flex-direction: column; gap: 14px; }
    .hero-facts li { padding-right: 0; }
    .hero-facts li + li { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 14px; }

    .steps { grid-template-columns: 1fr; gap: 36px; }
    .step p { max-width: none; }

    .sec-row { gap: 16px; }
    .sec-num { width: 42px; height: 42px; font-size: 1rem; }

    .footer-content { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 480px) {
    .btn-large { width: 100%; }
    .estimateur, .sim-card { padding: 26px 20px; }
    .est-result { flex-direction: column; align-items: flex-start; gap: 6px; }
    .store-btn { width: 100%; justify-content: center; }
    .store-btn span { align-items: center; }
    .float-chip { padding: 9px 14px; font-size: 0.78rem; }
    .chip-otp { bottom: 4%; left: 0; }
    .chip-gps { top: 8%; right: 0; }
}

/* ── Impression ────────────────────────────────────────── */
@media print {
    #navbar, .marquee, #back-to-top, .modal-overlay, .skip-link { display: none !important; }
    body { background: #fff; }
    [data-aos] { opacity: 1 !important; transform: none !important; }
}
