/* ============================================================
   PRAIMY v4 — "Premium fintech navy"
   Direction: bleu nuit profond + bleu clair lumineux + blanc
   Inspiration: Qonto, Alan, immobilier haut de gamme
   ============================================================ */

/* ============================================
   1. PALETTE OVERRIDES (so the v3 Simulator inherits the navy theme)
   ============================================ */
:root {
  /* Navy & blues */
  --navy:        #071B3B;
  --navy-deep:   #03102A;
  --navy-mid:    #0E2B5C;
  --navy-soft:   #1C3A6E;

  --blue-light:  #6DB8FF;
  --blue-bright: #4FA3F0;
  --blue-soft:   #B8DBFF;
  --blue-tint:   #E8F2FE;

  --paper:       #FFFFFF;
  --bg:          #F7F9FC;
  --bg-2:        #EEF3FA;
  --bg-3:        #DFE7F2;

  --beige:       #F5F0E8;

  --ink:         #1A2540;
  --ink-soft:    #4A5570;
  --ink-mute:    #8090A8;
  --ink-faint:   #C2CCDD;

  --line:        #E1E7F0;
  --line-soft:   #EEF1F6;

  /* === Override v3 tokens so the reused Simulator/Charte etc inherit navy ===
     Map v3 semantic names → v4 navy values */
  --forest:      var(--navy);
  --forest-dark: var(--navy-deep);
  --pine:        var(--navy-mid);

  --sage:        var(--blue-light);
  --sage-bright: var(--blue-light);
  --sage-soft:   var(--blue-soft);
  --sage-tint:   var(--blue-tint);
  --sage-deep:   var(--blue-bright);

  --gold:        var(--blue-light);
  --gold-deep:   var(--blue-bright);
  --gold-tint:   var(--blue-tint);

  --cream:       var(--bg);
  --cream-2:     var(--bg-2);
  --cream-3:     var(--bg-3);

  /* === Type === */
  --font-display: "Plus Jakarta Sans", -apple-system, system-ui, sans-serif;
  --font-body:    "Inter", -apple-system, system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, Menlo, monospace;

  /* === Layout === */
  --max:       1280px;
  --pad:       clamp(20px, 4vw, 64px);
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  /* === Shadows (cool-tinted) === */
  --shadow-xs: 0 1px 2px rgba(7, 27, 59, 0.04);
  --shadow-sm: 0 4px 14px rgba(7, 27, 59, 0.06), 0 1px 4px rgba(7, 27, 59, 0.04);
  --shadow:    0 12px 36px rgba(7, 27, 59, 0.08), 0 4px 12px rgba(7, 27, 59, 0.05);
  --shadow-lg: 0 24px 64px rgba(7, 27, 59, 0.12), 0 8px 16px rgba(7, 27, 59, 0.06);
  --shadow-blue: 0 12px 30px rgba(109, 184, 255, 0.30);
  --shadow-navy: 0 12px 30px rgba(7, 27, 59, 0.25);

  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   2. RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
body { overflow-x: clip; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
.v4 h1, .v4 h2, .v4 h3, .v4 h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
  color: var(--navy);
}
.v4 h1 { font-size: clamp(44px, 6.6vw, 88px); letter-spacing: -0.03em; line-height: 1.02; }
.v4 h2 { font-size: clamp(36px, 4.8vw, 60px); line-height: 1.05; }
.v4 h3 { font-size: clamp(22px, 2.4vw, 28px); letter-spacing: -0.02em; }
.v4 h4 { font-size: 18px; font-weight: 600; }

.v4 .lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 400;
}
.v4 em.accent { font-style: normal; color: var(--blue-bright); }
.v4 .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-bright);
}
.v4 .eyebrow::before {
  content: "";
  width: 16px; height: 2px;
  background: var(--blue-light);
  border-radius: 2px;
}
.v4 .eyebrow.on-dark { color: var(--blue-light); }
.v4 .eyebrow.on-dark::before { background: var(--blue-light); }

.v4 p { margin: 0; }

