/* ============================================================
   LUNICAR — Design System v1
   Direction : "Premium clair & confiance" — editorial, lumineux
   Typo      : Fraunces (display serif) + DM Sans (UI sans-serif)
   Palette   : creme chaud + marine deep + or doux
   ============================================================
   Structure : @layer pour ordre deterministe
     1. tokens       — variables (couleurs, typo, espace, radius)
     2. reset        — reset minimal cibles
     3. base         — body / typo de base / links
     4. layout       — container, sections, grilles
     5. components   — button, card, form, table, accordion, header, footer
     6. pages        — overrides par template (hero, ville, theme, blog, etc)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..700&family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&display=swap');

/* Pas de @layer — l'ordre de chargement et la specificite gouvernent.
   design-system.css est charge APRES style.css/city.css/theme.css/pages.css/etc.
   donc il les override naturellement. */

/* ============================================================
   1. TOKENS
   ============================================================ */
:root {
        /* Couleurs : palette claire & chaude */
        --cream-50:   #FBF8F1;
        --cream-100:  #F5F1E8;
        --cream-200:  #ECE6D5;
        --cream-300:  #E5DFD2;

        --ink-900:    #0D1B2A;
        --ink-800:    #15243A;
        --ink-700:    #1B2638;
        --ink-500:    #4A4944;
        --ink-400:    #6F6B64;
        --ink-300:    #9C978E;
        --ink-200:    #C5C0B5;

        --marine-900: #0D2541;
        --marine-700: #1B3A5C;
        --marine-500: #2E5A88;
        --marine-300: #6A8AAF;

        --gold-700:   #9A7A2E;
        --gold-600:   #B8923A;
        --gold-400:   #D4B26A;
        --gold-200:   #E8D5A6;

        --green:      #2C7A4B;
        --red:        #A85050;

        --line:       #E5DFD2;
        --line-soft:  #EFEADD;

        --surface:    #FFFFFF;
        --bg:         var(--cream-100);
        --bg-alt:     var(--cream-50);

        /* Typo */
        --font-display: "Fraunces", "Times New Roman", Georgia, serif;
        --font-ui:      "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
        --font-mono:    "DM Mono", "JetBrains Mono", ui-monospace, monospace;

        /* Echelle typo */
        --fs-xs:    0.78rem;
        --fs-sm:    0.88rem;
        --fs-base:  1.00rem;
        --fs-md:    1.06rem;
        --fs-lg:    1.18rem;
        --fs-xl:    1.4rem;
        --fs-2xl:   1.75rem;
        --fs-3xl:   2.25rem;
        --fs-4xl:   clamp(2.4rem, 4.4vw, 3.4rem);
        --fs-5xl:   clamp(2.8rem, 5.4vw, 4.2rem);
        --fs-6xl:   clamp(3.2rem, 7vw, 5.6rem);

        /* Espacements */
        --space-1:  4px;
        --space-2:  8px;
        --space-3:  12px;
        --space-4:  16px;
        --space-5:  24px;
        --space-6:  32px;
        --space-7:  48px;
        --space-8:  64px;
        --space-9:  96px;
        --space-10: 128px;

        /* Radius */
        --radius-sm: 8px;
        --radius:    14px;
        --radius-lg: 24px;
        --radius-pill: 999px;

        /* Shadows tres douces (pas d'ombre lourde sur fond clair) */
        --shadow-xs: 0 1px 2px rgba(13,27,42,0.04);
        --shadow-sm: 0 1px 3px rgba(13,27,42,0.05), 0 4px 12px rgba(13,27,42,0.04);
        --shadow:    0 4px 20px rgba(13,27,42,0.06), 0 14px 36px -16px rgba(13,27,42,0.10);
        --shadow-lg: 0 30px 60px -20px rgba(13,27,42,0.12);

        /* Transitions */
        --t-fast:    140ms cubic-bezier(.4,0,.2,1);
        --t-base:    240ms cubic-bezier(.22,.61,.36,1);
        --t-slow:    480ms cubic-bezier(.22,.61,.36,1);

        /* Compat avec style.css existant (heritage) */
        --primary:       var(--marine-700);
        --primary-dark:  var(--marine-900);
        --primary-light: var(--marine-500);
        --secondary:     var(--marine-700);
        --secondary-dark:var(--marine-900);
        --secondary-light:var(--marine-500);
        --accent:        var(--gold-600);
        --accent-dark:   var(--gold-700);
        --accent-light:  var(--gold-400);
        --dark:          var(--ink-900);
        --gray-800:      var(--ink-700);
        --gray-600:      var(--ink-500);
        --gray-400:      var(--ink-300);
        --gray-200:      var(--line);
        --gray-100:      var(--cream-100);
        --white:         var(--surface);
        --success:       var(--green);
        --error:         var(--red);
        --transition:    var(--t-base);
}

/* ============================================================
   2. RESET (minimal, cible)
   ============================================================ */
/* === reset === */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body { margin: 0; }
    img, svg { display: block; max-width: 100%; height: auto; }
    button { font: inherit; cursor: pointer; }
    input, textarea, select { font: inherit; }
    a { color: inherit; text-decoration: none; }
    ul, ol { list-style: none; padding: 0; margin: 0; }

/* ============================================================
   3. BASE — typographie globale
   ============================================================ */
/* === base === */
    body {
        font-family: var(--font-ui);
        font-size: var(--fs-base);
        line-height: 1.6;
        color: var(--ink-900);
        background: var(--bg);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        letter-spacing: -0.005em;
        font-feature-settings: "ss01","ss02","cv11";
    }
    body::before {
        content: "";
        position: fixed; inset: 0;
        pointer-events: none;
        z-index: 0;
        opacity: 0.022;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    }

    h1, h2, h3, h4, h5 {
        font-family: var(--font-display);
        font-weight: 400;
        color: var(--ink-900);
        letter-spacing: -0.02em;
        line-height: 1.1;
        margin: 0;
    }
    h1 { font-size: var(--fs-6xl); }
    h2 { font-size: var(--fs-4xl); }
    h3 { font-size: var(--fs-2xl); }
    h4 { font-size: var(--fs-xl); }
    em, .italic { font-style: italic; color: var(--marine-700); }

    p { margin: 0; color: var(--ink-700); }

    a { color: var(--marine-700); transition: color var(--t-fast); }
    a:hover { color: var(--marine-900); }

    ::selection { background: var(--gold-400); color: var(--ink-900); }

/* ============================================================
   4. LAYOUT — container, sections
   ============================================================ */
