:root {
    --red: #d32f2f;
    --red-dark: #b71c1c;
    --black: #14151a;
    --black-soft: #1c1d24;
    --text: #1c1d21;
    --muted: #6b6f76;
    --border: #e7e8ec;
    --bg-soft: #f7f7f9;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    background: #fff;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.accent { color: var(--red); }
.muted { color: var(--muted); }
.small { font-size: 13px; }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    padding: 13px 24px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 15px;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- HEADER ---------- */
.site-header { background: var(--black); position: sticky; top: 0; z-index: 50; }
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; color: #fff; }
.brand-badge {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--red); display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; font-weight: 700; font-size: 17px; line-height: 1.1; }
.brand-text small { font-weight: 500; font-size: 9px; letter-spacing: .5px; color: #a9abb3; }

.main-nav { display: flex; gap: 26px; }
.main-nav a { color: #cfd0d6; font-size: 14px; font-weight: 500; }
.main-nav a.active, .main-nav a:hover { color: var(--red); }

.burger { display: none; background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; }
.mobile-nav {
    display: none; flex-direction: column; gap: 4px;
    background: var(--black-soft); padding: 0 20px;
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
}
.mobile-nav.open { max-height: 400px; padding: 16px 20px 20px; }
.mobile-nav a { color: #dcdde2; padding: 10px 0; border-bottom: 1px solid #2a2b33; font-size: 15px; }
.mobile-nav .btn { margin-top: 10px; }

/* ---------- FLASH ---------- */
.flash-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; padding: 12px 16px; border-radius: 10px; font-size: 14px; }

/* ---------- HERO ---------- */
.hero {
    background: linear-gradient(180deg, #0e0f13 0%, #1b1c23 100%);
    color: #fff;
    padding: 56px 0 70px;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }
.hero-text h1 { font-size: 38px; line-height: 1.2; margin: 0 0 14px; }
.hero-sub { color: #c7c8ce; font-size: 16px; margin-bottom: 22px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 26px; font-size: 13px; color: #d6d7dc; }
.hero-trust { font-size: 14px; }
.stars { color: #ffb400; letter-spacing: 2px; margin-right: 4px; }

.hero-card {
    background: #fff; color: var(--text);
    border-radius: 18px; padding: 26px;
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.hero-card h3 { margin: 0 0 4px; font-size: 19px; }
.tab-switch { display: flex; gap: 8px; margin: 18px 0; }
.tab {
    flex: 1; padding: 10px; border-radius: 10px; border: 1px solid var(--border);
    background: var(--bg-soft); font-size: 13px; font-weight: 600; cursor: pointer;
}
.tab.active { background: var(--black); color: #fff; border-color: var(--black); }
.field-label { display: block; font-size: 12px; font-weight: 600; margin: 14px 0 6px; }
.field {
    width: 100%; padding: 11px 14px; border-radius: 10px;
    border: 1px solid var(--border); font-size: 14px; background: #fff;
}
.hero-card .btn-block { margin-top: 18px; }
.hero-card-footer {
    display: flex; justify-content: space-between; margin-top: 14px;
    font-size: 12px; color: var(--muted); flex-wrap: wrap; gap: 6px;
}

/* ---------- PARTNERS ---------- */
.partners { background: #fff; padding: 34px 0; border-bottom: 1px solid var(--border); }
.partners-label { text-align: center; color: var(--muted); font-size: 13px; margin-bottom: 18px; }
.partners-row {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 34px; row-gap: 16px;
}
.partner-logo { font-weight: 700; font-size: 16px; color: #4a4c54; opacity: .8; }

/* ---------- OFFERS ---------- */
.offers { padding: 70px 0; background: var(--bg-soft); }
.section-title { text-align: center; font-size: 28px; margin-bottom: 40px; }
.section-title.light { color: #fff; }
.offers-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.offer-card {
    background: #fff; border: 1px solid var(--border); border-radius: 16px;
    padding: 26px 20px; text-align: center;
}
.offer-icon {
    width: 54px; height: 54px; border-radius: 50%; background: #fdeaea;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px; font-size: 22px;
}
.offer-card h3 { margin: 0 0 6px; font-size: 17px; }
.offer-price { margin: 16px 0; }
.offer-price .price { font-size: 26px; font-weight: 800; color: var(--red); }
.offer-price .unit { font-size: 12px; color: var(--muted); }

/* ---------- HOW IT WORKS ---------- */
.how-it-works { background: var(--black); padding: 60px 0; }
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.step-item { text-align: center; color: #dfe0e5; }
.step-num {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--red); color: #fff; font-weight: 700; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
}
.step-item h4 { margin: 0 0 6px; font-size: 15px; color: #fff; }

/* ---------- FLEET ---------- */
.fleet { padding: 70px 0; }
.fleet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.fleet h2 { font-size: 26px; margin: 0 0 6px; }
.fleet-list { margin: 20px 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.fleet-visual {
    height: 260px; border-radius: 16px;
    background: linear-gradient(135deg, #1c1d24, #3a3c46);
}

/* ---------- APP PROMO ---------- */
.app-promo { background: var(--bg-soft); padding: 70px 0; }
.app-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: center; }
.app-phones {
    height: 300px; border-radius: 16px;
    background: linear-gradient(135deg, #101114, #2b2d36);
}
.app-features { margin: 18px 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.store-badges { display: flex; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.store-badge {
    background: var(--black); color: #fff; padding: 10px 18px;
    border-radius: 10px; font-size: 13px; font-weight: 600;
}

/* ---------- FOOTER ---------- */
.site-footer { background: var(--black); color: #cfd0d6; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.footer-brand { color: #fff; margin-bottom: 12px; }
.site-footer h4 { color: #fff; font-size: 15px; margin: 0 0 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-links a { color: #b7b8be; }
.footer-links a:hover { color: var(--red); }
.footer-contact { font-size: 14px; margin: 0 0 10px; }
.footer-bottom {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
    border-top: 1px solid #2a2b33; margin-top: 40px; padding-top: 20px; font-size: 12px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 960px) {
    .main-nav { display: none; }
    .burger { display: block; }
    .mobile-nav { display: flex; }

    .hero-grid { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 30px; }

    .offers-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-row { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
    .fleet-grid { grid-template-columns: 1fr; }
    .fleet-visual { order: -1; }
    .app-grid { grid-template-columns: 1fr; }
    .app-phones { order: -1; height: 220px; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .container { padding: 0 18px; }
    .header-inner { padding: 12px 18px; }
    .brand-text { font-size: 15px; }

    .hero { padding: 36px 0 50px; }
    .hero-text h1 { font-size: 26px; }
    .hero-badges { flex-direction: column; gap: 8px; }

    .offers-grid { grid-template-columns: 1fr; }
    .steps-row { grid-template-columns: 1fr; }
    .partners-row { gap: 20px; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
}

/* ================================================================
   V2 — Nouvelle maquette (logo, hero riche, types de véhicules,
   bandeau confiance, profils, pourquoi nous, CTA, blog)
   ================================================================ */

.d-block { display: block; }

/* ---------- HEADER V2 ---------- */
.brand-logo-img { height: 34px; width: auto; border-radius: 6px; }
.header-right { display: flex; align-items: center; gap: 16px; }
.header-phone { color: #cfd0d6; font-size: 13px; font-weight: 600; white-space: nowrap; }
.header-phone:hover { color: #fff; }
.social-row { display: flex; gap: 8px; margin-top: 14px; }
.social-btn {
    width: 32px; height: 32px; border-radius: 50%; background: #23242c;
    display: flex; align-items: center; justify-content: center; color: #cfd0d6; font-size: 11px; font-weight: 700;
}
.social-btn:hover { background: var(--red); color: #fff; }

/* ---------- HERO V2 ---------- */
.hero-v2 { position: relative; background: #0e0f13; color: #fff; overflow: hidden; padding: 54px 0 64px; }
.hero-v2-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero-v2-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,11,14,.95) 20%, rgba(10,11,14,.55) 70%); }
.hero-v2-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: start; }

.hero-badge { display: inline-block; background: rgba(211,47,47,.15); color: #ff6659; border: 1px solid rgba(211,47,47,.4); padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .3px; }
.hero-v2 h1 { font-size: 36px; line-height: 1.2; margin: 0 0 14px; }
.hero-v2 .hero-sub { color: #d6d7dc; font-size: 15px; max-width: 480px; margin-bottom: 20px; }
.hero-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; list-style: none; padding: 0; margin: 0 0 22px; font-size: 13px; color: #e2e3e8; }
.hero-trust { font-size: 14px; color: #d6d7dc; }

.hero-card { background: #fff; color: var(--text); border-radius: 18px; padding: 26px; box-shadow: 0 25px 60px rgba(0,0,0,.4); }
.hero-card h3 { margin: 0 0 18px; font-size: 17px; text-align: center; }

.wizard-steps { display: flex; align-items: center; justify-content: center; gap: 4px; }
.wstep { width: 26px; height: 26px; border-radius: 50%; background: #eceef1; color: #8a8c93; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.wstep.active { background: var(--red); color: #fff; }
.wline { width: 30px; height: 2px; background: #eceef1; }
.wizard-labels { display: flex; justify-content: space-between; font-size: 10px; color: var(--muted); margin-top: 6px; padding: 0 2px; }

.profile-option {
    display: flex; align-items: center; gap: 12px; border: 2px solid var(--border); border-radius: 12px;
    padding: 12px 14px; margin-top: 10px; cursor: pointer; font-size: 14px;
}
.profile-option input { width: 16px; height: 16px; margin-left: auto; accent-color: var(--red); }
.profile-option:has(input:checked) { border-color: var(--red); background: #fff5f5; }
.po-icon { font-size: 20px; }
.hero-card-secure { text-align: center; font-size: 11px; color: var(--muted); margin: 14px 0 0; }

/* ---------- VEHICLE TYPES ---------- */
.vtypes { padding: 60px 0; background: #fff; }
.vtypes-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.vtype-card { border: 1px solid var(--border); border-radius: 14px; padding: 16px; text-align: left; }
.vtype-image { height: 90px; display: flex; align-items: center; justify-content: center; background: var(--bg-soft); border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.vtype-image img { width: 100%; height: 100%; object-fit: cover; }
.vtype-emoji { font-size: 34px; }
.vtype-card h4 { margin: 0 0 4px; font-size: 15px; }
.vtype-link { display: inline-block; margin-top: 10px; color: var(--red); font-weight: 700; font-size: 13px; }

/* ---------- TRUST STRIP ---------- */
.trust-strip { background: var(--black); padding: 26px 0; }
.trust-strip-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; color: #fff; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.ti-icon { font-size: 22px; color: var(--red); }

/* ---------- PROFILES ---------- */
.profiles { padding: 64px 0; background: var(--bg-soft); }
.profiles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.profile-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px; }
.profile-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.ph-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.profile-list { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 9px; font-size: 14px; }

/* ---------- WHY CHOOSE ---------- */
.why-choose { padding: 64px 0; background: var(--black); color: #fff; }
.why-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.why-text h2 { font-size: 26px; margin: 0 0 24px; }
.why-item { display: flex; gap: 14px; margin-bottom: 20px; }
.why-item strong { display: block; margin-bottom: 4px; }
.wi-num { font-size: 20px; flex-shrink: 0; }
.why-visual { min-height: 260px; border-radius: 16px; overflow: hidden; background: linear-gradient(135deg, #23242c, #3a3c46); }
.why-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- CTA BANNER ---------- */
.cta-banner { background: linear-gradient(90deg, #1a1b22, var(--red-dark)); padding: 30px 0; color: #fff; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; }
.cta-inner h3 { margin: 0 0 4px; font-size: 20px; }
.cta-inner .muted { color: #f0d3d3; }
.btn-light { background: #fff; color: var(--red-dark); }
.btn-light:hover { background: #f3f3f3; }

/* ---------- BLOG GRID ---------- */
.blog-grid-section { padding: 64px 0; background: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.blog-card { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; text-decoration: none; color: var(--text); display: block; }
.blog-card-image { height: 130px; background: linear-gradient(135deg, #dfe0e5, #f2f3f5); position: relative; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-tag { position: absolute; top: 10px; left: 10px; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 999px; text-transform: uppercase; }
.blog-card h4 { font-size: 14px; margin: 14px 14px 6px; }
.blog-card p { margin: 0 14px; }
.blog-read { display: block; margin: 12px 14px 16px; color: var(--red); font-weight: 700; font-size: 13px; }

/* ---------- RESPONSIVE V2 ---------- */
@media (max-width: 960px) {
    .hero-v2-grid { grid-template-columns: 1fr; }
    .hero-checks { grid-template-columns: 1fr; }
    .vtypes-row { grid-template-columns: repeat(2, 1fr); }
    .profiles-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .why-visual { order: -1; height: 200px; min-height: auto; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .header-right { display: none; }
    .trust-strip-row { justify-content: flex-start; }
}
@media (max-width: 560px) {
    .hero-v2 h1 { font-size: 26px; }
    .vtypes-row { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; align-items: flex-start; }
}

/* ================================================================
   V3 — Champs de formulaire enrichis + polish premium
   ================================================================ */

.field-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.check-inline { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); margin-top: 14px; cursor: pointer; }
.check-inline input { width: 15px; height: 15px; accent-color: var(--red); }

/* ---------- POLISH : ombres, profondeur, typographie ---------- */
body { -webkit-font-smoothing: antialiased; }
.hero-v2 h1 { letter-spacing: -.5px; }
.hero-badge { box-shadow: 0 4px 14px rgba(211,47,47,.15); }
.hero-card { box-shadow: 0 30px 70px -15px rgba(0,0,0,.45), 0 10px 25px rgba(0,0,0,.15); border: 1px solid rgba(255,255,255,.08); }
.field { transition: border-color .15s ease, box-shadow .15s ease; }
.field:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(211,47,47,.12); }
.btn { transition: transform .12s ease, box-shadow .12s ease; }
.btn-primary { box-shadow: 0 8px 20px -6px rgba(211,47,47,.5); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 26px -6px rgba(211,47,47,.6); }

.offer-card, .vtype-card, .profile-card, .blog-card {
    transition: transform .18s ease, box-shadow .18s ease;
}
.offer-card:hover, .vtype-card:hover, .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(20,21,26,.15);
    border-color: transparent;
}
.profile-card:hover { box-shadow: 0 20px 40px -12px rgba(20,21,26,.12); }

/* Fond du hero plus riche même sans image uploadée : motif dégradé + halo rouge */
.hero-v2:not(:has(.hero-v2-bg)) {
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(211,47,47,.25), transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 90%, rgba(211,47,47,.12), transparent 60%),
        linear-gradient(160deg, #0b0c10 0%, #17181f 55%, #0b0c10 100%);
}

/* Icônes des types de véhicules et offres, plus travaillées sans vraie image */
.vtype-image { background: linear-gradient(135deg, #f3f4f6, #e7e8ec); }
.vtype-emoji { font-size: 38px; filter: drop-shadow(0 4px 8px rgba(0,0,0,.12)); }
.offer-icon { background: linear-gradient(135deg, #fdeaea, #fbd4d4); box-shadow: inset 0 0 0 1px rgba(211,47,47,.08); }

.why-visual:empty { background: linear-gradient(135deg, #1a1b22, #2c2e38); position: relative; }
.why-visual:empty::after {
    content: "🤝"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    font-size: 64px; opacity: .5;
}

.section-title { letter-spacing: -.3px; }
.trust-item { padding: 4px 10px; }

@media (max-width: 640px) {
    .field-row-2 { grid-template-columns: 1fr; }
}

/* ================================================================
   V4 — Refonte complète (nav déroulante, wizard select, solutions,
   audience, 3 étapes, témoignages avatars, CTA v2)
   ================================================================ */

/* ---------- LOGO CONTRAINT ---------- */
.brand-logo-img { height: 42px; width: auto; max-width: 210px; object-fit: contain; border-radius: 0; }
.footer-brand .brand-logo-img { height: 38px; filter: brightness(0) invert(1); }

/* ---------- NAV DROPDOWN ---------- */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    position: absolute; top: 100%; left: 0; background: #fff; border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,.15); padding: 8px; min-width: 200px;
    opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .15s ease; z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { display: block; padding: 9px 12px; border-radius: 6px; color: var(--text) !important; font-size: 13.5px; }
.nav-dropdown-menu a:hover { background: var(--bg-soft); color: var(--red) !important; }

/* ---------- HERO TRUST ROW ---------- */
.hero-mini-badges { display: flex; flex-wrap: wrap; gap: 14px; font-size: 12.5px; color: #e2e3e8; margin: 18px 0; }
.hero-mini-badges span { background: rgba(255,255,255,.08); padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.12); }
.hero-trust-row { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.avatar-cluster { display: flex; }
.ac {
    width: 30px; height: 30px; border-radius: 50%; background: #3a3c46; border: 2px solid #17181f;
    display: flex; align-items: center; justify-content: center; font-size: 13px; margin-left: -8px;
}
.ac:first-child { margin-left: 0; }

/* ---------- WIZARD DOTS ---------- */
.wizard-dots { display: flex; align-items: center; justify-content: center; gap: 4px; margin: 16px 0 18px; }
.wdot { width: 24px; height: 24px; border-radius: 50%; background: #eceef1; color: #8a8c93; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.wdot.active { background: var(--red); color: #fff; }

.hero-card select.field, .hero-card input.field { margin-top: 6px; margin-bottom: 12px; }
.hero-card .field-label { margin-top: 4px; }

/* ---------- PARTNERS CARD (flottant sur hero) ---------- */
.partners-card { background: #fff; border-radius: 18px; margin-top: -40px; position: relative; z-index: 5; box-shadow: 0 20px 50px rgba(0,0,0,.08); padding: 26px 0; }

/* ---------- EYEBROW ---------- */
.eyebrow { text-align: center; color: var(--red); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; margin: 0 0 8px; }

/* ---------- SOLUTIONS ---------- */
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.solution-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px 24px; }
.solution-icon {
    width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, #fdeaea, #fbd4d4);
    display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 16px;
}
.solution-card h3 { margin: 0 0 14px; font-size: 17px; }
.solution-list { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; color: #444; }
.btn-outline { background: #fff; border: 1.5px solid var(--red); color: var(--red); }
.btn-outline:hover { background: #fdeaea; }

/* ---------- AUDIENCE ---------- */
.audience { padding: 60px 0; background: var(--bg-soft); }
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.audience-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 26px 18px; text-align: center; }
.aud-icon {
    width: 54px; height: 54px; border-radius: 50%; background: var(--red); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 14px;
}
.audience-card h4 { margin: 0 0 6px; font-size: 15px; }

/* ---------- 3 STEPS ---------- */
.steps-row-3 { grid-template-columns: repeat(3, 1fr); }
.steps-row-3 .step-num { position: relative; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { padding: 64px 0; background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { border: 1px solid var(--border); border-radius: 16px; padding: 22px; }
.testimonial-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.testimonial-avatar {
    width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial-stars { color: #ffb400; margin-bottom: 8px; letter-spacing: 1px; }

/* ---------- CTA V2 ---------- */
.cta-banner-v2 { background: linear-gradient(90deg, var(--red-dark), var(--red)); }

/* ---------- RESPONSIVE V4 ---------- */
@media (max-width: 960px) {
    .solutions-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-row-3 { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .partners-card { margin-top: 0; border-radius: 0; }
    .nav-dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; display: none; }
}
@media (max-width: 560px) {
    .audience-grid { grid-template-columns: 1fr; }
    .brand-logo-img { height: 34px; max-width: 150px; }
}

/* ================================================================
   V5 — Types de véhicules avec prix, App+Espace Pro, responsive
   tablette/mobile approfondi, transitions fluides
   ================================================================ */

.vtype-price { margin: 8px 0; line-height: 1.3; }
.vtype-price strong { color: var(--red); font-size: 20px; }
.link-more { color: var(--red); font-weight: 700; font-size: 14px; }
.link-more:hover { text-decoration: underline; }

/* ---------- APP + ESPACE PRO ---------- */
.app-espace { background: var(--black); padding: 60px 0; }
.app-espace-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 20px; }
.app-card {
    background: #1a1b22; border-radius: 18px; padding: 30px; color: #fff;
    display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: center;
}
.app-card-visual { width: 90px; height: 90px; border-radius: 20px; background: linear-gradient(135deg, var(--red), var(--red-dark)); display: flex; align-items: center; justify-content: center; font-size: 40px; flex-shrink: 0; }
.app-card h3 { margin: 0 0 4px; font-size: 19px; }
.app-features-v2 { list-style: none; padding: 0; margin: 14px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; font-size: 13px; color: #d6d7dc; }
.app-rating { font-size: 13px; margin-bottom: 14px; color: #d6d7dc; }
.app-rating strong { color: #fff; }

.pro-card { background: linear-gradient(160deg, #1a1b22, #2a1416); border: 1px solid rgba(211,47,47,.3); border-radius: 18px; padding: 30px; color: #fff; }
.pro-card h3 { margin: 0 0 2px; font-size: 19px; }
.pro-features { list-style: none; padding: 0; margin: 16px 0 22px; display: flex; flex-direction: column; gap: 9px; font-size: 13.5px; color: #d6d7dc; }

/* ---------- TRANSITIONS FLUIDES GLOBALES ---------- */
a, .btn, .field, .offer-card, .vtype-card, .solution-card, .audience-card,
.testimonial-card, .blog-card, .profile-card, .step-item, .nav-dropdown-menu {
    transition: all .2s cubic-bezier(.4,0,.2,1);
}
.vtype-card:hover .vtype-emoji, .vtype-card:hover img { transform: scale(1.06); }
.vtype-image img, .vtype-emoji { transition: transform .25s ease; }
.audience-card:hover, .testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -10px rgba(20,21,26,.14); }
.step-item:hover .step-num { transform: scale(1.08); box-shadow: 0 8px 20px -6px rgba(211,47,47,.5); }
.step-num { transition: transform .2s ease, box-shadow .2s ease; }

/* ================================================================
   RESPONSIVE — Tablette (≤1024px) et Mobile (≤640px), passe complète
   ================================================================ */
@media (max-width: 1024px) {
    .container { padding: 0 20px; }
    .hero-v2-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-card { order: -1; }
    .partners-row { gap: 24px; }
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .vtypes-row { grid-template-columns: repeat(3, 1fr); }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .app-espace-grid { grid-template-columns: 1fr; }
    .app-card { grid-template-columns: 1fr; text-align: center; }
    .app-card-visual { margin: 0 auto; }
    .why-grid { grid-template-columns: 1fr; }
    .why-visual { order: -1; min-height: 220px; }
    .fleet-grid { grid-template-columns: 1fr; }
    .fleet-visual { order: -1; height: 200px; }
}

@media (max-width: 900px) {
    .main-nav { display: none; }
    .burger { display: block; }
    .mobile-nav { display: flex; }
    .header-right { display: none; }
    .nav-dropdown-menu { display: none; }
}

@media (max-width: 768px) {
    .hero-v2 h1 { font-size: 28px; }
    .hero-mini-badges { gap: 8px; }
    .hero-mini-badges span { font-size: 11px; padding: 5px 10px; }
    .partners-card { padding: 20px 0; }
    .partners-row { gap: 18px; justify-content: space-around; }
    .partner-logo { font-size: 13px; }
    .vtypes-row { grid-template-columns: repeat(2, 1fr); }
    .solutions-grid { grid-template-columns: 1fr; }
    .steps-row-3 { grid-template-columns: 1fr; }
    .field-row-2 { grid-template-columns: 1fr; }
    .section-title { font-size: 22px; }
    .eyebrow { font-size: 11px; }
}

@media (max-width: 640px) {
    .hero-v2 { padding: 40px 0 50px; }
    .hero-v2 h1 { font-size: 24px; }
    .hero-badge { font-size: 11px; padding: 5px 12px; }
    .hero-card { padding: 20px; border-radius: 14px; }
    .vtypes-row { grid-template-columns: 1fr 1fr; gap: 12px; }
    .vtype-card { padding: 12px; }
    .vtype-image { height: 70px; }
    .audience-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .app-features-v2 { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; align-items: flex-start; text-align: left; }
    .header-phone { display: none; }
}

@media (max-width: 420px) {
    .vtypes-row, .audience-grid { grid-template-columns: 1fr; }
    .hero-checks, .hero-mini-badges { flex-direction: column; align-items: flex-start; }
}

/* ---------- CONTENU D'ARTICLE (HTML riche : h1-h3, listes, tableaux) ---------- */
.article-content h1 { font-size: 26px; margin: 0 0 16px; }
.article-content h2 { font-size: 21px; margin: 32px 0 14px; color: var(--text); }
.article-content h3 { font-size: 17px; margin: 24px 0 10px; }
.article-content p { margin: 0 0 16px; color: #3a3b40; }
.article-content ul, .article-content ol { margin: 0 0 16px; padding-left: 22px; color: #3a3b40; }
.article-content li { margin-bottom: 6px; }
.article-content strong { color: var(--text); }
.article-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.article-content th, .article-content td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
.article-content th { background: var(--bg-soft); font-weight: 700; }

/* ---------- WIZARD MULTI-ETAPES ---------- */
.wizard-step { animation: fadeStep .25s ease; }
@keyframes fadeStep { from { opacity: 0; transform: translateX(6px); } to { opacity: 1; transform: translateX(0); } }
.wizard-nav { display: flex; gap: 10px; margin-top: 18px; }
.wizard-nav .btn-block { flex: 1; }
.wizard-nav #wizardPrev { flex: 0 0 auto; }

/* ================================================================
   V6 — Boutons affinés (hero/wizard), micro-interactions fluides
   ================================================================ */

/* Boutons génériques : plus fins, plus rapides à l'interaction */
.btn {
    padding: 11px 20px;
    font-size: 14px;
    border-radius: 10px;
    letter-spacing: .1px;
    transition: transform .15s cubic-bezier(.4,0,.2,1), box-shadow .15s ease, background-color .15s ease;
}
.btn:active { transform: scale(.97); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0) scale(.97); }

/* Boutons du wizard hero : compacts, pas toute la largeur pour "Précédent" */
.hero-card .btn { padding: 10px 18px; font-size: 13.5px; border-radius: 10px; }
.wizard-nav { display: flex; gap: 8px; margin-top: 16px; align-items: stretch; }
.wizard-nav #wizardPrev { flex: 0 0 auto; padding: 10px 16px; }
.wizard-nav .btn-block { flex: 1; }
.hero-card .btn-primary { box-shadow: 0 6px 16px -6px rgba(211,47,47,.45); }

/* Champs du hero-card : un peu plus compacts, transitions plus douces */
.hero-card .field { padding: 9px 12px; font-size: 13.5px; border-radius: 9px; }
.hero-card .field-label { font-size: 11.5px; margin: 10px 0 5px; text-transform: uppercase; letter-spacing: .4px; color: var(--muted); }
.hero-card h3 { font-size: 16px; }

/* Wizard dots : transition de couleur fluide au lieu d'un changement brutal */
.wdot { transition: background-color .25s ease, color .25s ease, transform .25s ease; }
.wdot.active { transform: scale(1.05); }
.wline { transition: background-color .25s ease; }

/* Cartes : transition plus douce et cohérente partout */
.offer-card, .vtype-card, .solution-card, .audience-card, .testimonial-card,
.blog-card, .profile-card, .partner-logo, .step-item {
    transition: transform .22s cubic-bezier(.4,0,.2,1), box-shadow .22s ease, border-color .22s ease;
}

/* Liens de nav : transition douce de couleur */
.main-nav a, .footer-links a, .mobile-nav a {
    transition: color .15s ease;
}

/* Inputs génériques (pages Contact/Flotte) alignés sur le même style affiné */
.field, .form-row input, .form-row select, .form-row textarea {
    transition: border-color .15s ease, box-shadow .15s ease;
}

/* Douceur générale au scroll et aux ancres */
html { scroll-behavior: smooth; }

/* Header : transition sur les liens actifs/dropdown déjà fluide, on l'harmonise */
.nav-dropdown-menu { transition: opacity .18s ease, transform .18s ease, visibility .18s ease; }

@media (max-width: 480px) {
    .hero-card .btn { padding: 9px 14px; font-size: 13px; }
    .wizard-nav { flex-wrap: nowrap; }
}

/* ================================================================
   V7 — Typographie distinctive (Plus Jakarta Sans / Inter)
   ================================================================ */
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
h1, h2, h3, h4, .brand-text, .btn, .eyebrow, .section-title, .offer-price .price,
.testimonial-avatar, .aud-icon, .step-num, .wdot, .badge {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -.4px; }
.btn { font-weight: 700; }
.section-title { font-weight: 800; }

/* ================================================================
   V8 — Système de design affiné (ombres, rayons, palette, rythme)
   ================================================================ */

:root {
    --ink: #12131a;
    --ink-soft: #2a2c38;
    --paper: #fbfbfc;
    --line: #eaebef;
    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 26px;
    --sh-sm: 0 2px 8px rgba(18,19,26,.06);
    --sh-md: 0 12px 28px -8px rgba(18,19,26,.12);
    --sh-lg: 0 30px 60px -18px rgba(18,19,26,.28);
    --red-glow: 0 10px 24px -8px rgba(211,47,47,.45);
}

body { background: var(--paper); }
.container { max-width: 1200px; }

/* ---------- RYTHME VERTICAL COHERENT ---------- */
.offers, .audience, .testimonials, .blog-grid-section, .app-espace, .profiles, .fleet, .app-promo { padding: 88px 0; }
.how-it-works, .why-choose { padding: 84px 0; }
.vtypes { padding: 84px 0 92px; }
.eyebrow { letter-spacing: 1.2px; font-size: 12px; margin-bottom: 10px; }
.section-title { font-size: 32px; margin-bottom: 48px; line-height: 1.25; }
@media (max-width: 768px) {
    .offers, .audience, .testimonials, .blog-grid-section, .app-espace, .profiles, .fleet, .app-promo,
    .how-it-works, .why-choose, .vtypes { padding: 56px 0; }
    .section-title { font-size: 24px; margin-bottom: 32px; }
}

/* ---------- HERO : profondeur + lisibilité sur photo ---------- */
.hero-v2 { padding: 72px 0 0; }
.hero-v2-overlay {
    background:
        linear-gradient(100deg, rgba(8,9,12,.96) 30%, rgba(8,9,12,.55) 68%, rgba(8,9,12,.25) 100%),
        linear-gradient(0deg, rgba(8,9,12,.5), transparent 40%);
}
.hero-v2-bg { filter: saturate(1.05) contrast(1.03); }
.hero-badge { border-radius: 999px; font-weight: 700; }
.hero-v2 h1 { font-size: 42px; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.hero-card {
    border-radius: var(--r-xl);
    box-shadow: var(--sh-lg);
    border: 1px solid rgba(255,255,255,.06);
    padding: 30px 28px;
}
.partners-card { border-radius: var(--r-xl); box-shadow: var(--sh-md); }

/* ---------- CARTES : cohérence totale ---------- */
.offer-card, .vtype-card, .solution-card, .audience-card, .testimonial-card,
.blog-card, .profile-card, .app-card, .pro-card {
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
}
.offer-card:hover, .vtype-card:hover, .solution-card:hover, .audience-card:hover,
.testimonial-card:hover, .blog-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-5px);
}
.solution-card, .offer-card { padding: 32px 26px; }
.solution-icon, .offer-icon { box-shadow: var(--sh-sm); }

/* ---------- TYPES DE VEHICULE : traitement image premium ---------- */
.vtype-card { padding: 0; overflow: hidden; }
.vtype-image { height: 150px; border-radius: 0; margin-bottom: 0; }
.vtype-card h4, .vtype-card > p, .vtype-card > .btn, .vtype-card > a { margin-left: 18px; margin-right: 18px; }
.vtype-card h4 { margin-top: 16px; font-size: 16px; }
.vtype-card .btn-block { margin-bottom: 18px; margin-top: 14px; width: calc(100% - 36px); }
.vtype-price { margin-bottom: 4px; }

/* ---------- OFFRES : icône + garanties plus respirées ---------- */
.solution-icon { width: 64px; height: 64px; font-size: 28px; }
.solution-list li { padding-left: 2px; }

/* ---------- BOUTONS : cohérence finale ---------- */
.btn-primary { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.btn-outline { border-width: 1.5px; }
.btn-block.btn-sm { padding: 9px 14px; font-size: 13px; }

/* ---------- SECTIONS SOMBRES : moins plates ---------- */
.how-it-works, .app-espace, .why-choose {
    background: radial-gradient(ellipse 80% 60% at 50% 0%, #1c1d24, var(--black) 70%);
}

/* ---------- TEMOIGNAGES : plus de respiration ---------- */
.testimonial-card { padding: 26px; }
.testimonial-avatar { box-shadow: var(--sh-sm); }

/* ---------- PARTENAIRES : traitement plus soigné ---------- */
.partner-logo { padding: 8px 6px; border-radius: 8px; }
.partner-logo:hover { background: var(--bg-soft); }

/* ---------- FOOTER : un peu plus de contraste ---------- */
.site-footer { background: linear-gradient(180deg, var(--black), #0c0d10); }

/* ---------- SEPARATEUR VISUEL ENTRE SECTIONS CLAIRES CONSECUTIVES ---------- */
.audience { background: linear-gradient(180deg, var(--bg-soft), #fff); }
.profiles { background: linear-gradient(180deg, var(--bg-soft), #fff); }

@media (max-width: 640px) {
    .hero-v2 h1 { font-size: 27px; }
    .hero-card { padding: 22px 20px; }
    .vtype-image { height: 110px; }
}

/* ================================================================
   V9 — Bandeau confiance flottant, showcase 3 cartes, villes+carte,
   blog redesign, header/footer maquette finale
   ================================================================ */

/* ---------- HEADER : téléphone + horaires ---------- */
.header-phone { display: flex; flex-direction: column; line-height: 1.3; }
.header-phone-hours { font-size: 10px; color: #8f9098; }

/* ---------- TRUST FLOAT (bandeau sous le hero) ----------
   Pas de chevauchement en marge négative ici : la hauteur de la carte de
   devis varie selon l'étape du wizard affichée (JS), un chevauchement basé
   sur une hauteur fixe finissait par rentrer dans la carte elle-même sur
   les étapes avec plus de champs. On garde un espacement sûr en toutes
   circonstances. */
.trust-float { position: relative; z-index: 6; padding: 32px 0 24px; }
.trust-float-card {
    background: #fff; border-radius: var(--r-xl); box-shadow: var(--sh-lg);
    padding: 26px 30px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.tf-item { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.tf-icon { font-size: 24px; flex-shrink: 0; }
.tf-item strong { display: block; font-size: 13.5px; }

/* ---------- SHOWCASE : 3 grandes cartes image ---------- */
.showcase { padding: 88px 0; background: #fff; }
.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.showcase-card {
    position: relative; display: block; border-radius: var(--r-lg); overflow: hidden;
    min-height: 340px; text-decoration: none; box-shadow: var(--sh-sm);
}
.showcase-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.showcase-card:hover .showcase-bg { transform: scale(1.06); }
.showcase-card:not(:has(.showcase-bg)) { background: linear-gradient(160deg, #1c1d24, #2c2e38); }
.showcase-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,11,14,.35), rgba(10,11,14,.92) 85%); }
.showcase-content { position: relative; z-index: 2; padding: 24px; height: 100%; display: flex; flex-direction: column; color: #fff; min-height: 340px; justify-content: flex-end; }
.showcase-tag { align-self: flex-start; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .3px; margin-bottom: auto; }
.showcase-content h3 { font-size: 19px; margin: 16px 0 8px; line-height: 1.3; }
.showcase-arrow {
    width: 34px; height: 34px; border-radius: 50%; background: var(--red); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 16px; margin-bottom: 14px;
    transition: transform .2s ease;
}
.showcase-card:hover .showcase-arrow { transform: translateX(4px); }
.showcase-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; font-size: 12.5px; color: #d6d7dc; }

/* ---------- VILLES + CARTE ---------- */
.city-section { padding: 88px 0; background: var(--bg-soft); }
.city-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; align-items: start; }
.city-map {
    position: relative; border-radius: var(--r-lg); overflow: hidden;
    border: 1px solid var(--border); box-shadow: var(--sh-sm);
    background: #fff; display: flex; align-items: center; justify-content: center;
    min-height: 320px;
}
.city-map-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.city-map-placeholder { padding: 30px; text-align: center; }

.city-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.city-card {
    position: relative; border-radius: var(--r-md); overflow: hidden; min-height: 130px;
    display: flex; align-items: flex-end; padding: 14px; box-shadow: var(--sh-sm);
}
.city-card:first-child { grid-column: 1 / -1; min-height: 100px; }
.city-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.city-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(10,11,14,.88)); z-index: 1; }
.city-card > div { position: relative; z-index: 2; color: #fff; }
.city-card strong { font-size: 15px; }
.city-price { font-size: 20px; font-weight: 800; color: #fff; }
.city-price .muted { color: #d6d7dc; }

/* ---------- BLOG REDESIGN ---------- */
.blog-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 10px; }
.blog-grid-5 { grid-template-columns: repeat(5, 1fr); }
.blog-meta { margin: 6px 14px 14px !important; }

/* ---------- CTA avec icône ---------- */
.cta-left { display: flex; align-items: center; gap: 16px; }
.cta-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }

/* ---------- FOOTER 5 COLONNES ---------- */
.footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr; }

/* ---------- WIZARD : boutons toggle profil ---------- */
.profile-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 8px 0 4px; }
.ptoggle {
    border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 10px; text-align: center;
    font-size: 12.5px; font-weight: 600; cursor: pointer; transition: all .15s ease;
}
.ptoggle input { display: none; }
.ptoggle:has(input:checked) { border-color: var(--red); background: #fff5f5; color: var(--red-dark); }

/* ---------- RESPONSIVE V9 ---------- */
@media (max-width: 1024px) {
    .trust-float-card { grid-template-columns: repeat(2, 1fr); margin-top: 0; border-radius: var(--r-lg); }
    .showcase-grid { grid-template-columns: 1fr; }
    .city-grid { grid-template-columns: 1fr; }
    .city-map { aspect-ratio: 16/9; }
    .blog-grid-5 { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 768px) {
    .trust-float-card { grid-template-columns: 1fr; }
    .blog-grid-5 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .blog-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
    .city-cards { grid-template-columns: 1fr; }
    .city-card:first-child { grid-column: auto; }
    .blog-grid-5 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-left { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ================================================================
   V10 — Corrections critiques suite retour visuel
   ================================================================ */

/* BUG CRITIQUE : l'attribut [hidden] était écrasé par nos règles .btn/.wizard-step
   (l'origine "author" du CSS prime toujours sur l'origine "user-agent",
   donc [hidden]{display:none} du navigateur perdait face à nos display:flex/inline-block) */
[hidden] { display: none !important; }

/* Labels du wizard : plus lisibles, moins "criards" en majuscules intégrales */
.hero-card .field-label {
    text-transform: none;
    letter-spacing: 0;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink-soft);
}

/* Cartes ville : fond de secours élégant quand aucune photo n'est encore uploadée */
.city-card {
    background: linear-gradient(135deg, #1c1d24 0%, #2c2e38 100%);
}
.city-card::before {
    background: linear-gradient(180deg, transparent 20%, rgba(8,9,12,.92) 80%);
}
.city-card .muted { color: #c7c8ce !important; }
.city-card strong { text-shadow: 0 1px 4px rgba(0,0,0,.4); }

/* Carte "France" : simple image uploadée par l'utilisateur, pas de génération */

/* ================================================================
   V11 — Icônes SVG (remplacement des emoji, rendu professionnel)
   ================================================================ */

.icon-svg { flex-shrink: 0; vertical-align: -3px; color: currentColor; }

.hero-mini-badges span, .hero-card-secure, .field-label {
    display: inline-flex; align-items: center; gap: 6px;
}
.hero-mini-badges span .icon-svg { color: #ff8f87; }
.hero-card-secure { display: flex; justify-content: center; }
.hero-card-secure .icon-svg { color: var(--muted); }

.brand-badge { color: #fff; }
.header-phone span:first-child { display: inline-flex; align-items: center; gap: 5px; }

.ac { color: #cfd0d6; }
.ac .icon-svg { width: 15px; height: 15px; }

.ptoggle span { display: inline-flex; align-items: center; gap: 6px; justify-content: center; }
.ptoggle:has(input:checked) .icon-svg { color: var(--red); }

.tf-icon { color: var(--red); background: #fdeaea; width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: initial; }

.aud-icon { display: flex; align-items: center; justify-content: center; }
.aud-icon .icon-svg { color: #fff; }

.app-card-visual { color: #fff; }
.star-row { display: inline-flex; gap: 1px; color: #ffb400; }
.store-badge { display: inline-flex; align-items: center; gap: 6px; }

.cta-icon .icon-svg { color: #fff; }

.footer-contact { color: #b7b8be; display: block; }
.footer-contact .fc-line { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.footer-contact .icon-svg { color: #8f9098; }

/* ================================================================
   V12 — En-tête de page cohérent (pages secondaires) + nettoyage
   ================================================================ */

.page-header {
    background: radial-gradient(ellipse 80% 60% at 50% 0%, #1c1d24, var(--black) 70%);
    color: #fff;
    padding: 64px 0 56px;
}
.page-header h1 { font-size: 32px; margin: 0 0 10px; letter-spacing: -.5px; }
.page-header-sub { color: #d6d7dc; font-size: 15px; max-width: 620px; margin: 0; }
.page-breadcrumb { font-size: 12.5px; color: #9a9ba3; margin: 0 0 10px; }
.page-breadcrumb a { color: #d6d7dc; }
.page-breadcrumb a:hover { color: var(--red); }

@media (max-width: 640px) {
    .page-header { padding: 44px 0 36px; }
    .page-header h1 { font-size: 24px; }
}

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h4 { margin: 0 0 8px; font-size: 15.5px; }

/* ---------- LIENS "à lire aussi / pages" alignés sur .offer-card ---------- */
.link-card { text-align: left; text-decoration: none; display: block; }

/* ================================================================
   V13 — Réalignement strict sur la maquette finale
   ================================================================ */

/* Listes de garanties avec icône SVG (plus de caractère ✔ brut) */
.solution-list li, .showcase-list li { display: flex; align-items: center; gap: 8px; }
.solution-list li .icon-svg { color: var(--red); flex-shrink: 0; }

/* Cartes véhicules simplifiées : juste image + titre, plus de prix/bouton */
.vtype-card { padding: 0; text-align: center; }
.vtype-card h4 { margin: 16px 0 18px; font-size: 15px; }

/* Bandeau CTA avec photo de fond (uploadée depuis l'admin) */
.cta-banner-v2 { position: relative; overflow: hidden; }
.cta-bg-img {
    position: absolute; left: 0; top: 0; height: 100%; width: 45%;
    object-fit: cover; opacity: .35;
    mask-image: linear-gradient(90deg, #000 40%, transparent 95%);
    -webkit-mask-image: linear-gradient(90deg, #000 40%, transparent 95%);
}
.cta-banner-v2 .cta-inner { position: relative; z-index: 2; }

@media (max-width: 640px) {
    .cta-bg-img { width: 100%; opacity: .2; }
}

/* Stabilise un peu la hauteur du wizard entre les étapes pour éviter les
   sauts de mise en page trop marqués en changeant d'étape */
#quoteWizard { min-height: 260px; }

/* ================================================================
   V14 — Sous-menus : correction du bug de survol (zone morte entre
   le lien et le menu qui faisait disparaître le dropdown), meilleure
   accessibilité clavier, position sûre en bord d'écran
   ================================================================ */

.nav-dropdown { position: relative; padding-bottom: 14px; margin-bottom: -14px; }
.nav-dropdown-menu {
    top: calc(100% + 0px);
    min-width: 220px;
    padding: 10px;
}
.nav-dropdown-menu a { padding: 10px 14px; font-size: 14px; }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown > a:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; border-radius: 4px; }

/* ================================================================
   V15 — Blog riche : mise en page article+sidebar, partage social
   ================================================================ */

.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; max-width: 1100px; }
.article-main { min-width: 0; }

/* ---------- PARTAGE SOCIAL ---------- */
.share-buttons { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.share-label { font-size: 12.5px; color: var(--muted); font-weight: 600; margin-right: 4px; }
.share-btn {
    width: 34px; height: 34px; border-radius: 50%; background: var(--bg-soft);
    display: flex; align-items: center; justify-content: center; color: var(--ink-soft);
    border: none; cursor: pointer; transition: all .15s ease;
}
.share-btn:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.article-bottom-share { margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--border); }

/* ---------- SIDEBAR BLOG ---------- */
.blog-sidebar { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 90px; }
.sidebar-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); padding: 20px; box-shadow: var(--sh-sm); }
.sidebar-card h4 { margin: 0 0 14px; font-size: 14.5px; }
.sidebar-cta { background: linear-gradient(160deg, var(--black), #2a1416); border: none; color: #fff; }
.sidebar-cta h4 { color: #fff; }
.sidebar-cta p { color: #d6d7dc; margin-bottom: 14px; }
.sidebar-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.sidebar-list a { font-size: 13.5px; color: var(--ink-soft); }
.sidebar-list a:hover { color: var(--red); }
.sidebar-articles { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.sidebar-articles li a { display: flex; gap: 10px; align-items: center; }
.sidebar-articles img { width: 52px; height: 40px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.sidebar-articles span { font-size: 13px; color: var(--ink-soft); line-height: 1.35; }
.sidebar-articles a:hover span { color: var(--red); }

@media (max-width: 900px) {
    .article-layout { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; flex-direction: row; overflow-x: auto; }
    .sidebar-card { min-width: 240px; }
}
@media (max-width: 560px) {
    .blog-sidebar { flex-direction: column; }
}

/* ================================================================
   V16 — Page modèle "Assurance VTC" : hero compact, intro 2 col,
   valeurs 3 icônes, garanties box, fil d'ariane
   ================================================================ */

.breadcrumb-line { font-size: 12.5px; color: var(--muted); margin: 0 0 4px; }
.breadcrumb-line a { color: var(--ink-soft); }
.breadcrumb-line a:hover { color: var(--red); }

.hero-v2-compact { padding: 20px 0 50px; }
.hero-v2-compact .hero-v2-text { position: relative; z-index: 2; }
.hero-v2-compact h1 { font-size: 30px; line-height: 1.3; }

.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
.intro-image { min-height: 320px; border-radius: var(--r-lg); background: linear-gradient(135deg, #1c1d24, #2c2e38); overflow: hidden; }
.intro-image img { width: 100%; height: 100%; object-fit: cover; }
.check-grid-2 { list-style: none; padding: 0; margin: 20px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; font-size: 13.5px; }
.check-grid-2 li { display: flex; align-items: center; gap: 8px; }
.check-grid-2 .icon-svg { color: var(--red); flex-shrink: 0; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.value-icon {
    width: 60px; height: 60px; border-radius: 50%; background: #fdeaea; color: var(--red);
    display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800;
    margin: 0 auto 16px;
}
.value-item h4 { margin: 0 0 8px; font-size: 15.5px; }

.why-garanties-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: start; }
.garanties-box { background: var(--bg-soft); border-radius: var(--r-lg); padding: 26px; position: relative; overflow: hidden; }
.garanties-box h3 { margin: 0 0 16px; font-size: 16px; }
.check-list-v { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; }
.check-list-v .icon-svg { color: var(--red); }

@media (max-width: 900px) {
    .intro-grid { grid-template-columns: 1fr; }
    .intro-image { order: -1; min-height: 220px; }
    .value-grid { grid-template-columns: 1fr; }
    .why-garanties-grid { grid-template-columns: 1fr; }
    .check-grid-2 { grid-template-columns: 1fr; }
}

/* ---------- BLOG LISTE : 3 colonnes, sans sidebar ---------- */
.blog-list-grid { grid-template-columns: repeat(3, 1fr); }
.blog-card-noimg {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #f3f4f6, #e7e8ec); color: #c3c4ca;
}
.blog-cat-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.blog-cat-filters a { padding: 7px 16px; border-radius: 999px; border: 1px solid var(--border); font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.blog-cat-filters a.active, .blog-cat-filters a:hover { background: var(--red); border-color: var(--red); color: #fff; }

@media (max-width: 900px) { .blog-list-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-list-grid { grid-template-columns: 1fr; } }

/* ================================================================
   V17 — Pages SEO (par ville, par véhicule, par profil, en ligne,
   pas chère) : variante 4 colonnes pour les cartes de valeur
   ================================================================ */
.value-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .value-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .value-grid-4 { grid-template-columns: 1fr; } }

/* ---------- LIENS CONTEXTUELS (guides -> pages SEO) ---------- */
.related-pages-box { background: var(--bg-soft); border-radius: var(--r-md); padding: 20px; }
.related-pages-box h4 { margin: 0 0 12px; font-size: 14px; }
.related-pages-links { display: flex; flex-wrap: wrap; gap: 10px; }
.related-pages-links a {
    background: #fff; border: 1px solid var(--border); border-radius: 999px;
    padding: 8px 16px; font-size: 13px; font-weight: 600; color: var(--ink-soft);
}
.related-pages-links a:hover { border-color: var(--red); color: var(--red); }

/* ================================================================
   V18 — Ergonomie mobile : bandeau CTA collant, zones tactiles,
   ajustements de confort sur petit écran
   ================================================================ */

.mobile-sticky-cta { display: none; }

@media (max-width: 900px) {
    body { padding-bottom: 74px; } /* évite que le bandeau collant cache du contenu */

    .mobile-sticky-cta {
        display: flex; gap: 10px; align-items: center;
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
        background: #fff; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        box-shadow: 0 -8px 24px rgba(0,0,0,.12);
        border-top: 1px solid var(--border);
    }
    .msc-call {
        width: 46px; height: 46px; border-radius: 50%; background: var(--bg-soft);
        display: flex; align-items: center; justify-content: center; color: var(--ink); flex-shrink: 0;
    }
    .msc-devis { flex: 1; text-align: center; padding: 13px 16px; font-size: 14px; }

    /* Zones tactiles confortables (44px min recommandé) partout sur mobile */
    .btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
    .field, .form-row input, .form-row select, .form-row textarea { min-height: 44px; }
    .main-nav a, .mobile-nav a { min-height: 44px; display: flex; align-items: center; }
    .wdot { min-width: 24px; }

    /* Confort de lecture */
    body { font-size: 15px; }
    .section-title { line-height: 1.35; }

    /* Évite tout débordement horizontal accidentel */
    .container { overflow-x: hidden; }
}

@media (max-width: 480px) {
    .msc-devis { font-size: 13px; padding: 12px 10px; }
}

/* ---------- IMAGE MISE EN AVANT DE L'ARTICLE ---------- */
.article-featured-img {
    width: 100%; max-height: 420px; object-fit: cover;
    border-radius: var(--r-lg); box-shadow: var(--sh-md); display: block;
}
@media (max-width: 640px) { .article-featured-img { max-height: 220px; border-radius: var(--r-md); } }

/* ================================================================
   V19 — Pages légales, contact, plan du site, bandeau cookies
   ================================================================ */

.footer-legal-links a { color: inherit; }
.footer-legal-links a:hover { color: var(--red); }

.sitemap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.sitemap-grid h3 { font-size: 15px; margin: 0 0 14px; }
.sitemap-grid .footer-links a { color: var(--ink-soft); }
.sitemap-grid .footer-links a:hover { color: var(--red); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: start; max-width: 900px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; font-size: 14px; }
.contact-info-item .icon-svg { color: var(--red); margin-top: 3px; }

.cookie-banner {
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
    background: var(--black); color: #d6d7dc; border-radius: var(--r-lg);
    padding: 18px 22px; box-shadow: var(--sh-lg);
    display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
    max-width: 600px; margin: 0 auto;
}
.cookie-banner p { margin: 0; font-size: 13px; flex: 1; min-width: 220px; }
.cookie-banner a { color: #fff; text-decoration: underline; }

@media (max-width: 900px) {
    .sitemap-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .sitemap-grid { grid-template-columns: 1fr; }
    .cookie-banner { left: 10px; right: 10px; bottom: 84px; padding: 14px 16px; } /* au-dessus du bandeau CTA mobile */
}