/* ============================================
   4. LAYOUT
   ============================================ */
.v4 .wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.v4 section { padding: clamp(80px, 9vw, 140px) 0; position: relative; }
.v4 section.dark {
  background: var(--navy);
  color: var(--paper);
}
.v4 section.dark h2, .v4 section.dark h3 { color: var(--paper); }
.v4 section.dark .lead { color: rgba(255,255,255,0.7); }
.v4 section.tinted { background: var(--bg-2); }

/* === Reveal === */
.v4 .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.v4 .reveal.is-revealed { opacity: 1; transform: translateY(0); }
.v4 .reveal.delay-1 { transition-delay: .08s; }
.v4 .reveal.delay-2 { transition-delay: .16s; }
.v4 .reveal.delay-3 { transition-delay: .24s; }
.v4 .reveal.delay-4 { transition-delay: .32s; }
.v4 .reveal.delay-5 { transition-delay: .40s; }
.v4 .reveal.delay-6 { transition-delay: .48s; }

/* ============================================
   5. BUTTONS
   ============================================ */
.v4 .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: all .2s var(--ease);
  cursor: pointer;
  border: 0;
}
.v4 .btn:hover { transform: translateY(-2px); }
.v4 .btn-primary { background: var(--navy); color: var(--paper); box-shadow: var(--shadow-sm); }
.v4 .btn-primary:hover { background: var(--navy-mid); box-shadow: var(--shadow-navy); }
.v4 .btn-blue { background: var(--blue-light); color: var(--navy); }
.v4 .btn-blue:hover { background: var(--blue-bright); color: var(--paper); box-shadow: var(--shadow-blue); }
.v4 .btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.v4 .btn-ghost:hover { border-color: var(--navy); background: var(--paper); }
.v4 .btn-ghost.on-dark {
  color: var(--paper);
  border-color: rgba(255,255,255,0.25);
}
.v4 .btn-ghost.on-dark:hover { background: rgba(255,255,255,0.05); border-color: var(--paper); }
.v4 .btn-arrow::after {
  content: "→";
  font-size: 16px;
  transition: transform .25s var(--ease);
}
.v4 .btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================
   6. NAV
   ============================================ */
.v4-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 252, 0.78);
  backdrop-filter: saturate(150%) blur(20px);
  -webkit-backdrop-filter: saturate(150%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.v4-nav.scrolled {
  background: rgba(247, 249, 252, 0.94);
  border-bottom-color: var(--line);
}
.v4-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.v4-nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.v4-nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}
@media (max-width: 640px) {
  .v4-nav-logo img { height: 36px; }
}
.v4-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.v4-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .15s var(--ease);
}
.v4-nav-links a:hover { color: var(--navy); }
.v4-nav-cta { display: flex; gap: 10px; align-items: center; }
.v4-nav-cta .btn { padding: 10px 18px; font-size: 13.5px; }
@media (max-width: 1024px) { .v4-nav-links { display: none; } }

/* ============================================
   CHARTE V4 (premium document)
   ============================================ */
.v4-charte-doc {
  background: var(--paper);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 64px);
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
}
.v4-charte-doc::before {
  content: "";
  position: absolute;
  top: 20px; left: 20px; right: 20px; bottom: 20px;
  border: 1px solid var(--blue-light);
  border-radius: calc(var(--radius-xl) - 8px);
  opacity: 0.4;
  pointer-events: none;
}
.v4-charte-head {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
  position: relative;
}
.v4-charte-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: var(--blue-light);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}
.v4-charte-head h2 { margin-top: 18px; font-size: clamp(34px, 4.5vw, 52px); }
.v4-charte-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}
.v4-charte-pillar {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.v4-charte-pillar:nth-last-child(-n+2) { border-bottom: 0; }
.v4-charte-pillar .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v4-charte-pillar h3 { font-size: 18px; margin: 0 0 6px; }
.v4-charte-pillar p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; margin: 0; }
@media (max-width: 700px) {
  .v4-charte-grid { grid-template-columns: 1fr; gap: 0; }
  .v4-charte-pillar { border-bottom: 1px solid var(--line-soft); }
  .v4-charte-pillar:last-child { border-bottom: 0; }
  .v4-charte-doc { padding: 32px 24px; }
}