/* === layout === */
    .container { max-width: 1240px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
    @media (max-width: 700px) { .container { padding: 0 20px; } }

    .section {
        padding: var(--space-10) 0;
        position: relative;
        z-index: 1;
    }
    @media (max-width: 768px) { .section { padding: var(--space-9) 0; } }

    .section-title {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: var(--fs-4xl);
        color: var(--ink-900);
        letter-spacing: -0.02em;
        line-height: 1.08;
        text-align: center;
        margin: 0 0 var(--space-3);
    }
    .section-title em, .section-title span { color: var(--marine-700); font-style: italic; }
    .section-subtitle {
        font-family: var(--font-ui);
        font-size: var(--fs-md);
        color: var(--ink-500);
        text-align: center;
        max-width: 640px;
        margin: 0 auto var(--space-7);
        line-height: 1.55;
    }

    /* Eyebrow optional via data-eyebrow */
    .eyebrow {
        display: block;
        font-family: var(--font-ui);
        font-size: var(--fs-xs);
        font-weight: 500;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--ink-400);
        margin-bottom: var(--space-4);
    }

/* ============================================================
   5. COMPONENTS
   ============================================================ */
/* === components === */
    /* ---- 5.1 Buttons ---- */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 26px;
        border-radius: var(--radius-pill);
        border: 1px solid transparent;
        font-family: var(--font-ui);
        font-size: 0.98rem;
        font-weight: 500;
        letter-spacing: -0.005em;
        cursor: pointer;
        transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
        text-decoration: none;
        line-height: 1;
        white-space: nowrap;
    }
    .btn-lg { padding: 18px 34px; font-size: 1.05rem; }
    .btn-sm { padding: 10px 18px; font-size: 0.88rem; }

    .btn-primary {
        background: var(--ink-900);
        color: var(--surface);
        box-shadow: var(--shadow-xs);
    }
    .btn-primary:hover {
        background: var(--marine-900);
        color: var(--surface);
        transform: translateY(-1px);
        box-shadow: 0 8px 22px -8px rgba(13,27,42,0.45);
    }
    .btn-outline {
        background: transparent;
        color: var(--ink-900);
        border-color: var(--ink-900);
    }
    .btn-outline:hover {
        background: var(--ink-900);
        color: var(--surface);
    }
    .btn-ghost {
        background: transparent;
        color: var(--ink-900);
        border: none;
        padding: 8px 4px;
        position: relative;
    }
    .btn-ghost::after {
        content: "";
        position: absolute;
        left: 0; right: 0; bottom: 2px;
        height: 1px;
        background: var(--gold-600);
        transform: scaleX(1);
        transform-origin: left;
        transition: transform var(--t-base);
    }
    .btn-ghost:hover { color: var(--marine-900); }
    .btn-block { display: flex; width: 100%; }

    /* ---- 5.2 Header ---- */
    .header {
        background: rgba(251, 248, 241, 0.85);
        -webkit-backdrop-filter: saturate(150%) blur(14px);
        backdrop-filter: saturate(150%) blur(14px);
        border-bottom: 1px solid var(--line);
        box-shadow: none;
        position: sticky;
        top: 0;
        z-index: 50;
    }
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 0;
    }
    .logo { display: inline-flex; align-items: center; }
    .logo-svg { height: 36px; width: auto; }
    .logo-svg text tspan:first-child { fill: var(--ink-900); }
    .logo-svg text tspan:last-child { fill: var(--gold-600); }
    .logo-svg path[stroke="#F59E0B"] { stroke: var(--gold-600); }
    .logo-svg circle[fill="#F59E0B"] { fill: var(--gold-600); }
    .logo-svg path[stroke="#0F172A"] { stroke: var(--ink-900); }

    .nav { display: flex; align-items: center; gap: 24px; }
    .nav-links { display: flex; gap: 28px; }
    .nav-links a {
        font-family: var(--font-ui);
        font-size: 0.94rem;
        font-weight: 500;
        color: var(--ink-700);
        padding-bottom: 2px;
        position: relative;
    }
    .nav-links a::after {
        content: "";
        position: absolute; left: 0; right: 0; bottom: -3px;
        height: 1px; background: var(--marine-900);
        transform: scaleX(0); transform-origin: left;
        transition: transform var(--t-base);
    }
    .nav-links a:hover { color: var(--ink-900); }
    .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

    .nav-cta {
        padding: 11px 22px !important;
        font-size: 0.9rem !important;
    }

    .mobile-menu-btn {
        display: none;
        background: transparent;
        border: none;
        padding: 8px;
    }
    .mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--ink-900); margin: 4px 0; border-radius: 1px; }

    /* ---- 5.3 Footer ---- */
    .footer {
        background: var(--cream-50);
        color: var(--ink-700);
        padding: var(--space-10) 0 var(--space-7);
        border-top: 1px solid var(--line);
        position: relative;
        z-index: 1;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 56px;
        padding-bottom: 60px;
        border-bottom: 1px solid var(--line);
    }
    .footer-about p {
        color: var(--ink-500);
        font-size: 0.96rem;
        line-height: 1.65;
        margin-top: 18px;
    }
    .footer-column h4 {
        font-family: var(--font-ui);
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--ink-400);
        margin-bottom: 22px;
    }
    .footer-column ul li { margin-bottom: 12px; }
    .footer-column a, .footer-contact li {
        color: var(--ink-700);
        font-size: 0.96rem;
        transition: color var(--t-fast);
    }
    .footer-column a:hover { color: var(--marine-900); }
    .footer-contact li { color: var(--ink-500); }
    .footer-bottom {
        padding-top: 30px;
        color: var(--ink-400);
        font-size: 0.84rem;
        display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    }
    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a { color: var(--ink-400); font-size: 0.84rem; }
    @media (max-width: 900px) {
        .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 600px) {
        .footer-grid { grid-template-columns: 1fr; }
    }

    /* ---- 5.4 Cards (generic) ---- */
    .card {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        padding: var(--space-6);
        box-shadow: var(--shadow-sm);
        transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
    }
    .card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
        border-color: var(--gold-400);
    }

    /* ---- 5.5 Forms ---- */
    .form-group { margin-bottom: var(--space-5); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
    @media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
    .form-group label {
        display: block;
        font-family: var(--font-ui);
        font-size: var(--fs-xs);
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--ink-500);
        margin-bottom: 10px;
    }
    .form-control,
    input[type="text"], input[type="email"], input[type="tel"],
    input[type="number"], input[type="password"], textarea, select {
        width: 100%;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-sm);
        padding: 14px 16px;
        font-family: var(--font-ui);
        font-size: var(--fs-base);
        color: var(--ink-900);
        transition: border-color var(--t-fast), box-shadow var(--t-fast);
    }
    .form-control:focus,
    input:focus, textarea:focus, select:focus {
        outline: none;
        border-color: var(--marine-700);
        box-shadow: 0 0 0 3px rgba(27,58,92,0.10);
    }
    textarea { min-height: 140px; resize: vertical; }
    .form-control::placeholder { color: var(--ink-300); }
    .checkbox-inline {
        display: flex; align-items: flex-start; gap: 10px;
        color: var(--ink-500); font-size: var(--fs-sm);
    }
    .checkbox-inline input[type="checkbox"] {
        width: 16px; height: 16px;
        accent-color: var(--marine-700);
        margin-top: 2px;
    }

    /* ---- 5.6 Breadcrumb ---- */
    .breadcrumb {
        background: var(--cream-100);
        border-bottom: 1px solid var(--line);
        padding: 18px 0;
    }
    .breadcrumb-list {
        display: flex; gap: 8px; flex-wrap: wrap;
        font-size: var(--fs-sm); color: var(--ink-400);
    }
    .breadcrumb-list li { display: flex; align-items: center; gap: 8px; }
    .breadcrumb-list li + li::before { content: "/"; color: var(--ink-300); }
    .breadcrumb-list a { color: var(--ink-500); }
    .breadcrumb-list a:hover { color: var(--marine-900); }

    /* ---- 5.7 Accordion (FAQ generic) ---- */
    .faq-item {
        background: transparent;
        border: none;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        padding: 0;
        box-shadow: none;
    }
    .faq-item:hover { background: rgba(255,255,255,0.4); }
    .faq-question {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: var(--fs-xl);
        line-height: 1.25;
        color: var(--ink-900);
        padding: 26px 0;
        display: flex; align-items: flex-start; justify-content: space-between;
        gap: 24px;
        cursor: pointer;
        letter-spacing: -0.01em;
    }
    .faq-icon {
        flex-shrink: 0;
        color: var(--marine-700);
        background: transparent;
        width: 34px; height: 34px;
        border: 1px solid var(--line);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        font-size: 1rem;
        transition: transform var(--t-base), background var(--t-base), color var(--t-base), border-color var(--t-base);
    }
    .faq-item.active .faq-icon {
        background: var(--ink-900);
        color: #fff;
        border-color: var(--ink-900);
        transform: rotate(45deg);
    }
    .faq-answer {
        color: var(--ink-500);
        font-size: var(--fs-base);
        line-height: 1.65;
        padding: 0 0 26px;
        max-width: 88%;
    }
    .faq-grid {
        display: block;
        max-width: 880px;
        margin: var(--space-7) auto 0;
        border-top: 1px solid var(--line);
    }

    /* ---- 5.8 Comparison table ---- */
    .comparison-table-wrapper {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        margin-top: var(--space-7);
    }
    .comparison-table { border-collapse: separate; border-spacing: 0; width: 100%; }
    .comparison-table thead th {
        background: var(--cream-100);
        color: var(--ink-700);
        font-family: var(--font-ui);
        font-weight: 500;
        font-size: 0.92rem;
        text-align: center;
        padding: 22px 18px;
        border-bottom: 1px solid var(--line);
        letter-spacing: 0.02em;
    }
    .comparison-table thead th.highlight {
        background: var(--ink-900);
        color: #fff;
        position: relative;
    }
    .comparison-table thead th.highlight::before {
        content: "LUNICAR";
        position: absolute;
        top: -10px; left: 50%; transform: translateX(-50%);
        background: var(--gold-600);
        color: var(--ink-900);
        font-size: 0.66rem;
        font-weight: 600;
        letter-spacing: 0.15em;
        padding: 3px 10px;
        border-radius: 4px;
    }
    .comparison-table tbody td {
        padding: 20px 18px;
        border-bottom: 1px solid var(--line-soft);
        font-size: 0.96rem;
        color: var(--ink-700);
        text-align: center;
    }
    .comparison-table tbody td:first-child {
        text-align: left; font-weight: 500; color: var(--ink-900);
    }
    .comparison-table tbody td.highlight {
        background: rgba(13,27,42,0.025);
        color: var(--ink-900); font-weight: 500;
    }
    .comparison-table tbody tr:last-child td { border-bottom: none; }
    .check, .check-icon { color: var(--green); font-weight: 600; font-size: 1.15rem; }
    .cross, .cross-icon { color: var(--red); font-weight: 600; font-size: 1.15rem; }
    .partial { color: var(--gold-600); font-weight: 600; font-size: 1.15rem; }

    /* ---- 5.9 Badge / pill ---- */
    .badge {
        display: inline-block;
        padding: 5px 12px;
        border-radius: var(--radius-pill);
        font-size: 0.74rem;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }
    .badge-required, .document-status.required {
        background: rgba(13,27,42,0.06); color: var(--ink-900);
    }
    .badge-optional, .document-status.optional {
        background: rgba(184,146,58,0.12); color: var(--gold-700);
    }

    /* ---- 5.10 Toggles "see more" ---- */
    .see-more-btn, .brands-toggle, .cities-toggle {
        background: transparent;
        border: 1px solid var(--ink-900);
        color: var(--ink-900);
        padding: 12px 24px;
        border-radius: var(--radius-pill);
        font-family: var(--font-ui);
        font-size: 0.92rem;
        font-weight: 500;
        cursor: pointer;
        margin: var(--space-6) auto 0;
        display: inline-flex; align-items: center; gap: 8px;
        transition: var(--t-base);
    }
    .see-more-btn:hover, .brands-toggle:hover, .cities-toggle:hover {
        background: var(--ink-900); color: #fff;
    }
    .hidden-brand, .hidden-city, .hidden-link { display: none; }

