/* ===== RESET & BASE ===== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; overflow-x: clip; }
  body {
    overflow-x: clip;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  img, svg { display: block; max-width: 100%; }

  /* ===== TOKENS DE MARQUE — Cobalt × Tournesol ===== */
  :root {
    --text: #0F172A;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --bg: #FFFFFF;
    --surface: #F8FAFC;
    --border: #E5E7EB;
    --primary: #0A3DA1;
    --primary-soft: #E2E9F5;
    --primary-hover: #062E80;
    --on-primary: #FFFFFF;
    --accent: #FFC629;
    --accent-soft: #FFF1BE;
    --accent-hover: #D9A300;
    --on-accent: #0A3DA1;
  }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

  /* ===== HEADER ===== */
  header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 50;
  }
  .header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 76px;
  }
  .logo {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    line-height: 0;
    text-decoration: none;
  }
  .logo svg {
    height: 32px;
    width: auto;
    display: block;
  }
  /* Le texte du logo prend la couleur courante */
  .logo svg .logo-text path { fill: currentColor; }
  /* La marque (le chevron) prend toujours l'accent du thème */
  .logo svg .logo-mark path { fill: var(--accent); }
  /* Logo dans le footer : couleur claire pour rester lisible sur fond primaire */
  footer .logo { color: var(--on-primary); }
  footer .logo svg { height: 40px; }
  nav ul {
    display: flex; gap: 36px; list-style: none;
  }
  nav ul > li { position: relative; }
  nav a {
    font-size: 14px; font-weight: 500;
    color: var(--text);
    transition: color 0.15s;
  }
  nav a:hover { color: var(--primary); }
  nav > ul > li > a {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 26px 0;
  }
  nav > ul > li > a::after {
    content: '';
    width: 6px; height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.15s;
  }
  nav > ul > li:hover > a::after { transform: translateY(0) rotate(225deg); }

  /* ===== MEGAMENU ===== */
  .nav-dropdown {
    position: absolute;
    top: 100%; left: -20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    min-width: 280px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
    z-index: 60;
  }
  nav > ul > li:hover .nav-dropdown,
  nav > ul > li:focus-within .nav-dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .nav-dropdown.wide { min-width: 820px; }
  .nav-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 32px;
  }
  .nav-dropdown-col h4 {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
  }
  .nav-dropdown-col ul {
    display: flex; flex-direction: column;
    gap: 4px;
    list-style: none;
  }
  .nav-dropdown-col a {
    display: block;
    padding: 6px 0;
    font-size: 14px; font-weight: 500;
    color: var(--text);
  }
  .nav-dropdown-col a:hover { color: var(--primary); }

  /* ===== MENU MOBILE (BURGER) ===== */
  .menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 8px;
    color: var(--primary);
    transition: background 0.15s;
  }
  .menu-toggle:hover { background: var(--primary-soft); }
  .menu-toggle svg { width: 24px; height: 24px; }

  .mobile-panel {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(2px);
    z-index: 60;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }
  .mobile-panel.is-open { opacity: 1; pointer-events: auto; }
  .mobile-panel-inner {
    position: absolute;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--bg);
    padding: 24px 20px;
    box-shadow: -4px 0 24px rgba(15, 23, 42, 0.15);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  body.menu-open { overflow: hidden; }
  .mobile-panel.is-open .mobile-panel-inner { transform: translateX(0); }
  .mobile-panel-close {
    align-self: flex-end;
    width: 40px; height: 40px;
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--text);
  }
  .mobile-panel-close:hover { background: var(--surface); }
  .mobile-panel ul {
    list-style: none;
    display: flex; flex-direction: column;
    gap: 2px;
    margin-top: 8px;
  }
  .mobile-panel a {
    display: block;
    padding: 14px 12px;
    font-size: 16px; font-weight: 600;
    color: var(--text);
    border-radius: 8px;
  }
  .mobile-panel a:hover { background: var(--surface); color: var(--primary); }
  .mobile-section { margin-bottom: 8px; }
  .mobile-section h4 {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-muted);
    margin: 14px 12px 4px;
  }
  .mobile-section a {
    padding: 10px 12px;
    font-size: 15px; font-weight: 500;
  }
  .mobile-panel-cta {
    margin-top: auto;
    display: inline-flex; align-items: center; justify-content: center;
    height: 48px;
    background: var(--accent); color: var(--on-accent);
    border-radius: 8px;
    font-weight: 700; font-size: 15px;
  }

  /* ===== BUTTONS ===== */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    height: 44px;
    padding: 0 22px;
    border-radius: 8px;
    font-weight: 600; font-size: 15px;
    transition: all 0.15s;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--primary); color: var(--on-primary);
  }
  .btn-primary:hover { background: var(--primary-hover); }
  .btn-accent {
    background: var(--accent); color: var(--on-accent);
  }
  .btn-accent:hover { background: var(--accent-hover); }
  .btn-outline-light {
    background: transparent; color: white;
    border: 1.5px solid rgba(255,255,255,0.4);
  }
  .btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: white; }
  .btn-outline {
    background: var(--bg); color: var(--text);
    border: 1.5px solid var(--border);
  }
  .btn-outline:hover { border-color: var(--primary); color: var(--primary); }

  /* ===== HERO ===== */
  .hero { padding: 24px 0 0; }
  .hero-card {
    background: var(--primary);
    color: var(--on-primary);
    border-radius: 20px;
    padding: 48px 64px;
    display: grid;
    grid-template-columns: 0.85fr 1.3fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .hero-right { position: relative; z-index: 1; }
  .hero-right .cat-grid-more { margin-top: 16px; }
  .hero-card::before {
    content: '';
    position: absolute;
    bottom: -120px; left: -120px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.18;
    pointer-events: none;
  }
  .hero-text { position: relative; z-index: 1; }
  .cat-grid { position: relative; z-index: 1; }
  .hero-text .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 14px;
  }
  .hero-text .eyebrow::before {
    content: ''; width: 24px; height: 1.5px;
    background: var(--accent);
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px;
    margin-bottom: 22px;
    background: var(--accent);
    color: var(--on-accent);
    font-size: 13px; font-weight: 800;
    letter-spacing: 0.06em; text-transform: uppercase;
    border-radius: 999px;
    white-space: nowrap;
    align-self: flex-start;
  }
  .hero-text h1 {
    font-size: 44px; font-weight: 800;
    line-height: 1.1; letter-spacing: -0.025em;
    margin-bottom: 20px;
  }
  .hero-text h1 .accent {
    color: var(--accent);
  }
  .hero-text p.lead {
    font-size: 16px; line-height: 1.55;
    opacity: 0.88; max-width: 460px;
    margin-bottom: 24px;
  }
  .hero-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
  .hero-trust {
    margin-top: 18px;
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    font-size: 13px;
    color: var(--on-primary);
    opacity: 0.92;
  }
  .hero-trust .trust-stars { color: var(--accent); letter-spacing: 1px; font-size: 12px; }
  .hero-trust .trust-sep { opacity: 0.4; }
  .hero-trust strong { font-weight: 700; }
  @media (max-width: 540px) {
    .hero-trust { flex-direction: column; align-items: flex-start; gap: 6px; }
    .hero-trust .trust-sep { display: none; }
  }

  /* CATEGORY GRID INSIDE HERO */
  .cat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 14px;
  }
  .cat-card {
    background: var(--bg);
    border-radius: 16px;
    padding: 22px 16px 18px;
    color: var(--text);
    display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 14px;
    transition: transform 0.18s;
    cursor: pointer;
    height: 160px;
    box-sizing: border-box;
    overflow: hidden;
  }
  .cat-card:hover { transform: translateY(-3px); }
  .cat-icon {
    width: 42px; height: 42px;
    color: var(--primary);
    flex-shrink: 0;
  }
  .cat-name {
    font-size: 14px; font-weight: 600;
    line-height: 1.3;
    overflow-wrap: break-word;
  }
  .cat-grid-more {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 14px;
    font-size: 13px; font-weight: 500;
    color: var(--on-primary);
    opacity: 0.85;
    text-decoration: none;
    transition: opacity 0.15s, gap 0.15s;
  }
  .cat-grid-more:hover { opacity: 1; gap: 12px; }
  .cat-grid-more span { color: var(--accent); font-weight: 600; }

  /* ===== STATS ===== */
  .stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 40px 0 16px;
    text-align: center;
  }
  .stat .num {
    font-size: 44px; font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
  }
  .stat.highlight .num {
    color: var(--accent);
  }
  .stat .label {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
  }

  /* ===== SECTIONS ===== */
  section { padding: 40px 0; }
  section.ranking-section { padding-top: 24px; }
  section.rank-hero { padding-bottom: 8px; }

  .section-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text);
    margin-bottom: 14px;
  }
  .section-eyebrow::before {
    content: ''; width: 24px; height: 1.5px;
    background: var(--accent);
  }
  h2 {
    font-size: 38px; font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 12px;
  }
  .section-lead {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 580px;
  }
  .section-header-row {
    display: flex; justify-content: space-between; align-items: end;
    margin-bottom: 48px; gap: 24px; flex-wrap: wrap;
  }

  /* ===== BREADCRUMB ===== */
  .breadcrumb {
    padding: 14px 0 4px;
    font-size: 13px;
    color: var(--text-muted);
  }
  .breadcrumb a { color: var(--text-muted); }
  .breadcrumb a:hover { color: var(--primary); }
  .breadcrumb a:last-child { color: var(--text); font-weight: 500; }
  .breadcrumb-sep { margin: 0 8px; color: var(--text-light); }
  .breadcrumb-updated {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    white-space: nowrap;
  }
  .hero-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 6px;
  }
  .hero-title-row h1 { flex: 1; max-width: 1040px; margin-bottom: 0; }
  .hero-title-row .breadcrumb-updated {
    flex-shrink: 0;
    margin-top: 14px;
  }

  /* ===== HERO CTA ===== */
  .btn-lg { height: 56px; padding: 0 28px; font-size: 16px; }
  .link-arrow {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 15px; font-weight: 600;
    color: var(--on-primary);
    transition: gap 0.15s;
  }
  .link-arrow:hover { gap: 12px; }

  /* ===== TRUST STACK (hero right) ===== */
  .trust-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    position: relative; z-index: 1;
  }
  .trust-card {
    background: var(--bg);
    border-radius: 14px;
    padding: 18px 16px;
    display: flex; align-items: flex-start; gap: 12px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.10);
  }
  .trust-card-icon {
    width: 38px; height: 38px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .trust-card-icon svg { width: 20px; height: 20px; }
  .trust-card-title {
    font-size: 14px; font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 2px;
  }
  .trust-card-sub {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
  }

  /* ===== PREVIEW CARD ===== */
  .preview-card {
    background: var(--bg);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
    position: relative; z-index: 1;
  }
  .preview-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
  }
  .preview-eyebrow {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-muted);
  }
  .preview-badge {
    background: var(--accent); color: var(--on-accent);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px; font-weight: 800;
    letter-spacing: 0.04em; text-transform: uppercase;
  }
  .preview-row {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .preview-row:last-of-type { border-bottom: none; padding-bottom: 16px; }
  .preview-rank {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 14px;
    background: var(--surface);
    color: var(--text);
  }
  .preview-rank.gold { background: var(--accent); color: var(--on-accent); }
  .preview-rank.silver { background: #CBD5E1; color: var(--text); }
  .preview-rank.bronze { background: #D9A06C; color: var(--bg); }
  .preview-name { font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 2px; }
  .preview-stars { font-size: 12px; color: var(--accent-hover); letter-spacing: 0.08em; }
  .preview-stars span { color: var(--text-muted); font-weight: 600; margin-left: 4px; }
  .preview-price { font-size: 13px; color: var(--text-muted); white-space: nowrap; }
  .preview-price strong { display: block; font-size: 16px; color: var(--text); font-weight: 800; }
  .preview-cta {
    display: flex; justify-content: center; align-items: center; gap: 6px;
    margin-top: 12px;
    padding: 12px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 12px;
    font-size: 14px; font-weight: 700;
    transition: background 0.15s, gap 0.15s;
  }
  .preview-cta:hover { background: var(--accent-soft); gap: 12px; }

  /* ===== BENEFITS ===== */
  .benefits-section { padding: 40px 0; }
  .benefits-header { text-align: center; margin-bottom: 40px; }
  .benefits-header h2 { margin-top: 12px; }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .benefit-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 22px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  }
  .benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    border-color: var(--primary-soft);
  }
  .benefit-icon {
    width: 48px; height: 48px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
  }
  .benefit-icon svg { width: 26px; height: 26px; }
  .benefit-card h3 {
    font-size: 17px; font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
  }
  .benefit-card p {
    font-size: 14px; line-height: 1.55;
    color: var(--text-muted);
  }

  /* ===== TUNNEL CTA ===== */
  .tunnel-cta-section { padding: 24px 0 40px; }
  .tunnel-cta-card {
    background: var(--primary);
    color: var(--on-primary);
    border-radius: 20px;
    padding: 44px 56px;
    display: flex; align-items: center; justify-content: space-between; gap: 36px;
    position: relative; overflow: hidden;
  }
  .tunnel-cta-card::before {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.15;
    pointer-events: none;
  }
  .tunnel-cta-text { flex: 1; position: relative; z-index: 1; }
  .tunnel-cta-text h2 {
    color: var(--on-primary);
    margin-bottom: 8px;
  }
  .tunnel-cta-text p {
    font-size: 16px; line-height: 1.55;
    opacity: 0.88;
    max-width: 520px;
  }
  .tunnel-cta-card .btn { position: relative; z-index: 1; flex-shrink: 0; }

  /* ===== FAQ ===== */
  .faq-section { padding: 32px 0 40px; }
  .faq-header { text-align: center; margin-bottom: 40px; }
  .faq-header h2 { margin-top: 12px; }
  .faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex; flex-direction: column;
    gap: 12px;
  }
  .faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .faq-item:hover { border-color: var(--primary-soft); }
  .faq-item[open] {
    border-color: var(--primary-soft);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
  }
  .faq-item summary {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 16px; font-weight: 600;
    color: var(--text);
    cursor: pointer;
    list-style: none;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-chevron {
    width: 20px; height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.2s;
  }
  .faq-item[open] .faq-chevron { transform: rotate(180deg); }
  .faq-item p {
    padding: 0 24px 22px;
    font-size: 15px; line-height: 1.65;
    color: var(--text-muted);
  }

  /* ===== STEPS ===== */
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .step-card {
    background: var(--primary);
    color: var(--on-primary);
    border-radius: 16px;
    padding: 32px;
    min-height: 220px;
    display: flex; flex-direction: column;
  }
  .step-num {
    display: inline-block;
    font-size: 13px; font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: 0.1em;
  }
  .step-card h3 {
    font-size: 22px; font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .step-card p {
    font-size: 15px; opacity: 0.88;
    line-height: 1.55;
  }

  /* ===== PARTNERS ===== */
  .partners-section { background: var(--surface); }
  .partners-header { text-align: center; margin-bottom: 48px; }
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: center;
  }
  .partner-text {
    font-size: 16px; font-weight: 700;
    letter-spacing: -0.01em;
    color: #94A3B8;
    font-family: 'Inter', sans-serif;
  }
  .partner-logo.partner-text:hover { color: var(--text); }
  .partner-logo {
    height: 84px;
    border-radius: 12px;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    padding: 12px 20px;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .partner-logo img {
    height: 36px;
    width: auto;
    max-width: 75%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.2s, opacity 0.2s;
  }
  /* Léger bump intermédiaire */
  .partner-logo img.logo-md { height: 42px; }
  /* Logos avec beaucoup de blanc interne — bump pour qu'ils ne paraissent pas perdus */
  .partner-logo img.logo-big { height: 50px; }
  /* Logos très larges qui dominent visuellement — cap la largeur */
  .partner-logo img.logo-narrow { max-width: 55%; }
  /* Très petits logos intrinsèques (juste lettres compactes) */
  .partner-logo img.logo-xl { height: 56px; }
  .partner-logo:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08); }
  .partner-logo:hover img { filter: grayscale(0%); opacity: 1; }

  /* ===== BLOG ===== */
  .blog-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 20px;
  }
  .article-card {
    background: var(--bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    cursor: pointer;
    display: flex; flex-direction: column;
  }
  .article-card:hover { border-color: var(--primary); transform: translateY(-2px); }
  .article-img {
    aspect-ratio: 16/9;
    background: var(--primary-soft);
    position: relative;
  }
  .article-img svg {
    position: absolute; inset: 0; margin: auto;
    width: 80px; height: 80px;
    color: var(--primary);
    opacity: 0.6;
  }
  .article-card.large .article-img { aspect-ratio: 4/3; }
  .article-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
  .article-tag {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--accent-hover);
    margin-bottom: 10px;
  }
  .article-card h3 {
    font-size: 18px; font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 8px;
  }
  .article-card.large h3 { font-size: 22px; }
  .article-card p {
    font-size: 14px; color: var(--text-muted);
    line-height: 1.55; margin-bottom: 16px;
    flex: 1;
  }
  .article-meta {
    font-size: 13px; color: var(--text-light);
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--primary);
    color: var(--on-primary);
    padding: 56px 0 32px;
    margin-top: 0;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
  }
  .footer-brand .logo { color: var(--on-primary); }
  .footer-brand p {
    font-size: 14px; opacity: 0.75;
    margin-top: 16px;
    line-height: 1.6;
    max-width: 280px;
  }
  .footer-brand .badges {
    display: flex; gap: 8px; margin-top: 16px;
  }
  .footer-badge {
    padding: 4px 10px;
    background: rgba(255,255,255,0.12);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
  }
  .footer-col h5 {
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    font-size: 14px;
    opacity: 0.75;
    transition: opacity 0.15s;
  }
  .footer-col a:hover { opacity: 1; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 24px;
    display: flex; flex-wrap: wrap; gap: 16px 32px;
    justify-content: space-between; align-items: center;
    font-size: 13px;
    opacity: 0.85;
  }
  .footer-bottom-info { display: flex; flex-direction: column; gap: 4px; }
  .footer-legal {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  }
  .footer-legal a,
  .footer-legal a:link,
  .footer-legal a:visited,
  .footer-legal a:active {
    color: var(--on-primary);
    text-decoration: none;
    transition: opacity 0.15s;
  }
  .footer-legal a:hover,
  .footer-legal a:focus {
    color: var(--on-primary);
    opacity: 0.7;
    text-decoration: underline;
  }
  .footer-legal span { opacity: 0.5; }
  @media (max-width: 720px) {
    .footer-bottom { justify-content: center; text-align: center; }
    .footer-bottom-info { align-items: center; }
    .footer-legal { justify-content: center; }
  }
  /* ===== RANK HERO ===== */
  .rank-hero { padding: 12px 0 24px; }
  .rank-hero-inner { max-width: 880px; }
  .rank-hero-eyebrow {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--text-muted);
    padding: 5px 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    margin-bottom: 12px;
  }
  .rank-hero h1 {
    font-size: 34px; font-weight: 800;
    line-height: 1.1; letter-spacing: -0.025em;
    margin-bottom: 6px;
  }
  .rank-hero h1 .accent { color: var(--primary); }
  .rank-hero .lead-kicker {
    font-size: 17px; font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
  }
  .rank-hero .lead {
    font-size: 15px; line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 12px;
    max-width: 780px;
  }
  .rank-hero-meta {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-muted);
  }
  .rank-hero-meta .trust-stars { color: var(--accent-hover); letter-spacing: 0.05em; }
  .rank-hero-meta strong { color: var(--text); font-weight: 700; }
  .rank-hero-sep { color: var(--text-light); }
  .rank-hero-updated {
    margin-left: auto;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
  }

  .ad-disclosure {
    margin-top: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
  }
  .ad-disclosure summary {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    list-style: none;
  }
  .ad-disclosure summary::-webkit-details-marker { display: none; }
  .ad-disclosure[open] summary { margin-bottom: 10px; }
  .ad-disclosure p {
    font-size: 13px; line-height: 1.55;
    color: var(--text-muted);
  }

  /* ===== RANKING ===== */
  .ranking-section { padding: 16px 0 40px; }
  .ranking-section .container { display: flex; flex-direction: column; }
  .ranking-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0;
    margin-bottom: 14px;
    position: relative;
    cursor: pointer;
    order: var(--order-desktop, 0);
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  }
  .ranking-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    text-decoration: none;
  }
  .ranking-card-link:focus-visible {
    outline: 3px solid var(--primary-soft);
    outline-offset: 2px;
  }
  /* Le CTA et le lien "Plus d'infos" doivent rester cliquables au-dessus de l'overlay */
  .ranking-cta,
  .ranking-features-link {
    position: relative;
    z-index: 2;
  }
  .ranking-go-to-site {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 12px; font-weight: 500;
    color: var(--text-light);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s;
    position: relative; z-index: 2;
  }
  .ranking-go-to-site:hover { color: var(--primary); }
  .ranking-features-link {
    display: inline-flex; align-items: center; gap: 4px;
    align-self: flex-start;
    margin-top: 12px;
    padding: 5px 11px;
    font-size: 12px; font-weight: 600;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.18s ease;
  }
  .ranking-features-link:hover { background: #D0DCF0; }
  .ranking-info {
    position: relative;
    z-index: 2;
  }
  /* Le flag est purement visuel, il n'interfère pas avec le clic */
  .ranking-flag { pointer-events: none; z-index: 2; }
  .ranking-card:hover {
    border-color: var(--primary-soft);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
    transform: translateY(-2px);
  }
  .ranking-card.featured {
    border-color: var(--accent);
    border-width: 2px;
    box-shadow: 0 14px 40px rgba(255, 198, 41, 0.20);
    background: linear-gradient(180deg, #FFFBED 0%, var(--bg) 30%);
  }

  /* Tagline et awards (réservés à la card featured) */
  .ranking-tagline {
    font-size: 15px;
    font-style: italic;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.4;
  }
  .ranking-awards {
    display: flex; flex-wrap: wrap; gap: 6px;
  }
  .award {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 11px;
    background: var(--accent-soft);
    color: var(--on-accent);
    border: 1px solid var(--accent);
    border-radius: 999px;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.01em;
  }
  .award-emoji { font-size: 13px; }
  .ranking-flag {
    display: inline-block;
    background: var(--primary);
    color: var(--on-primary);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.04em;
    padding: 6px 14px;
    border-radius: 999px;
    position: absolute;
    top: -10px; left: 24px;
    z-index: 2;
  }
  .ranking-card.featured .ranking-flag {
    background: var(--accent);
    color: var(--on-accent);
  }
  .ranking-flag.flag-orange { background: #F97316; }
  .ranking-flag.flag-green { background: #10B981; }
  .ranking-flag.flag-blue { background: #3B82F6; }
  .ranking-flag.flag-violet { background: #8B5CF6; }
  .ranking-card-inner {
    display: grid;
    grid-template-columns: 48px 170px 1fr 180px;
    gap: 20px;
    padding: 22px 24px 20px;
    align-items: center;
  }
  .ranking-rank {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: 800;
    background: var(--surface);
    color: var(--text);
  }
  .ranking-card.featured .ranking-rank {
    background: var(--accent);
    color: var(--on-accent);
  }
  .ranking-brand {
    width: 100%;
    min-height: 90px;
    display: flex; align-items: center; justify-content: center;
  }
  .ranking-brand img {
    max-height: 90px;
    max-width: 200px;
    object-fit: contain;
    mix-blend-mode: multiply;
  }
  .bottom-pick-brand img { mix-blend-mode: multiply; }
  .ranking-brand.brand-text {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--text);
    text-align: center;
    line-height: 1.15;
  }
  .ranking-brand.brand-nexecur {
    color: #008B8B;
    text-transform: uppercase;
    letter-spacing: -0.02em;
  }
  .ranking-mid { display: flex; flex-direction: column; gap: 10px; }
  .ranking-promo {
    display: inline-block;
    align-self: flex-start;
    background: var(--accent-soft);
    color: var(--on-accent);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px; font-weight: 700;
  }
  .ranking-pros {
    list-style: none;
    display: flex; flex-direction: column;
    gap: 4px;
    margin: 0;
  }
  .ranking-pros li {
    position: relative;
    padding-left: 22px;
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--text);
  }
  .ranking-pros li::before {
    content: '✓';
    position: absolute;
    left: 0; top: 0;
    color: var(--primary);
    font-weight: 800;
  }
  .ranking-tags {
    display: flex; gap: 6px; flex-wrap: wrap;
  }
  .ranking-tag {
    font-size: 11px; font-weight: 600;
    color: var(--text-muted);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 999px;
  }
  .ranking-right {
    display: flex; flex-direction: column; align-items: stretch; gap: 10px;
  }
  .ranking-rating-big {
    text-align: center;
    padding: 12px 8px;
    background: var(--primary-soft);
    border-radius: 12px;
  }
  .rating-score-big {
    font-size: 38px; font-weight: 900;
    line-height: 1;
    color: var(--primary);
    letter-spacing: -0.03em;
    margin-bottom: 6px;
  }
  .rating-score-big span {
    font-size: 16px; font-weight: 700;
    color: var(--primary);
    opacity: 0.6;
    letter-spacing: 0;
  }
  .rating-label {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--text-muted);
  }
  .ranking-card.featured .ranking-rating-big {
    background: var(--accent-soft);
  }
  .ranking-card.featured .rating-score-big,
  .ranking-card.featured .rating-score-big span { color: var(--on-accent); }
  .ranking-card.featured .rating-label { color: var(--on-accent); opacity: 0.75; }
  .ranking-cta {
    width: 100%;
    justify-content: center;
    height: 64px;
    padding: 0 22px;
    font-size: 18px;
    font-weight: 800;
  }
  .ranking-cta { transition: transform 0.12s ease, background 0.18s ease; }
  .ranking-cta:active { transform: scale(0.985); }
  .ranking-info {
    text-align: center;
    font-size: 13px; font-weight: 600;
    color: var(--text-muted);
    text-decoration: underline;
  }
  .ranking-info:hover { color: var(--primary); }

  /* ===== FACTS ===== */
  .facts-section {
    background: var(--surface);
    padding: 64px 0;
  }
  .facts-header { text-align: center; margin-bottom: 40px; }
  .facts-header h2 { margin-top: 12px; }
  .facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .fact-item {
    background: var(--bg);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    border: 1px solid var(--border);
  }
  .fact-emoji {
    font-size: 32px;
    margin-bottom: 8px;
  }
  .fact-stat {
    font-size: 36px; font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 10px;
  }
  .fact-label {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
  }
  .fact-label sup { color: var(--text-light); font-size: 10px; }
  .facts-sources {
    margin-top: 32px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
  }
  .facts-sources a {
    color: var(--text-muted);
    text-decoration: underline;
    transition: color 0.15s;
  }
  .facts-sources a:hover { color: var(--primary); }
  .facts-sources sup { color: var(--text-light); margin-right: 2px; }

  /* ===== CONTENT BLOCKS ===== */
  .content-section { padding: 40px 0; }
  .content-block {
    max-width: 800px;
    margin: 0 auto 40px;
  }
  .content-block:last-child { margin-bottom: 0; }
  .content-block h2 {
    font-size: 26px; font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .content-block p {
    font-size: 16px; line-height: 1.7;
    color: var(--text);
    margin-bottom: 14px;
  }
  .content-block p:last-child { margin-bottom: 0; }
  .content-block strong { color: var(--text); font-weight: 700; }
  .content-list {
    list-style: none;
    margin: 14px 0;
    padding: 0;
  }
  .content-list li {
    padding: 10px 0 10px 28px;
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid var(--border);
    position: relative;
  }
  .content-list li:last-child { border-bottom: none; }
  .content-list li::before {
    content: '→';
    position: absolute;
    left: 0; top: 10px;
    color: var(--primary);
    font-weight: 800;
  }

  /* ===== BOTTOM CTA — Reprise du n°1 ===== */
  .bottom-cta-section { padding: 32px 0 80px; }
  .bottom-pick-card {
    display: block;
    background: var(--primary);
    color: var(--on-primary);
    border-radius: 20px;
    padding: 40px 44px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .bottom-pick-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(10, 61, 161, 0.25);
  }
  .bottom-pick-card::before {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.18;
    pointer-events: none;
  }
  .bottom-pick-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent);
    color: var(--on-accent);
    border-radius: 999px;
    font-size: 13px; font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 22px;
    position: relative;
  }
  .bottom-pick-grid {
    display: grid;
    grid-template-columns: 180px 1fr 200px;
    gap: 32px;
    align-items: center;
    position: relative;
  }
  .bottom-pick-brand {
    background: var(--bg);
    border-radius: 16px;
    padding: 18px 20px;
    display: flex; align-items: center; justify-content: center;
    min-height: 90px;
  }
  .bottom-pick-brand img { max-height: 56px; max-width: 100%; width: auto; }
  .bottom-pick-content h2 {
    color: var(--on-primary);
    margin-bottom: 8px;
    font-size: 26px;
    letter-spacing: -0.02em;
  }
  .bottom-pick-content p {
    font-size: 15px; line-height: 1.55;
    opacity: 0.88;
    margin-bottom: 14px;
  }
  .bottom-pick-meta {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    font-size: 13px;
    opacity: 0.82;
  }
  .bottom-pick-stars {
    color: var(--accent);
    letter-spacing: 0.08em;
  }
  .bottom-pick-stars strong { color: var(--on-primary); margin-left: 4px; }
  .bottom-pick-sep { color: var(--accent); }
  .bottom-pick-cta-wrap { text-align: right; }
  .bottom-pick-cta { width: 100%; justify-content: center; }

  /* ===== LANDING PAGE MODE (?lp=1) ===== */
  /* On masque tous les "exits" : nav header, CTA header, breadcrumb, footer */
  body.lp-mode header .logo { pointer-events: none; cursor: default; }
  body.lp-mode .header-inner nav,
  body.lp-mode .header-inner > .btn-accent,
  body.lp-mode .menu-toggle,
  body.lp-mode .breadcrumb,
  body.lp-mode .lead-kicker,
  body.lp-mode .rank-hero .lead,
  body.lp-mode .ad-disclosure,
  body.lp-mode footer .footer-grid,
  body.lp-mode footer hr,
  body.lp-mode footer .footer-bottom-nav { display: none !important; }
  /* Logo affiché mais non-cliquable */
  body.lp-mode .logo { pointer-events: none; cursor: default; }
  /* Footer minimal : juste le copyright */
  body.lp-mode footer {
    padding: 24px 0;
    text-align: center;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 980px) {
    .ranking-features-link { display: none; }
    /* Mobile : simplification cards comparateur */
    .ranking-tags { display: none; }
    .ranking-info { display: none; }
    .hero-card { grid-template-columns: 1fr; gap: 36px; padding: 40px 28px 36px; }
    .hero-text h1 { font-size: 34px; }
    .hero-badge { padding: 6px 12px; font-size: 11px; margin-bottom: 18px; }
    .stats { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 32px 0 8px; }
    .steps { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    h2 { font-size: 30px; }
    nav ul { display: none; }
    .header-inner > .btn-accent { display: none; }
    .menu-toggle { display: inline-flex; margin-left: auto; }
    .container { padding: 0 20px; }
    .cat-card { height: 140px; padding: 18px 14px 14px; }
    .cat-icon { width: 36px; height: 36px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .tunnel-cta-card { flex-direction: column; align-items: flex-start; padding: 36px 32px; gap: 24px; }
    .tunnel-cta-card .btn { width: 100%; }
    .rank-hero h1 { font-size: 34px; }
    .ranking-card-inner {
      grid-template-columns: 48px 1fr;
      gap: 14px 18px;
      padding: 22px 22px 20px;
    }
    .ranking-mid { grid-column: 1 / -1; }
    .ranking-right {
      grid-column: 1 / -1;
      flex-direction: row;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
    }
    .ranking-rating-big { flex: 1 1 40%; padding: 10px 8px; }
    .rating-score-big { font-size: 30px; }
    .ranking-cta { flex: 1 1 50%; width: auto; }
    .ranking-info { width: 100%; flex-basis: 100%; order: 3; }
    .facts-grid { grid-template-columns: repeat(2, 1fr); }
    .bottom-cta-card { padding: 40px 28px; }
  }
  @media (max-width: 540px) {
    .hero-card { padding: 32px 20px; gap: 28px; border-radius: 16px; }
    .hero-text h1 { font-size: 30px; }
    .hero-text p.lead { font-size: 15px; }
    .hero-text .eyebrow { font-size: 11px; }
    .hero-badge {
      padding: 5px 10px; font-size: 10px;
      letter-spacing: 0.04em;
      margin-bottom: 14px;
    }
    .cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .cat-card { height: 120px; padding: 14px 12px 12px; gap: 10px; }
    .cat-icon { width: 32px; height: 32px; }
    .cat-name { font-size: 13px; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .stats { gap: 18px; }
    .stat .num { font-size: 32px; }
    .container { padding: 0 16px; }
    .hero-trust { flex-direction: column; align-items: flex-start; gap: 8px; }
    .hero-trust .trust-sep { display: none; }
    .benefits-grid { grid-template-columns: 1fr; }
    .hero-cta-row { flex-direction: column; align-items: stretch; gap: 14px; }
    .hero-cta-row .btn { width: 100%; }
    .preview-card { padding: 18px; }
    .tunnel-cta-card { padding: 28px 22px; }
    .faq-item summary { padding: 16px 18px; font-size: 15px; }
    .faq-item p { padding: 0 18px 18px; font-size: 14px; }
    .rank-hero { padding: 8px 0 20px; }
    .rank-hero h1 { font-size: 26px; margin-bottom: 4px; }
    .hero-title-row { flex-direction: column-reverse; align-items: flex-start; gap: 4px; margin-bottom: 6px; }
    .hero-title-row .breadcrumb-updated { margin-top: 0; }
    .rank-hero .lead-kicker { font-size: 15px; margin-bottom: 6px; }
    .rank-hero .lead { font-size: 14px; line-height: 1.5; }
    .ad-disclosure { padding: 8px 12px; font-size: 12px; }
    .ad-disclosure summary { font-size: 13px; }
    .ranking-card-inner {
      grid-template-columns: 1fr;
      padding: 30px 18px 18px;
      gap: 14px;
      position: relative;
    }
    .ranking-rank {
      position: absolute;
      top: -14px; left: 14px;
      width: 32px; height: 32px;
      font-size: 15px;
      z-index: 2;
      flex-shrink: 0;
      margin: 0;
    }
    .ranking-card.featured .ranking-flag { left: 56px; }
    .ranking-card.featured .ranking-rank { top: -14px; }
    .ranking-cta { width: 100%; height: 88px; font-size: 22px; font-weight: 800; letter-spacing: 0.01em; border-radius: 14px; }
    .ranking-brand {
      min-height: 100px;
      width: 100%;
      padding: 4px 0;
    }
    .ranking-brand img {
      max-height: 100px;
      max-width: 80%;
      width: auto;
    }
    .ranking-brand.brand-text { font-size: 30px; }
    .ranking-mid { gap: 10px; }
    .ranking-tagline { font-size: 14px; text-align: center; }
    .ranking-awards { gap: 5px; justify-content: center; }
    .award { font-size: 11px; padding: 4px 9px; gap: 4px; }
    .award-emoji { font-size: 12px; }
    .ranking-promo { align-self: center; font-size: 13px; padding: 7px 14px; }
    .ranking-pros li { font-size: 13.5px; padding-left: 22px; }
    .ranking-tags { justify-content: center; }
    .ranking-tag { font-size: 11px; padding: 4px 10px; }
    .ranking-right { flex-direction: column; align-items: stretch; gap: 10px; }
    .ranking-rating-big { flex: none; padding: 12px 10px; }
    .rating-score-big { font-size: 32px; }
    .ranking-cta { width: 100%; height: 88px; font-size: 22px; font-weight: 800; letter-spacing: 0.01em; border-radius: 14px; }
    .ranking-info { font-size: 14px; padding: 4px; }
    .bottom-pick-card { padding: 32px 22px; }
    .bottom-pick-grid { grid-template-columns: 1fr; gap: 20px; }
    .bottom-pick-brand { padding: 22px; min-height: 100px; }
    .bottom-pick-brand img { max-height: 70px; }
    .bottom-pick-cta-wrap { text-align: center; }
    .bottom-pick-content h2 { font-size: 22px; text-align: center; }
    .bottom-pick-content p { text-align: center; }
    .bottom-pick-meta { justify-content: center; }
    .facts-grid { grid-template-columns: 1fr; gap: 14px; }
    .fact-item { padding: 22px 18px; }
    .fact-stat { font-size: 30px; }
    .content-block h2 { font-size: 22px; }
    .content-block p { font-size: 15px; }
    .bottom-cta-card { padding: 36px 22px; }
  }

  /* ===== LEAD FORM v3 ===== */
  .lead-hero { padding: 24px 0 56px; }
  .lead-card {
    background: var(--bg);
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
    min-height: 640px;
    display: flex;
    flex-direction: column;
  }
  .lead-card-body {
    flex: 1;
    display: flex;
  }
  .lead-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 0;
    width: 100%;
  }
  .lead-left {
    background: var(--primary);
    color: var(--on-primary);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .lead-left::before {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.15;
  }
  .lead-left .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 16px;
    position: relative; z-index: 1;
  }
  .lead-left .eyebrow::before {
    content: ''; width: 24px; height: 1.5px;
    background: var(--accent);
  }
  .lead-left h1 {
    font-size: 32px; font-weight: 800;
    line-height: 1.1; letter-spacing: -0.025em;
    margin-bottom: 14px;
    position: relative; z-index: 1;
  }
  .lead-left h1 .accent { color: var(--accent); }
  .lead-left p.lead-sub {
    font-size: 15px; line-height: 1.55;
    opacity: 0.92; margin-bottom: 22px;
    position: relative; z-index: 1;
  }

  /* Partner logos band */
  .partners-band {
    position: relative; z-index: 1;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 20px;
  }
  .partners-band-label {
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
  }
  .partners-band-list {
    display: flex; flex-wrap: wrap; gap: 8px 14px;
    align-items: center;
  }
  .partner-pill {
    font-size: 12px; font-weight: 700;
    color: var(--on-primary);
    opacity: 0.92;
  }

  .lead-trust { position: relative; z-index: 1; margin-bottom: 18px; }
  .lead-trust-item {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    opacity: 0.95;
  }
  .lead-trust-item:last-child { margin-bottom: 0; }
  .lead-trust-item svg {
    width: 20px; height: 20px;
    flex-shrink: 0;
    color: var(--accent);
  }

  /* Rotating testimonial */
  .lead-testimonial {
    margin-top: auto;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 16px;
    position: relative; z-index: 1;
    min-height: 120px;
  }
  .testimonial-stars { color: var(--accent); font-size: 13px; letter-spacing: 1px; margin-bottom: 6px; }
  .testimonial-text-wrap {
    position: relative;
    min-height: 70px;
  }
  .testimonial-text {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    opacity: 0;
    position: absolute;
    transition: opacity 0.6s ease;
  }
  .testimonial-text.is-active { opacity: 1; position: relative; }
  .testimonial-author {
    margin-top: 6px;
    font-size: 12px; font-weight: 700;
    color: var(--accent);
  }

  /* Right form panel */
  .lead-right {
    padding: 28px 32px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .lead-progress-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-shrink: 0;
  }
  .lead-progress {
    flex: 1;
    height: 4px;
    background: var(--surface);
    border-radius: 999px;
    overflow: hidden;
  }
  .lead-progress-bar {
    height: 100%;
    background: var(--accent);
    border-radius: 999px;
    width: 0%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .lead-progress-text {
    font-size: 12px; font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
    min-width: 80px;
    text-align: right;
  }

  .lead-step {
    display: none;
    flex: 1;
    flex-direction: column;
  }
  .lead-step.is-active {
    display: flex;
    animation: stepIn 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  }
  @keyframes stepIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .lead-step.is-active.going-back {
    animation: stepInBack 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  }
  @keyframes stepInBack {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .lead-step h2 {
    font-size: 22px; font-weight: 800;
    line-height: 1.25; letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: var(--text);
  }
  .lead-step .step-help {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.5;
  }
  .lead-step .step-help.info-block {
    background: var(--primary-soft);
    color: var(--text);
    border-radius: 10px;
    padding: 14px 16px;
    margin: 12px 0 18px;
    font-size: 14px;
    line-height: 1.5;
  }
  .lead-step-content { flex: 1; }

  /* Choice cards */
  .choices { display: grid; gap: 8px; margin-bottom: 18px; }
  .choices.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .choices.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .choice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--bg);
    cursor: pointer;
    font-size: 14px; font-weight: 500;
    color: var(--text);
    text-align: center;
    transition: all 0.18s ease;
    width: 100%;
  }
  .choice:hover {
    border-color: var(--primary);
    background: var(--surface);
    transform: translateY(-1px);
  }
  .choice.is-selected {
    border-color: var(--primary);
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 600;
  }
  .choice-radio {
    display: none;
  }
  .choice.is-selected .choice-radio {
    border-color: var(--primary);
    background: var(--primary);
  }
  .choice.is-selected .choice-radio::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 6px; height: 6px;
    border-radius: 50%;
    background: white;
  }
  .choice-icon {
    width: 22px; height: 22px;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: color 0.15s;
  }
  .choice.is-selected .choice-icon { color: var(--primary); }

  /* Multi-select chips */
  .multi-chips {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 18px;
  }
  .multi-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    font-size: 14px;
    background: var(--bg);
    cursor: pointer;
    transition: all 0.18s ease;
  }
  .multi-chip:hover { border-color: var(--primary); transform: translateY(-1px); }
  .multi-chip.is-selected {
    border-color: var(--primary);
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 600;
  }
  .multi-chip-icon { width: 16px; height: 16px; }
  .multi-chip-tick {
    display: none;
  }
  .multi-chip.is-selected .multi-chip-tick {
    background: var(--primary);
    border-color: var(--primary);
  }
  .multi-chip.is-selected .multi-chip-tick::after {
    content: '✓';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px; font-weight: 700;
  }

  /* Inputs */
  .lead-input-group { margin-bottom: 14px; }
  .lead-input-label {
    display: block;
    font-size: 13px; font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
  }
  .lead-input, .lead-select {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    background: var(--bg);
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .lead-input:focus, .lead-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
  }
  .lead-input.has-error, .lead-select.has-error { border-color: #DC2626; }
  .lead-error {
    color: #DC2626;
    font-size: 12px;
    margin-top: 4px;
    display: none;
  }
  .lead-error.show { display: block; }

  /* Date split */
  .date-split {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
  }

  /* Coverage levels (vertical card with cells) */
  .coverage-block {
    background: var(--surface);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 18px;
  }
  .coverage-title-row {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    margin-bottom: 12px;
  }
  .coverage-icon {
    width: 24px; height: 24px;
    color: var(--primary);
  }
  .coverage-levels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }
  .coverage-level {
    padding: 12px 4px 10px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    font-size: 12px; font-weight: 700;
    color: var(--text-muted);
    text-align: center;
    cursor: pointer;
    transition: all 0.18s ease;
    line-height: 1.2;
  }
  .coverage-level:hover { border-color: var(--primary); transform: translateY(-1px); }
  .coverage-level.is-selected {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--on-primary);
  }
  .coverage-level .level-bars {
    display: flex; gap: 2px;
    margin-top: 6px;
    justify-content: center;
  }
  .coverage-level .level-bar {
    width: 8px; height: 4px;
    background: var(--border);
    border-radius: 2px;
  }
  .coverage-level.is-selected .level-bar { background: rgba(255,255,255,0.45); }
  .coverage-level.is-selected .level-bar.is-on { background: var(--accent); }

  /* Welcome / Loading */
  .lead-welcome { text-align: center; padding: 18px 0; }
  .lead-welcome .welcome-icon {
    width: 76px; height: 76px;
    background: var(--primary-soft);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
  }
  .lead-welcome .welcome-icon svg { width: 36px; height: 36px; }
  .lead-welcome h2 { font-size: 26px; margin-bottom: 12px; }
  .lead-welcome p { color: var(--text-muted); max-width: 420px; margin: 0 auto 20px; font-size: 15px; line-height: 1.5; }
  .lead-welcome .welcome-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 420px;
    margin: 18px auto 22px;
  }
  .lead-welcome .welcome-stats-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 320px;
  }
  .welcome-stat {
    background: var(--surface);
    border-radius: 10px;
    padding: 12px 6px;
  }
  .welcome-stat strong {
    display: block;
    font-size: 18px;
    color: var(--primary);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
  }
  .welcome-stat span { font-size: 11px; color: var(--text-muted); }

  /* Loading screen */
  .lead-loading {
    text-align: center;
    padding: 36px 0;
    display: flex; flex-direction: column; align-items: center; gap: 16px;
    flex: 1;
    justify-content: center;
  }
  .lead-spinner {
    width: 56px; height: 56px;
    border: 4px solid var(--surface);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  @keyframes spin { to { transform: rotate(360deg); } }
  .lead-loading h2 { font-size: 22px; }
  .lead-loading p { color: var(--text-muted); font-size: 14px; }
  .lead-loading-checks {
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: left;
    line-height: 2;
  }
  .lead-loading-checks li {
    list-style: none;
    opacity: 0;
    animation: checkin 0.6s ease forwards;
  }
  .lead-loading-checks li:nth-child(1) { animation-delay: 0.3s; }
  .lead-loading-checks li:nth-child(2) { animation-delay: 0.9s; }
  .lead-loading-checks li:nth-child(3) { animation-delay: 1.5s; }
  @keyframes checkin {
    from { opacity: 0; transform: translateX(-8px); }
    to { opacity: 1; transform: translateX(0); }
  }

  /* Success */
  .lead-success { text-align: center; padding: 28px 0; }
  .lead-success-icon {
    width: 72px; height: 72px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 22px;
    display: flex; align-items: center; justify-content: center;
  }
  .lead-success-icon svg { width: 36px; height: 36px; }
  .lead-success h2 { font-size: 26px; margin-bottom: 10px; }
  .lead-success > p { color: var(--text-muted); max-width: 380px; margin: 0 auto 20px; font-size: 14px; line-height: 1.55; }

  /* Partner card */
  .partner-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
    margin: 0 auto 18px;
    max-width: 380px;
    text-align: left;
  }
  .partner-card-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
  }
  .partner-card-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }
  .partner-card-sub {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
  }

  /* Success steps list */
  .success-steps {
    text-align: left;
    max-width: 380px;
    margin: 0 auto 18px;
    padding: 0;
    list-style: none;
  }
  .success-steps li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text);
    line-height: 1.5;
  }
  .success-steps li:last-child { margin-bottom: 0; }
  .success-step-num {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--on-primary);
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Success badge */
  .success-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--primary-soft);
    border-radius: 999px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    margin-top: 6px;
  }

  /* Form nav */
  .lead-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
  }
  .lead-nav .btn { min-width: 160px; justify-content: center; text-align: center; }
  .lead-prev {
    background: var(--bg); color: var(--text);
    border: 1.5px solid var(--border);
  }
  .lead-prev:hover { border-color: var(--primary); color: var(--primary); }

  /* Consents */
  .consent-block {
    background: var(--surface);
    border-radius: 10px;
    padding: 14px 16px;
    margin: 12px 0 16px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
  }
  .consent-row {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 10px;
  }
  .consent-row:last-child { margin-bottom: 0; }
  .consent-row input { margin-top: 2px; flex-shrink: 0; accent-color: var(--primary); }
  .consent-row label { cursor: pointer; }
  .consent-row a { color: var(--primary); text-decoration: underline; }

  @media (max-width: 900px) {
    .lead-hero { padding: 16px 0 40px; }
    .lead-hero .container { padding: 0 16px; }

    .lead-grid {
      grid-template-columns: 1fr;
      grid-template-rows: 1fr auto;
    }
    .lead-grid .lead-left { display: none; }
    .lead-grid .lead-right {
      order: 1;
      padding: 18px 18px 16px;
      width: 100%;
    }

    /* Card : plus compacte, ombre plus douce */
    .lead-card {
      min-height: 0;
      border-radius: 18px;
      overflow: visible;
      box-shadow: 0 6px 24px rgba(15, 23, 42, 0.05);
      border-color: #EEF1F6;
    }
    .lead-card-body { padding: 0; min-height: 0; }

    /* Progress : un peu plus visible */
    .lead-progress-wrap { margin-bottom: 18px; gap: 10px; }
    .lead-progress { height: 5px; }
    .lead-progress-text { font-size: 11px; min-width: 64px; font-weight: 700; }

    /* Step : hauteur min pour stabiliser entre étapes */
    .lead-step { min-height: 360px; }
    .lead-step h2 { font-size: 19px; line-height: 1.3; margin-bottom: 6px; }
    .lead-step .step-help { font-size: 12.5px; margin-bottom: 14px; }

    /* iOS zoom prevention : inputs ≥ 16px */
    .lead-input, .lead-select, textarea.lead-input { font-size: 16px; height: 46px; }

    /* Choices : plus tactiles, plus aérés */
    .choices.cols-3, .choices.cols-2 { grid-template-columns: 1fr; }
    .choices { gap: 8px; margin-bottom: 14px; }
    .choice {
      padding: 13px 14px;
      font-size: 14.5px;
      border-radius: 12px;
      min-height: 48px;
    }
    .multi-chips { gap: 6px; margin-bottom: 14px; }
    .multi-chip { padding: 10px 13px; font-size: 13.5px; min-height: 40px; }
    .coverage-levels { grid-template-columns: repeat(2, 1fr); gap: 8px; }

    /* Welcome step : icon plus petite */
    .welcome-icon { width: 56px; height: 56px; margin-bottom: 14px; }
    .welcome-icon svg { width: 30px; height: 30px; }
    .lead-welcome h2 { font-size: 22px !important; }
    .lead-welcome p { font-size: 14px !important; }

    /* Nav : bordure subtile + boutons plus accessibles */
    .lead-nav {
      padding-top: 14px;
      margin-top: 12px;
      border-top: 1px solid #EEF1F6;
      gap: 8px;
    }
    .lead-nav .btn {
      min-width: 0;
      padding: 0 20px;
      font-size: 14.5px;
      height: 46px;
      justify-content: center;
      text-align: center;
    }
    .lead-nav .lead-next { min-width: 170px; }

    /* Consent : texte un peu plus petit */
    .consent-block { font-size: 11.5px; padding: 12px 14px; }

    /* Élements à masquer */
    .partners-band, .lead-trust, .lead-testimonial, .lead-rating { display: none; }
    .lead-left h1, .lead-left p.lead-sub, .lead-left .eyebrow { display: none; }
  }
  @media (max-width: 540px) {
    .lead-hero .container { padding: 0 12px; }
    .lead-grid .lead-right { padding: 16px 14px 14px; }
    .lead-card { border-radius: 16px; }
    .lead-step h2 { font-size: 18px; }
    .lead-step { min-height: 340px; }
    .choice { padding: 12px 13px; font-size: 14px; }
    .multi-chip { padding: 9px 12px; font-size: 13px; }
  }


  /* Custom combobox (replacing datalist) */
  .combobox { position: relative; }
  .combobox-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0; right: 0;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.10);
    max-height: 240px;
    overflow-y: auto;
    z-index: 10;
    display: none;
    padding: 4px;
  }
  .combobox.is-open .combobox-list { display: block; }
  .combobox-option {
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
    transition: background 0.12s;
  }
  .combobox-option:hover,
  .combobox-option.is-active {
    background: var(--primary-soft);
    color: var(--primary);
  }
  .combobox-option[hidden] { display: none; }
  .combobox-empty {
    padding: 14px 12px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
  }

  body.form-active .faq-section { display: none; }

  /* Masquer le bouton Retour : on auto-valide quand on peut */
  .lead-prev { display: none !important; }

  /* === Form density tweaks (desktop) ============================== */
  .lead-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 10px;
  }
  .lead-input-row .lead-input-group { margin-bottom: 0; }

  /* Légère compaction par défaut */
  .lead-input-group { margin-bottom: 10px; }
  .lead-input-label { font-size: 12.5px; margin-bottom: 5px; }
  .lead-input, .lead-select { height: 42px; }
  .lead-step h2 { font-size: 20px; margin-bottom: 6px; }
  .lead-step .step-help { font-size: 12.5px; margin-bottom: 14px; }
  .consent-block { padding: 12px 14px; font-size: 11.5px; margin: 10px 0 12px; }
  .consent-row { margin-bottom: 8px; }
  .lead-hero { padding: 20px 0 48px; }
  .lead-card { min-height: 580px; }
  .lead-right { padding: 24px 28px 22px; }
  .lead-left { padding: 32px 32px; }

  /* Mobile : on garde inputs ≥ 16px (iOS), mais le row redevient 1 col */
  @media (max-width: 540px) {
    .lead-input-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
    .lead-input-row .lead-input-group { margin-bottom: 10px; }
  }


  /* Désactive les hovers sur appareils tactiles (sticky hover sur iOS) */
  @media (hover: none) {
    .choice:hover {
      border-color: var(--border);
      background: var(--bg);
      transform: none;
    }
    .multi-chip:hover {
      border-color: var(--border);
      transform: none;
    }
    .btn:hover { background: inherit; }
    .btn-primary:hover { background: var(--primary); }
    .btn-accent:hover { background: var(--accent); }
  }


  /* États d'erreur consent */
  .consent-error {
    display: none;
    color: #DC2626;
    font-size: 12.5px;
    font-weight: 600;
    margin: -4px 0 10px;
    padding: 8px 12px;
    background: #FEF2F2;
    border-radius: 8px;
    border: 1px solid #FECACA;
  }
  .consent-error.show { display: block; }
  .consent-row.has-error input[type="checkbox"] {
    outline: 2px solid #DC2626;
    outline-offset: 2px;
    border-radius: 3px;
  }