/* ============================================
   RÉSEAU / FRANCHISE V4 (dark navy)
   ============================================ */
.v4-reseau-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 64px;
}
.v4-reseau-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 16px;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.v4-reseau-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--blue-light);
  transform: translateY(-3px);
}
.v4-reseau-card.alt {
  background: rgba(109, 184, 255, 0.07);
  border-color: rgba(109, 184, 255, 0.25);
}
.v4-reseau-card.alt:hover {
  background: rgba(109, 184, 255, 0.12);
  border-color: var(--blue-light);
}
.v4-reseau-tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(109, 184, 255, 0.14);
  padding: 6px 10px;
  border-radius: 999px;
}
.v4-reseau-card h3 {
  color: var(--paper) !important;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.15;
}
.v4-reseau-card > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.6;
}
.v4-reseau-list {
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex; flex-direction: column; gap: 10px;
}
.v4-reseau-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
.v4-reseau-list li::before {
  content: "→";
  position: absolute; left: 0;
  color: var(--blue-light);
  font-weight: 700;
}
.v4-reseau-card .btn {
  align-self: flex-start;
  margin-top: 8px;
}

.v4-reseau-bens {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.v4-reseau-bens .ben {
  display: flex; flex-direction: column; gap: 8px;
}
.v4-reseau-bens .bn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--blue-light);
  font-weight: 600;
}
.v4-reseau-bens h4 {
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.v4-reseau-bens p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .v4-reseau-grid { grid-template-columns: 1fr; }
  .v4-reseau-bens { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
}
@media (max-width: 540px) {
  .v4-reseau-bens { grid-template-columns: 1fr; }
}

/* ============================================
   POURQUOI PRAIMY (4 inline-icon cards)
   ============================================ */
.v4-pourquoi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.v4-pourquoi-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.v4-pourquoi-card::before {
  content: "";
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(109, 184, 255, 0.14), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.v4-pourquoi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--blue-light);
}
.v4-pourquoi-card:hover::before { opacity: 1; }

.v4-pourquoi-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  box-shadow: var(--shadow-xs);
}
.v4-pourquoi-icon svg { width: 30px; height: 30px; display: block; }
.v4-pourquoi-card h3 {
  font-size: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0;
}
.v4-pourquoi-card p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) {
  .v4-pourquoi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .v4-pourquoi-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PHOTO BREAK SECTION (editorial full-bleed)
   ============================================ */
.v4-photo-section {
  display: grid;
  overflow: hidden;
}
.v4-photo-img {
  grid-area: 1/1;
  width: 100%;
  height: auto;
  display: block;
}
.v4-photo-bg { display: none; }
.v4-photo-overlay {
  grid-area: 1/1;
  background:
    linear-gradient(180deg, rgba(7,27,59,0.1) 0%, rgba(7,27,59,0.55) 50%, rgba(7,27,59,0.75) 100%),
    linear-gradient(90deg, rgba(7,27,59,0.45) 0%, rgba(7,27,59,0) 60%);
  z-index: 1;
  pointer-events: none;
}
.v4-photo-content {
  grid-area: 1/1;
  align-self: center;
  z-index: 2;
  padding: clamp(48px, 6vw, 80px) var(--pad);
  max-width: 600px;
  color: var(--paper);
}
.v4-photo-content h2 {
  color: var(--paper);
  margin-top: 18px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
}
.v4-photo-content h2 em.accent {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue-light), #B8DBFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v4-photo-content p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  max-width: 440px;
}

@media (max-width: 700px) {
  .v4-photo-section {
    display: block;
    background: var(--navy);
  }
  .v4-photo-img {
    grid-area: unset;
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center 20%;
  }
  .v4-photo-overlay { display: none; }
  .v4-photo-content {
    grid-area: unset;
    position: relative;
    padding: 32px var(--pad) 40px;
    max-width: 100%;
  }
}