/* ============================================================
   6. PAGES — overrides par template
   ============================================================ */
/* === pages === */
    /* ---- 6.1 HOME (index.html) ---- */
    .hero {
        background: var(--cream-100);
        background-image: none;
        min-height: 0;
        display: block;
        padding: 120px 0 110px;
        position: relative;
        overflow: hidden;
        color: var(--ink-900);
        text-align: left;
    }
    .hero::before {
        content: "";
        position: absolute;
        left: auto; bottom: auto;
        right: -240px; top: -240px;
        width: 720px; height: 720px;
        border: 1px solid var(--line);
        background: none !important;
        border-radius: 50%;
        z-index: 0;
    }
    .hero::after {
        content: "";
        position: absolute;
        left: auto; bottom: auto;
        right: -140px; top: -140px;
        width: 520px; height: 520px;
        border: 1px solid var(--gold-400);
        background: none !important;
        border-radius: 50%;
        z-index: 0; opacity: 0.55;
    }
    .hero-content {
        position: relative;
        z-index: 1;
        max-width: 1240px;
        padding-top: 24px;
        text-align: left !important;
        color: var(--ink-900) !important;
        width: 100%;
    }
    .hero-content::before {
        content: "EDITION 2026 — REPRISE AUTOMOBILE";
        display: inline-block;
        font-size: 0.74rem;
        letter-spacing: 0.22em;
        color: var(--ink-400);
        font-weight: 500;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--line);
        margin-bottom: 36px;
        padding-right: 36px;
    }
    .hero h1 {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: var(--fs-6xl);
        line-height: 0.98;
        letter-spacing: -0.025em;
        color: var(--ink-900);
        margin: 0 0 28px;
        max-width: 880px;
    }
    .hero h1 .mobile-br { display: none; }
    .hero h1 span {
        color: var(--marine-700);
        font-style: italic;
        font-weight: 400;
    }
    .hero-subtitle {
        font-family: var(--font-ui);
        font-size: 1.15rem;
        line-height: 1.55;
        color: var(--ink-500) !important;
        max-width: 560px;
        margin: 0 0 40px 0 !important;
        white-space: normal !important;
        opacity: 1 !important;
        text-align: left;
    }

    /* Search box (plaque) */
    .search-box {
        background: transparent !important;
        border-radius: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
        max-width: 640px;
        margin: 0 !important;
    }
    .search-box-inner {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-pill);
        padding: 8px 8px 8px 28px;
        box-shadow: var(--shadow);
        display: flex; align-items: center; gap: 12px;
        transition: border-color var(--t-base), box-shadow var(--t-base);
    }
    .search-box-inner:focus-within {
        border-color: var(--marine-700);
        box-shadow: 0 0 0 4px rgba(27,58,92,0.10), var(--shadow);
    }
    .plaque-input-wrapper { flex: 1; }
    .plaque-input {
        font-family: var(--font-display);
        font-size: 1.25rem;
        font-weight: 400;
        letter-spacing: 0.04em;
        border: none !important; outline: none;
        background: transparent;
        color: var(--ink-900);
        width: 100%;
        padding: 14px 0 !important;
        box-shadow: none !important;
    }
    .plaque-input:focus { box-shadow: none !important; }
    .plaque-input::placeholder { color: var(--ink-300); font-style: italic; }
    .search-btn {
        background: var(--ink-900) !important;
        color: #fff !important;
        border-radius: var(--radius-pill) !important;
        padding: 14px 28px !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        border: none !important;
    }
    .search-btn:hover {
        background: var(--marine-900) !important;
        transform: none !important;
    }
    .search-hint {
        font-size: 0.84rem;
        color: var(--ink-400);
        margin: 14px 0 0 4px;
    }

    /* Steps */
    .section.steps { background: var(--cream-50); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        margin-top: var(--space-7);
        border-top: 1px solid var(--line);
    }
    .step-card {
        background: transparent;
        border: none;
        border-right: 1px solid var(--line);
        box-shadow: none;
        padding: 56px 36px 40px;
        text-align: left;
        transition: background var(--t-base);
        position: relative;
    }
    .step-card:last-child { border-right: none; }
    .step-card:hover { background: rgba(255,255,255,0.5); }
    .step-number {
        font-family: var(--font-display);
        font-style: italic;
        font-size: 3rem;
        line-height: 1;
        color: var(--marine-700);
        background: transparent !important;
        width: auto !important; height: auto !important;
        border-radius: 0 !important;
        margin: 0 0 24px;
        display: block;
        box-shadow: none !important;
        border: none !important;
    }
    .step-icon { display: none; }
    .step-card h3 {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: var(--fs-xl);
        line-height: 1.18;
        color: var(--ink-900);
        margin: 0 0 14px;
        letter-spacing: -0.015em;
    }
    .step-card p {
        font-size: 0.98rem;
        color: var(--ink-500);
        line-height: 1.6;
    }
    @media (max-width: 900px) {
        .steps-grid { grid-template-columns: 1fr; }
        .step-card { border-right: none; border-bottom: 1px solid var(--line); }
        .step-card:last-child { border-bottom: none; }
    }

    /* Advantages */
    .section.advantages { background: var(--cream-100); }
    .advantages-grid, .advantages-grid-6 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: var(--line);
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        overflow: hidden;
        margin-top: var(--space-7);
    }
    .advantage-card {
        background: var(--cream-50);
        border: none !important;
        box-shadow: none !important;
        padding: 44px 32px;
        text-align: left;
        transition: background var(--t-base);
        border-radius: 0 !important;
    }
    .advantage-card:hover { background: var(--surface); transform: none !important; }
    .advantage-icon {
        background: transparent !important;
        color: var(--gold-600);
        width: 44px !important; height: 44px !important;
        border-radius: 0 !important;
        margin-bottom: 22px !important;
        display: flex; align-items: center; justify-content: flex-start;
        border-bottom: 1px solid var(--gold-600);
        padding: 0 0 14px;
    }
    .advantage-icon svg { width: 28px; height: 28px; stroke: var(--marine-900); }
    .advantage-card h3 {
        font-family: var(--font-display);
        font-size: var(--fs-xl);
        font-weight: 400;
        line-height: 1.2;
        color: var(--ink-900);
        margin: 0 0 14px;
        letter-spacing: -0.015em;
    }
    .advantage-card p { font-size: 0.96rem; color: var(--ink-500); line-height: 1.6; }
    @media (max-width: 900px) { .advantages-grid, .advantages-grid-6 { grid-template-columns: 1fr; } }

    /* Comparison section */
    .section.comparison-section { background: var(--cream-50); }

    /* FAQ section */
    .section.faq-section { background: var(--cream-100); }

    /* Brands */
    .section.brands-section { background: var(--cream-50); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .brands-grid, .city-brands-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 1px;
        background: var(--line);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        overflow: hidden;
        margin-top: var(--space-7);
    }
    .brand-card, .brand-item {
        background: var(--surface);
        padding: 32px 16px;
        box-shadow: none !important;
        border-radius: 0 !important;
        border: none !important;
        transition: background var(--t-base);
        display: flex; flex-direction: column; align-items: center; gap: 10px;
    }
    .brand-card:hover, .brand-item:hover {
        background: var(--cream-100);
        transform: none !important;
    }
    .brand-logo, .brand-item img {
        max-width: 60px; max-height: 40px;
        filter: grayscale(1) opacity(0.7);
        transition: filter var(--t-base);
    }
    .brand-card:hover .brand-logo,
    .brand-item:hover img { filter: grayscale(0) opacity(1); }
    .brand-card span, .brand-item span {
        font-size: 0.82rem; color: var(--ink-500); font-weight: 500;
    }
    @media (max-width: 900px) { .brands-grid, .city-brands-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 480px) { .brands-grid, .city-brands-grid { grid-template-columns: repeat(2, 1fr); } }

    /* Cities */
    .section.cities-section { background: var(--cream-100); }
    .cities-grid {
        margin-top: var(--space-7);
        column-count: 4;
        column-gap: 32px;
    }
    .city-link {
        display: block;
        padding: 10px 0;
        font-size: 0.96rem;
        color: var(--ink-700);
        border-bottom: 1px solid var(--line);
        transition: color var(--t-fast), padding-left var(--t-fast);
        break-inside: avoid;
    }
    .city-link:hover { color: var(--marine-900); padding-left: 6px; }
    @media (max-width: 1024px) { .cities-grid { column-count: 3; } }
    @media (max-width: 700px) { .cities-grid { column-count: 2; } }

    /* Articles preview */
    .section.articles { background: var(--cream-50); }
    .articles-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        margin-top: var(--space-7);
    }
    .articles-cta, .steps-cta {
        text-align: center !important;
        margin-top: var(--space-7) !important;
        color: var(--ink-500);
        font-size: 0.96rem;
    }
    .articles-cta a, .steps-cta a {
        display: inline !important;
        background: transparent !important;
        color: var(--ink-900) !important;
        border: none !important;
        border-bottom: 1px solid var(--gold-600) !important;
        padding: 0 0 2px !important;
        border-radius: 0 !important;
        font-weight: 500;
        box-shadow: none !important;
        transform: none !important;
    }
    .articles-cta a:hover, .steps-cta a:hover { color: var(--marine-900) !important; background: transparent !important; }

    /* CTA section dark (fin home) */
    .cta-section {
        background: var(--ink-900) !important;
        color: var(--cream-100);
        padding: 100px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .cta-section::before {
        content: "";
        position: absolute;
        left: 50%; top: -30%;
        transform: translateX(-50%);
        width: 700px; height: 700px;
        border: 1px solid rgba(255,255,255,0.07);
        border-radius: 50%;
    }
    .cta-section::after {
        content: "";
        position: absolute;
        left: 50%; top: -10%;
        transform: translateX(-50%);
        width: 460px; height: 460px;
        border: 1px solid rgba(184,146,58,0.18);
        border-radius: 50%;
    }
    .cta-section .container { position: relative; z-index: 1; }
    .cta-section h2, .cta-section h1 {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: var(--fs-5xl);
        color: #fff;
        line-height: 1.05;
        letter-spacing: -0.02em;
        margin-bottom: 20px;
    }
    .cta-section em, .cta-section span { color: var(--gold-400); font-style: italic; }
    .cta-section p { color: rgba(245,241,232,0.7); font-size: 1.1rem; margin-bottom: 36px; }
    .cta-section .btn-primary {
        background: #fff;
        color: var(--ink-900);
    }
    .cta-section .btn-primary:hover { background: var(--gold-400); color: var(--ink-900); }

    /* Services links (home) */
    .section.services-links { background: var(--cream-50); }
    .services-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: var(--space-7);
    }
    .service-category {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        padding: 28px;
        transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
    }
    .service-category:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
        border-color: var(--gold-400);
    }
    .service-category h3 {
        font-family: var(--font-display);
        font-style: italic;
        font-weight: 400;
        font-size: var(--fs-xl);
        color: var(--marine-700);
        margin: 0 0 14px;
    }
    .service-links-list li { padding: 6px 0; }
    .service-links-list a { color: var(--ink-700); font-size: 0.92rem; }
    .service-links-list a:hover { color: var(--marine-900); }
    @media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

    /* ---- 6.2 PAGE HEADER (mentions, confidentialite, garanties) ---- */
    .page-header {
        background: var(--cream-100);
        padding: 100px 0 80px;
        border-bottom: 1px solid var(--line);
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .page-header::before {
        content: "";
        position: absolute;
        right: -180px; top: -180px;
        width: 540px; height: 540px;
        border: 1px solid var(--gold-400);
        border-radius: 50%;
        opacity: 0.45;
    }
    .page-header h1 {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: var(--fs-5xl);
        color: var(--ink-900);
        line-height: 1.05;
        letter-spacing: -0.025em;
        margin: 0 auto 20px;
        max-width: 900px;
        position: relative; z-index: 1;
    }
    .page-header p {
        font-size: var(--fs-md);
        color: var(--ink-500);
        max-width: 640px;
        margin: 0 auto;
        line-height: 1.6;
        position: relative; z-index: 1;
    }

    /* ---- 6.3 LEGAL SECTIONS (mentions, confidentialite) ---- */
    .section.legal-content { background: var(--cream-50); padding: 80px 0; }
    .legal-section {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        padding: 48px;
        margin-bottom: 32px;
        max-width: 880px;
        margin-left: auto; margin-right: auto;
        box-shadow: var(--shadow-xs);
    }
    .legal-section h2 {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: var(--fs-2xl);
        color: var(--ink-900);
        margin: 0 0 20px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--line);
        letter-spacing: -0.015em;
    }
    .legal-section h3 {
        font-family: var(--font-display);
        font-style: italic;
        font-weight: 400;
        font-size: var(--fs-lg);
        color: var(--marine-700);
        margin: 24px 0 12px;
    }
    .legal-section p, .legal-section li {
        font-family: var(--font-ui);
        font-size: 0.98rem;
        color: var(--ink-700);
        line-height: 1.7;
        margin-bottom: 12px;
    }
    .legal-section ul {
        margin: 12px 0 16px 0;
        padding-left: 24px;
        list-style: disc;
    }
    .legal-section ul li::marker { color: var(--gold-600); }
    .legal-section strong, .legal-section b { color: var(--ink-900); font-weight: 600; }
    .legal-section a { color: var(--marine-700); border-bottom: 1px solid var(--gold-400); }
    .legal-update {
        font-size: var(--fs-sm);
        color: var(--ink-400);
        font-style: italic;
        text-align: center;
        margin-top: 32px;
    }

    /* ---- 6.4 GARANTIES PAGE ---- */
    .garanties-intro {
        max-width: 720px; margin: 0 auto;
        text-align: center;
        color: var(--ink-500);
        font-size: var(--fs-md);
        margin-bottom: var(--space-7);
    }
    .garanties-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .garantie-card {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        padding: 36px;
        transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
        box-shadow: var(--shadow-xs);
    }
    .garantie-card:hover {
        transform: translateY(-2px);
        border-color: var(--gold-400);
        box-shadow: var(--shadow);
    }
    .garantie-icon {
        color: var(--marine-900);
        margin-bottom: 22px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--gold-400);
        width: fit-content;
    }
    .garantie-icon svg { width: 32px; height: 32px; }
    .garantie-card h3 {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: var(--fs-xl);
        color: var(--ink-900);
        margin-bottom: 14px;
        letter-spacing: -0.015em;
    }
    .garantie-card p { color: var(--ink-500); font-size: 0.98rem; line-height: 1.6; }
    @media (max-width: 900px) { .garanties-grid { grid-template-columns: 1fr; } }

    /* ---- 6.5 ARTICLES LIST ---- */
    .articles-intro {
        text-align: center; max-width: 640px; margin: 0 auto var(--space-7);
        color: var(--ink-500); font-size: var(--fs-md);
    }
    .articles-layout {
        display: grid;
        grid-template-columns: 1fr 280px;
        gap: 56px;
        align-items: start;
    }
    .articles-main { min-width: 0; }
    .articles-sidebar {
        position: sticky; top: 100px;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        padding: 28px;
        box-shadow: var(--shadow-xs);
    }
    .articles-sidebar h3 {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: var(--fs-lg);
        color: var(--ink-900);
        margin: 0 0 16px;
    }
    .articles-sidebar h3 + h3 { margin-top: 28px; }
    .category-list li {
        padding: 8px 0;
        font-size: 0.94rem;
        color: var(--ink-700);
        border-bottom: 1px solid var(--line-soft);
        cursor: pointer;
        transition: color var(--t-fast);
    }
    .category-list li:hover { color: var(--marine-900); }
    .articles-filters {
        display: flex; gap: 10px; flex-wrap: wrap;
        margin-bottom: 32px;
    }
    .filter-btn {
        padding: 8px 18px;
        border-radius: var(--radius-pill);
        background: transparent;
        border: 1px solid var(--line);
        color: var(--ink-700);
        font-size: 0.88rem;
        font-weight: 500;
        cursor: pointer;
        transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
    }
    .filter-btn:hover { border-color: var(--ink-900); color: var(--ink-900); }
    .filter-btn.active {
        background: var(--ink-900);
        color: #fff;
        border-color: var(--ink-900);
    }
    .empty-state {
        text-align: center; padding: 80px 20px;
        color: var(--ink-400);
    }
    .empty-icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.5; }

    /* Article cards (preview) */
    .article-card {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        overflow: hidden;
        transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
        display: flex; flex-direction: column;
        box-shadow: var(--shadow-xs);
    }
    .article-card:hover {
        transform: translateY(-2px);
        border-color: var(--gold-400);
        box-shadow: var(--shadow);
    }
    .article-card-image {
        aspect-ratio: 16/10;
        background: var(--cream-200);
        font-size: 3rem;
        display: flex; align-items: center; justify-content: center;
        color: var(--marine-700);
    }
    .article-card-image img { width: 100%; height: 100%; object-fit: cover; }
    .article-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
    .article-card-category {
        font-size: 0.74rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--gold-700);
        font-weight: 500;
        margin-bottom: 12px;
    }
    .article-card-title {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: var(--fs-xl);
        color: var(--ink-900);
        margin: 0 0 12px;
        line-height: 1.2;
        letter-spacing: -0.015em;
    }
    .article-card-extract {
        font-size: 0.94rem;
        color: var(--ink-500);
        line-height: 1.6;
        margin-bottom: 16px;
        flex: 1;
    }
    .article-card-meta {
        display: flex; justify-content: space-between;
        font-size: 0.82rem; color: var(--ink-400);
        border-top: 1px solid var(--line-soft);
        padding-top: 14px;
    }
    @media (max-width: 900px) {
        .articles-layout { grid-template-columns: 1fr; }
        .articles-sidebar { position: static; }
    }

    /* ---- 6.6 SINGLE ARTICLE ---- */
    .article-single {
        background: var(--cream-50);
        padding: 80px 0;
    }
    .article-layout {
        display: grid;
        grid-template-columns: 220px 1fr 220px;
        gap: 56px;
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 28px;
        align-items: start;
    }
    .article-main {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        padding: 64px;
        box-shadow: var(--shadow-sm);
    }
    .article-header { margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
    .article-header .article-card-category { margin-bottom: 18px; }
    .article-header h1 {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: var(--fs-4xl);
        color: var(--ink-900);
        line-height: 1.08;
        letter-spacing: -0.02em;
        margin: 0 0 24px;
    }
    .article-header .author-info {
        display: flex; align-items: center; gap: 12px;
        font-size: var(--fs-sm); color: var(--ink-500);
    }
    .author-avatar {
        width: 38px; height: 38px;
        background: var(--marine-700); color: #fff;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        font-weight: 500;
        font-size: var(--fs-sm);
    }
    .author-label { color: var(--ink-400); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }
    .author-name { color: var(--ink-900); font-weight: 500; }
    .article-body {
        font-family: var(--font-ui);
        font-size: 1.06rem;
        line-height: 1.78;
        color: var(--ink-700);
    }
    .article-body h2 {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: var(--fs-2xl);
        color: var(--ink-900);
        margin: 48px 0 18px;
        letter-spacing: -0.015em;
    }
    .article-body h3 {
        font-family: var(--font-display);
        font-style: italic;
        font-weight: 400;
        font-size: var(--fs-lg);
        color: var(--marine-700);
        margin: 32px 0 14px;
    }
    .article-body p { margin: 0 0 20px; }
    .article-body ul, .article-body ol { margin: 16px 0; padding-left: 24px; }
    .article-body ul { list-style: disc; }
    .article-body ol { list-style: decimal; }
    .article-body ul li::marker { color: var(--gold-600); }
    .article-body a { color: var(--marine-700); border-bottom: 1px solid var(--gold-400); }
    .article-body blockquote {
        border-left: 3px solid var(--gold-600);
        padding-left: 24px;
        margin: 32px 0;
        font-family: var(--font-display);
        font-style: italic;
        font-size: var(--fs-xl);
        color: var(--ink-900);
        line-height: 1.4;
    }
    .article-body strong { color: var(--ink-900); }
    .article-tags {
        display: flex; gap: 10px; flex-wrap: wrap;
        margin-top: 40px; padding-top: 24px;
        border-top: 1px solid var(--line);
    }
    .article-tags a {
        padding: 6px 14px;
        border-radius: var(--radius-pill);
        background: var(--cream-100);
        color: var(--ink-700);
        font-size: 0.82rem;
        border-bottom: none;
    }
    .article-tags a:hover { background: var(--ink-900); color: #fff; }
    .article-share {
        position: sticky; top: 100px;
        display: flex; flex-direction: column; gap: 12px;
        align-items: flex-start;
    }
    .article-share a {
        width: 40px; height: 40px;
        border: 1px solid var(--line);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        color: var(--ink-700);
        background: var(--surface);
        transition: border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
    }
    .article-share a:hover { border-color: var(--ink-900); color: var(--ink-900); transform: translateY(-2px); }
    .article-toc {
        position: sticky; top: 100px;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        padding: 24px;
        box-shadow: var(--shadow-xs);
    }
    .article-toc h4 {
        font-family: var(--font-ui);
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--ink-400);
        margin: 0 0 14px;
    }
    .article-toc ul li { padding: 8px 0; border-bottom: 1px solid var(--line-soft); }
    .article-toc ul li:last-child { border-bottom: none; }
    .article-toc a { color: var(--ink-700); font-size: 0.9rem; }
    .article-toc a:hover { color: var(--marine-900); }
    .article-cta {
        background: var(--ink-900);
        color: #fff;
        border-radius: var(--radius-lg);
        padding: 40px;
        margin-top: 40px;
        text-align: center;
    }
    .article-cta h3 { font-family: var(--font-display); color: #fff; font-size: var(--fs-2xl); margin-bottom: 14px; }
    .article-cta p { color: rgba(245,241,232,0.7); margin-bottom: 24px; }
    .article-cta .btn-primary { background: var(--gold-400); color: var(--ink-900); }
    .article-cta .btn-primary:hover { background: #fff; color: var(--ink-900); }
    .article-footer { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--line); }
    @media (max-width: 1100px) {
        .article-layout { grid-template-columns: 1fr; gap: 32px; }
        .article-main { padding: 40px 28px; }
        .article-share, .article-toc { position: static; }
    }

    /* ---- 6.7 CONTACT PAGE ---- */
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 56px;
        align-items: start;
    }
    .contact-info {
        background: transparent;
        padding: 0;
    }
    .contact-info > h2 {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: var(--fs-3xl);
        color: var(--ink-900);
        margin: 0 0 16px;
        letter-spacing: -0.02em;
    }
    .contact-info > p {
        color: var(--ink-500);
        font-size: var(--fs-md);
        margin-bottom: 40px;
        line-height: 1.6;
    }
    .contact-list { display: flex; flex-direction: column; gap: 16px; }
    .contact-item {
        display: flex; align-items: flex-start; gap: 18px;
        padding: 20px;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        transition: border-color var(--t-base);
    }
    .contact-item:hover { border-color: var(--gold-400); }
    .contact-item .icon {
        flex-shrink: 0;
        width: 44px; height: 44px;
        border-radius: 50%;
        background: var(--cream-100);
        color: var(--marine-900);
        display: flex; align-items: center; justify-content: center;
    }
    .contact-item .icon svg { width: 20px; height: 20px; }
    .contact-item h4 {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: var(--fs-md);
        color: var(--ink-900);
        margin: 0 0 4px;
    }
    .contact-item p { font-size: 0.94rem; color: var(--ink-500); margin: 0; }
    .contact-item a { color: var(--marine-700); }
    .contact-hours {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 24px;
        margin-top: 24px;
    }
    .contact-hours h4 {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: var(--fs-md);
        color: var(--ink-900);
        margin: 0 0 14px;
    }
    .hours-list li {
        display: flex; justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px solid var(--line-soft);
        font-size: 0.94rem;
        color: var(--ink-700);
    }
    .hours-list li:last-child { border-bottom: none; }
    .contact-form-card {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        padding: 48px;
        box-shadow: var(--shadow-sm);
    }
    .contact-form-card h2 {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: var(--fs-3xl);
        color: var(--ink-900);
        margin: 0 0 12px;
        letter-spacing: -0.02em;
    }
    .contact-form-card > p {
        color: var(--ink-500);
        margin-bottom: 32px;
        line-height: 1.6;
    }
    @media (max-width: 900px) {
        .contact-grid { grid-template-columns: 1fr; }
        .contact-form-card { padding: 32px 24px; }
    }

    /* ---- 6.8 REPRISE (formulaire multi-step) ---- */
    .form-container {
        max-width: 880px;
        margin: 0 auto;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        padding: 56px;
        box-shadow: var(--shadow-sm);
    }
    .form-container h2 {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: var(--fs-3xl);
        color: var(--ink-900);
        margin: 0 0 16px;
        letter-spacing: -0.02em;
    }
    .form-container h3 {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: var(--fs-2xl);
        color: var(--ink-900);
        margin: 0 0 24px;
        letter-spacing: -0.015em;
    }
    .form-step { padding: 0; }
    .btn-prev, .btn-next {
        padding: 14px 28px;
        border-radius: var(--radius-pill);
        font-family: var(--font-ui);
        font-weight: 500;
    }
    .btn-prev {
        background: transparent;
        color: var(--ink-700);
        border: 1px solid var(--line);
    }
    .btn-prev:hover { background: var(--cream-50); border-color: var(--ink-900); color: var(--ink-900); }
    @media (max-width: 768px) {
        .form-container { padding: 32px 24px; }
    }

    /* ---- 6.9 CITY HERO + sections ville ---- */
    .city-hero {
        background: var(--cream-100);
        padding: 100px 0 60px;
        color: var(--ink-900);
        text-align: left;
        position: relative;
        overflow: hidden;
    }
    .city-hero::before {
        content: "";
        position: absolute;
        right: -180px; top: -180px;
        width: 600px; height: 600px;
        border: 1px solid var(--gold-400);
        border-radius: 50%;
        opacity: 0.5;
    }
    .city-hero-content { position: relative; z-index: 1; max-width: 1240px; }
    .city-hero h1 {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: var(--fs-5xl);
        line-height: 1.02;
        letter-spacing: -0.025em;
        color: var(--ink-900);
        margin: 0 0 24px;
        max-width: 920px;
    }
    .city-hero h1 span { color: var(--marine-700); font-style: italic; font-weight: 400; }
    .city-hero-subtitle {
        font-size: var(--fs-md);
        color: var(--ink-500);
        max-width: 600px;
        margin: 0 0 40px;
        line-height: 1.6;
    }
    .city-search-box { max-width: 600px; }
    .city-search-form { margin: 0; }
    .city-search-input-wrapper {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-pill);
        padding: 8px 8px 8px 28px;
        box-shadow: var(--shadow);
        display: flex; align-items: center; gap: 12px;
        transition: border-color var(--t-base), box-shadow var(--t-base);
    }
    .city-search-input-wrapper:focus-within {
        border-color: var(--marine-700);
        box-shadow: 0 0 0 4px rgba(27,58,92,0.10), var(--shadow);
    }
    .city-search-input {
        font-family: var(--font-display);
        font-size: 1.2rem;
        border: none !important; outline: none;
        background: transparent;
        color: var(--ink-900);
        flex: 1; padding: 14px 0;
        letter-spacing: 0.04em;
        box-shadow: none !important;
    }
    .city-search-input::placeholder { color: var(--ink-300); font-style: italic; }
    .city-search-btn {
        background: var(--ink-900);
        color: #fff;
        border: none;
        border-radius: var(--radius-pill);
        padding: 14px 28px;
        font-family: var(--font-ui);
        font-size: 0.95rem;
        font-weight: 500;
        cursor: pointer;
        transition: background var(--t-fast);
    }
    .city-search-btn:hover { background: var(--marine-900); }
    .city-search-hint { font-size: 0.84rem; color: var(--ink-400); margin: 14px 0 0 4px; }
    .city-hero-stats {
        margin-top: 60px;
        display: flex; gap: 56px; flex-wrap: wrap;
        border-top: 1px solid var(--line);
        padding-top: 32px;
        max-width: 800px;
    }
    .city-hero-stat { display: flex; flex-direction: column; gap: 4px; }
    .city-hero-stat .stat-value {
        font-family: var(--font-display);
        font-style: italic;
        font-size: 2.2rem;
        line-height: 1;
        color: var(--marine-700);
    }
    .city-hero-stat .stat-label {
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        color: var(--ink-400);
    }

    .city-steps { background: var(--cream-50); }
    .city-why { background: var(--cream-100); }
    .city-vehicles { background: var(--cream-50); }
    .city-comparison { background: var(--cream-100); }
    .city-estimation { background: var(--cream-50); }
    .city-documents { background: var(--cream-100); }
    .city-local-info { background: var(--cream-50); }
    .city-faq { background: var(--cream-100); }
    .city-brands { background: var(--cream-50); }
    .nearby-cities { background: var(--cream-100); }
    .city-cta { background: var(--ink-900); padding: 100px 0; }

    .city-steps h2, .city-why h2, .city-vehicles h2, .city-comparison h2,
    .city-estimation h2, .city-documents h2, .city-local-info h2, .city-faq h2,
    .city-brands h2, .nearby-cities h2 {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: var(--fs-4xl);
        color: var(--ink-900);
        letter-spacing: -0.02em;
        line-height: 1.08;
        text-align: left;
        margin-bottom: var(--space-4);
    }
    .city-steps-grid, .city-why-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        margin-top: var(--space-7);
    }
    .city-step, .city-why-card {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        padding: 36px;
        box-shadow: var(--shadow-sm);
        transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
    }
    .city-step:hover, .city-why-card:hover {
        transform: translateY(-2px);
        border-color: var(--gold-400);
        box-shadow: var(--shadow);
    }
    .city-step-number {
        font-family: var(--font-display);
        font-style: italic;
        font-size: 2.8rem;
        color: var(--marine-700);
        line-height: 1;
        margin-bottom: 18px;
        display: block;
        background: transparent !important;
        width: auto !important; height: auto !important;
        border-radius: 0 !important;
    }
    .city-step h3, .city-why-card h3 {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: var(--fs-xl);
        color: var(--ink-900);
        margin-bottom: 12px;
        letter-spacing: -0.015em;
    }
    .city-step p, .city-why-card p { color: var(--ink-500); font-size: 0.98rem; line-height: 1.6; }
    .city-why-icon {
        color: var(--marine-900);
        margin-bottom: 18px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--gold-400);
        width: fit-content;
    }
    .city-vehicles-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        margin-top: var(--space-7);
    }
    .city-vehicle-type {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        padding: 28px;
    }
    .city-vehicle-type h4 {
        font-family: var(--font-display);
        font-style: italic;
        font-weight: 400;
        font-size: var(--fs-lg);
        color: var(--marine-700);
        margin-bottom: 14px;
    }
    .city-vehicle-type ul li {
        padding: 8px 0;
        color: var(--ink-700);
        font-size: 0.94rem;
        border-bottom: 1px solid var(--line-soft);
    }
    .city-vehicle-type ul li:last-child { border-bottom: none; }
    .city-documents-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        margin-top: var(--space-7);
    }
    .city-document {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        padding: 32px;
        transition: border-color var(--t-base), transform var(--t-base);
    }
    .city-document:hover { border-color: var(--gold-400); transform: translateY(-2px); }
    .document-icon { color: var(--marine-900); margin-bottom: 18px; }
    .city-document h4 {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: var(--fs-lg);
        color: var(--ink-900);
        margin-bottom: 10px;
    }
    .city-document p { color: var(--ink-500); font-size: 0.94rem; margin-bottom: 14px; }

    .brands-more {
        text-align: center; margin-top: var(--space-6);
        color: var(--ink-500); font-style: italic;
        font-family: var(--font-display);
        font-size: var(--fs-md);
    }
    .city-faq-accordion {
        max-width: 880px;
        margin: var(--space-7) auto 0;
        border-top: 1px solid var(--line);
    }
    .city-cta-box {
        background: transparent;
        color: #fff;
        text-align: left;
        padding: 0;
        max-width: 900px;
    }
    .city-cta-box h2 {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: var(--fs-5xl);
        color: #fff !important;
        line-height: 1.05;
        letter-spacing: -0.02em;
        margin-bottom: 20px;
        text-align: left;
    }
    .city-cta-box p { color: rgba(245,241,232,0.7); font-size: 1.1rem; margin-bottom: 36px; }
    .cta-features { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 32px; color: rgba(245,241,232,0.85); }
    .cta-features span { display: flex; align-items: center; gap: 8px; font-size: 0.94rem; }
    .cta-features svg { color: var(--gold-400); }

    @media (max-width: 900px) {
        .city-steps-grid, .city-why-grid { grid-template-columns: 1fr; }
        .city-vehicles-grid { grid-template-columns: repeat(2, 1fr); }
        .city-documents-grid { grid-template-columns: 1fr; }
        .city-hero-stats { gap: 32px; }
    }

    /* ---- 6.10 THEME HERO ---- */
    .theme-hero {
        background: var(--cream-100);
        padding: 100px 0 60px;
        color: var(--ink-900);
        text-align: left;
        position: relative;
        overflow: hidden;
    }
    .theme-hero::before {
        content: "";
        position: absolute;
        right: -160px; top: -160px;
        width: 540px; height: 540px;
        border: 1px solid var(--gold-400);
        border-radius: 50%;
        opacity: 0.45;
    }
    .theme-hero-content { position: relative; z-index: 1; }
    .theme-hero h1 {
        font-family: var(--font-display);
        font-weight: 400;
        font-size: var(--fs-5xl);
        color: var(--ink-900);
        line-height: 1.04;
        letter-spacing: -0.025em;
        margin: 0 0 22px;
        text-align: left;
    }
    .theme-hero-subtitle {
        font-size: var(--fs-md);
        color: var(--ink-500);
        max-width: 620px;
        line-height: 1.6;
        margin-bottom: 36px;
    }

    /* ---- 6.11 Animations ---- */
    @keyframes fade-up {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .animate-on-scroll {
        opacity: 0;
        animation: fade-up 800ms cubic-bezier(.22,.61,.36,1) forwards;
    }
    .animate-on-scroll:nth-child(2) { animation-delay: 100ms; }
    .animate-on-scroll:nth-child(3) { animation-delay: 200ms; }
    .animate-on-scroll:nth-child(4) { animation-delay: 300ms; }
    .animate-on-scroll:nth-child(5) { animation-delay: 400ms; }
    .animate-on-scroll:nth-child(6) { animation-delay: 500ms; }
    .hero h1, .city-hero h1, .theme-hero h1, .page-header h1 {
        animation: fade-up 900ms cubic-bezier(.22,.61,.36,1) both;
        animation-delay: 100ms;
    }
    .hero-subtitle, .city-hero-subtitle, .theme-hero-subtitle, .page-header p {
        animation: fade-up 900ms cubic-bezier(.22,.61,.36,1) both;
        animation-delay: 220ms;
    }
    .search-box, .city-search-box {
        animation: fade-up 900ms cubic-bezier(.22,.61,.36,1) both;
        animation-delay: 340ms;
    }
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
        }
    }

    /* ---- 6.12 Responsive global ---- */
    @media (max-width: 768px) {
        .nav-links { display: none; }
        .mobile-menu-btn { display: block; }
        .hero { padding: 90px 0 70px; }
        .hero-content::before { display: none; }
        .search-box-inner,
        .city-search-input-wrapper {
            padding: 6px 6px 6px 18px;
            flex-direction: column; align-items: stretch;
        }
        .search-btn, .city-search-btn { width: 100%; }
        .legal-section { padding: 32px 24px; }
    }