/* ============================================
   7. HERO
   ============================================ */
.v4-hero {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(80px, 10vw, 140px);
  position: relative;
  overflow: hidden;
}
.v4-hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -20%;
  width: 70%;
  height: 130%;
  background: radial-gradient(circle, rgba(109,184,255,0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* === Hero with photo background variant === */
.v4-hero.with-bg {
  background-color: #071B3B;
  background-image:
    linear-gradient(180deg, rgba(7,27,59,0.62) 0%, rgba(7,27,59,0.40) 50%, rgba(7,27,59,0.78) 100%),
    url("hero-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--paper);
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(100px, 12vw, 160px);
}
.v4-hero.with-bg::before { display: none; }
.v4-hero.with-bg h1 { color: var(--paper); }
.v4-hero.with-bg h1 em {
  background: linear-gradient(135deg, var(--blue-light) 0%, #B8DBFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v4-hero.with-bg p.lead { color: rgba(255, 255, 255, 0.85); }
.v4-hero.with-bg .v4-hero-eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: var(--blue-light);
  backdrop-filter: blur(8px);
}
.v4-hero.with-bg .v4-hero-eyebrow .pulse { background: var(--blue-light); }
.v4-hero.with-bg .v4-hero-trust {
  border-top-color: rgba(255, 255, 255, 0.15);
}
.v4-hero.with-bg .v4-hero-trust .item {
  color: rgba(255, 255, 255, 0.85);
}
.v4-hero.with-bg .v4-hero-trust .item .ic {
  background: rgba(255, 255, 255, 0.10);
  color: var(--blue-light);
}
.v4-hero.with-bg .btn-ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.25);
}
.v4-hero.with-bg .btn-ghost:hover {
  background: var(--paper);
  color: var(--navy);
  border-color: var(--paper);
}
.v4-hero.with-bg .v4-float-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}
.v4-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.v4-hero .v4-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-tint);
  color: var(--blue-bright);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.v4-hero .v4-hero-eyebrow .pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 0 rgba(79, 163, 240, 0.6);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(79, 163, 240, 0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(79, 163, 240, 0); }
  100% { box-shadow: 0 0 0 0   rgba(79, 163, 240, 0); }
}
.v4-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v4-hero p.lead { margin: 32px auto 0; max-width: 620px; }
.v4-hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.v4-hero-stats { display: none; }

.v4-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.v4-hero-trust .item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
}
.v4-hero-trust .item .ic {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue-bright);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Floating cards behind hero (visual interest) */
.v4-hero-floats { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.v4-float-card {
  position: absolute;
  background: var(--paper);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px;
  color: var(--navy);
  font-weight: 600;
}
.v4-float-card .ic {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--blue-tint);
  color: var(--blue-bright);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.v4-float-card.l  { top: 18%; left: 4%;  animation: floatA 7s ease-in-out infinite; }
.v4-float-card.r  { top: 30%; right: 4%; animation: floatB 8s 0.4s ease-in-out infinite; }
.v4-float-card.bl { bottom: 14%; left: 6%; animation: floatC 6s 0.8s ease-in-out infinite; }
.v4-float-card.br { bottom: 22%; right: 5%; animation: floatD 7.5s 0.2s ease-in-out infinite; }
@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0)   translateX(0); }
  50%      { transform: translateY(-8px) translateX(4px); }
}
@keyframes floatC {
  0%, 100% { transform: translateY(0)   translateX(0); }
  50%      { transform: translateY(-12px) translateX(-3px); }
}
@keyframes floatD {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
@media (max-width: 900px) {
  .v4-float-card { display: none; }
}

/* ============================================
   8. SECTION HEADING
   ============================================ */
.v4-sec-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.v4-sec-head h2 { margin-top: 18px; }
.v4-sec-head .lead { margin-top: 20px; }

.v4-sec-head.left {
  text-align: left;
  margin: 0 0 clamp(48px, 6vw, 80px);
  max-width: 720px;
}

/* ============================================
   9. SERVICES
   ============================================ */
.v4-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.v4-svc-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.v4-svc-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(109,184,255,0.10), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.v4-svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--blue-light);
}
.v4-svc-card:hover::before { opacity: 1; }
.v4-svc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--blue-tint);
  color: var(--blue-bright);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.v4-svc-card h3 {
  font-size: 22px;
  line-height: 1.2;
}
.v4-svc-card p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  flex-grow: 1;
}
.v4-svc-card .v4-svc-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
@media (max-width: 900px) { .v4-svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .v4-svc-grid { grid-template-columns: 1fr; } }

/* ============================================
   10. SIMULATOR WRAPPER (reused from v3, restyled by token overrides)
   ============================================ */
.v4-sim-section {
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(80px, 9vw, 140px);
}
.v4-sim-wrap {
  background: var(--navy);
  color: var(--paper);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 80px) clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.v4-sim-wrap::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 140%;
  background: radial-gradient(ellipse at center, rgba(109, 184, 255, 0.18), transparent 60%);
  pointer-events: none;
}
.v4-sim-wrap h2 { color: var(--paper); }
.v4-sim-wrap .lead { color: rgba(255,255,255,0.75); }
.v4-sim-wrap .v4-sim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
  position: relative;
}
.v4-sim-wrap .v4-sim-grid > .v4-sim-text {
  max-width: 460px;
}
.v4-sim-wrap .v4-sim-grid > .v4-sim-text .eyebrow { color: var(--blue-light); }
.v4-sim-wrap .v4-sim-grid > .v4-sim-text .eyebrow::before { background: var(--blue-light); }
.v4-sim-wrap .v4-sim-grid > .v4-sim-text .v4-sim-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.v4-sim-wrap .v4-sim-grid > .v4-sim-text .v4-sim-points li {
  display: flex; gap: 12px; align-items: start;
  color: rgba(255,255,255,0.85);
  font-size: 15.5px;
  line-height: 1.5;
}
.v4-sim-wrap .v4-sim-grid > .v4-sim-text .v4-sim-points li::before {
  content: "→";
  color: var(--blue-light);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0;
}
@media (max-width: 900px) {
  .v4-sim-wrap .v4-sim-grid { grid-template-columns: 1fr; }
}
/* Force the embedded Simulator to look right on the navy background */
.v4-sim-wrap .simulator {
  /* Already inherits via overridden tokens */
}

/* ============================================
   11. STEPS (Comment ça marche)
   ============================================ */
.v4-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.v4-step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.v4-step .v4-step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v4-step h3 { font-size: 20px; }
.v4-step p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 1000px) { .v4-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .v4-steps { grid-template-columns: 1fr; } }

/* ============================================
   12. TRUST / ENGAGEMENT
   ============================================ */
.v4-engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.v4-eng-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.v4-eng-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.v4-eng-card .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--blue-bright);
}
.v4-eng-card h3 { font-size: 22px; }
.v4-eng-card p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 900px) { .v4-engagement-grid { grid-template-columns: 1fr; } }

/* ============================================
   13. CTA BANNER (premium dark)
   ============================================ */
.v4-cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--paper);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.v4-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 80% 50%, rgba(109,184,255,0.16), transparent 70%);
  pointer-events: none;
}
.v4-cta-banner h2 { color: var(--paper); font-size: clamp(28px, 3.6vw, 44px); position: relative; }
.v4-cta-banner .lead { color: rgba(255,255,255,0.75); margin-top: 16px; position: relative; }
.v4-cta-banner .v4-cta-actions {
  position: relative;
  display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap;
}
@media (max-width: 800px) {
  .v4-cta-banner { grid-template-columns: 1fr; }
  .v4-cta-banner .v4-cta-actions { justify-content: flex-start; }
}

/* ============================================
   14. TESTIMONIALS
   ============================================ */
.v4-temoi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.v4-temoi {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
}
.v4-temoi .stars { color: var(--blue-bright); letter-spacing: 2px; font-size: 14px; }
.v4-temoi .q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--navy);
  flex-grow: 1;
}
.v4-temoi .who {
  display: flex; gap: 12px; align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.v4-temoi .who .av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue-bright);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.v4-temoi .n { font-size: 14px; font-weight: 600; }
.v4-temoi .m { font-size: 12.5px; color: var(--ink-mute); }
@media (max-width: 900px) { .v4-temoi-grid { grid-template-columns: 1fr; } }

/* ============================================
   15. GARANTIES
   ============================================ */
.v4-garanties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.v4-garantie {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.v4-garantie:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-sm);
}
.v4-garantie-check {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue-bright);
  font-size: 16px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.v4-garantie-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.3;
}
.v4-garantie-desc {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}
@media (max-width: 900px) { .v4-garanties-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .v4-garanties-grid { grid-template-columns: 1fr; } }

/* ============================================
   16. FAQ
   ============================================ */
.v4-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.v4-faq-list { display: flex; flex-direction: column; }
.v4-faq-item {
  display: block;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  padding: 22px 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}
.v4-faq-item:last-child { border-bottom: 1px solid var(--line); }
.v4-faq-q { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.v4-faq-q h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--navy);
}
.v4-faq-plus {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--navy);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.v4-faq-item.is-open .v4-faq-plus {
  background: var(--navy);
  color: var(--blue-light);
  transform: rotate(45deg);
}
.v4-faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  padding-right: 50px;
  transition: max-height .35s var(--ease), padding-top .35s var(--ease);
}
.v4-faq-item.is-open .v4-faq-a { max-height: 320px; padding-top: 14px; }
@media (max-width: 900px) {
  .v4-faq-grid { grid-template-columns: 1fr; }
  .v4-faq-a { padding-right: 16px; }
}

/* ============================================
   16. CONTACT
   ============================================ */
.v4-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 64px);
}
.v4-contact-form {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.v4-contact-form .row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.v4-contact-form .row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.v4-contact-form .row.two > div { display: flex; flex-direction: column; gap: 6px; }
.v4-contact-form label { font-size: 12.5px; font-weight: 600; color: var(--ink-soft); }
.v4-contact-form input, .v4-contact-form select, .v4-contact-form textarea {
  background: var(--bg);
  border: 1.5px solid var(--line);
  padding: 13px 16px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color .15s var(--ease), background .15s var(--ease), box-shadow .15s var(--ease);
}
.v4-contact-form input:focus, .v4-contact-form select:focus, .v4-contact-form textarea:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(79, 163, 240, 0.16);
}
.v4-contact-form textarea { min-height: 110px; resize: vertical; }
.v4-contact-form .submit { width: 100%; margin-top: 8px; }
.v4-contact-form .small { font-size: 12px; color: var(--ink-mute); margin-top: 14px; line-height: 1.5; }
.v4-contact-form .small a { color: var(--blue-bright); text-decoration: underline; }
.v4-consent {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px;
  background: var(--bg-2);
  border-radius: 10px;
  margin: 4px 0 16px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.v4-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 1px;
  accent-color: var(--blue-bright);
  cursor: pointer;
}
.v4-consent a { color: var(--blue-bright); text-decoration: underline; }
.v4-contact-form .submit:disabled {
  opacity: 1; cursor: not-allowed; background: #7c89a3; color: #fff; box-shadow: none;
}
.v4-contact-form .submit:disabled:hover { transform: none; }

.v4-contact-side .info-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.v4-contact-info {
  display: flex; gap: 14px; align-items: center;
  padding: 18px 20px;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.v4-contact-info .ic {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--blue-tint);
  color: var(--blue-bright);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.v4-contact-info .t { font-size: 13.5px; color: var(--ink-soft); white-space: nowrap; }
.v4-contact-info .v { font-size: 15px; color: var(--navy); font-weight: 600; }

@media (max-width: 900px) { .v4-contact-grid { grid-template-columns: 1fr; } }

/* === Sim summary in v4 contact form === */
.v4-sim-summary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--paper);
  border-radius: 14px;
  padding: 20px 22px 22px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.v4-sim-summary::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(109,184,255,0.20), transparent 70%);
  pointer-events: none;
}
.v4-sim-summary-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
  position: relative;
}
.v4-sim-summary-head span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-light);
}
.v4-sim-summary-head .star { font-size: 14px; margin-right: 4px; }
.v4-sim-summary-clear {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  color: var(--paper);
  border: 0;
  cursor: pointer;
  font-size: 16px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.v4-sim-summary-clear:hover { background: rgba(255,255,255,0.22); }
.v4-sim-summary-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
}
.v4-sim-summary-list li {
  display: flex; justify-content: space-between; gap: 14px;
  font-size: 13.5px;
}
.v4-sim-summary-list .k { color: rgba(255,255,255,0.6); }
.v4-sim-summary-list .v { font-weight: 600; text-align: right; }
.v4-sim-summary-result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.v4-sim-summary-result .lbl {
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}
.v4-sim-summary-result .amt {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--blue-light);
  line-height: 1.1;
}
.v4-sim-summary-result .rac .amt { color: var(--paper); }

/* ============================================
   17. FOOTER
   ============================================ */
.v4-footer {
  background: var(--navy);
  color: var(--paper);
  padding: clamp(56px, 6vw, 80px) 0 28px;
}
.v4-footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.v4-footer-brand .v4-footer-logo {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}
.v4-footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.55; max-width: 320px; }
.v4-footer-col h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin: 0 0 16px;
}
.v4-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.v4-footer-col a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color .15s var(--ease); }
.v4-footer-col a:hover { color: var(--paper); }
.v4-footer-bot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 24px;
  font-size: 12px; color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 16px;
}
.v4-footer-bot .legal { display: flex; gap: 20px; flex-wrap: wrap; }
@media (max-width: 900px) { .v4-footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .v4-footer-top { grid-template-columns: 1fr; } }

/* ============================================
   18. MOBILE BAR
   ============================================ */
.v4-mobile-bar {
  display: none;
}
@media (max-width: 768px) {
  .v4-mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
  }
  .v4-mobile-bar-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 13px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .15s ease, transform .15s ease;
  }
  .v4-mobile-bar-btn:active { opacity: 0.85; transform: scale(0.97); }
  .v4-mobile-bar-btn.ghost {
    background: rgba(255,255,255,0.1);
    color: var(--paper);
    border: 1.5px solid rgba(255,255,255,0.2);
  }
  .v4-mobile-bar-btn.primary {
    background: var(--blue-bright);
    color: var(--paper);
  }
  /* Espace en bas de page pour ne pas cacher le contenu */
  .v4-footer { padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px)); }
}

/* ============================================
   19. MOBILE TWEAKS
   ============================================ */
@media (max-width: 640px) {
  .v4-nav-inner { height: 64px; }
  .v4-nav-cta .btn { padding: 9px 14px; font-size: 12.5px; }
  .v4-hero { padding-top: 32px; padding-bottom: 64px; }
  .v4-hero-ctas .btn { width: 100%; }
  .v4 section { padding: 56px 0; }
  .v4-sim-wrap { padding: 32px 20px; overflow: visible; }
  .v4-cta-banner { padding: 32px 24px; }

  /* Hero stats bar */
  .v4-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 14px 16px;
  }
  .v4-hero-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-align: center;
  }
  .v4-hero-stat .n {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    color: var(--blue-light);
    line-height: 1;
  }
  .v4-hero-stat .l {
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    line-height: 1.3;
  }
  .v4-hero-stat-sep {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
    margin: 0 4px;
  }

  /* Contact form */
  .v4-contact-form { padding: 24px 18px; }
  .v4-contact-form .row.two { grid-template-columns: 1fr; }
  .v4-contact-grid { gap: 32px; }
  .v4-contact-info { padding: 14px 16px; }
  .v4-contact-info .v { font-size: 14px; word-break: break-all; }
}
