/* ===== CHIC · Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Palette */
  --chic-900: #0a1a20;
  --chic-800: #14323C;          /* primary */
  --chic-700: #1d4956;
  --chic-600: #2a6373;
  --chic-500: #3d808f;
  --chic-400: #5b737c;          /* gray medium */
  --chic-300: #8aa0a8;
  --chic-200: #c5d2d8;
  --chic-100: #E8EEF0;          /* light gray */
  --chic-50:  #f4f7f8;
  --paper:    #ffffff;
  --ink:      #14323C;

  --accent:        #f0b478;     /* warm peach */
  --accent-strong: #d99457;
  --accent-soft:   #fbe7d2;

  --open:    #2f7d4a;
  --open-bg: #e6f3eb;
  --soon:    #b07a1a;
  --soon-bg: #fbf1dc;

  /* Type */
  --sans: 'Poppins', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

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

  /* Radii */
  --r-sm: 6px;
  --r:    10px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Shadow */
  --shadow-1: 0 1px 2px rgba(20,50,60,0.04), 0 1px 1px rgba(20,50,60,0.03);
  --shadow-2: 0 4px 16px -4px rgba(20,50,60,0.08), 0 2px 6px -2px rgba(20,50,60,0.05);
  --shadow-3: 0 16px 40px -10px rgba(20,50,60,0.18), 0 6px 14px -6px rgba(20,50,60,0.08);

  --max-w: 1320px;
  --gutter: clamp(20px, 4vw, 56px);

  --header-h: 116px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0; padding: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--accent-soft); color: var(--chic-900); }

:focus-visible { outline: 2px solid var(--accent-strong); outline-offset: 3px; border-radius: 4px; }

/* ===== Typography ===== */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--chic-400);
  font-weight: 500;
}
.h1 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
}
.h2 {
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}
.h3 {
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}
.h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
}
.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  color: var(--chic-400);
  font-weight: 400;
}
.italic-accent {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-strong);
}

/* ===== Layout ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section {
  padding: clamp(48px, 6vw, 88px) 0;
}
.section.tight { padding: clamp(36px, 4.5vw, 64px) 0; }
.rule { height: 1px; background: var(--chic-100); border: 0; margin: 0; }

/* ===== Logo ===== */
.chic-logo {
  font-family: var(--sans);
  letter-spacing: -0.01em;
  line-height: 1.05;
  font-weight: 200;
  display: inline-block;
}
.chic-logo b { font-weight: 700; }
.chic-logo--sm { font-size: 11px; }
.chic-logo--md { font-size: 13px; }
.chic-logo--lg { font-size: 18px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 500; font-size: 14px;
  letter-spacing: -0.005em;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent; color: var(--ink);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--chic-800); color: #fff;
  box-shadow: var(--shadow-1);
}
.btn-primary:hover { background: var(--chic-700); box-shadow: var(--shadow-2); }
.btn-accent {
  background: var(--accent); color: var(--chic-900);
}
.btn-accent:hover { background: var(--accent-strong); color: #fff; }
.btn-outline {
  border-color: var(--chic-200); color: var(--ink);
}
.btn-outline:hover { border-color: var(--chic-800); background: var(--chic-50); }
.btn-ghost {
  color: var(--ink);
}
.btn-ghost:hover { background: var(--chic-50); }
.btn-on-dark.btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-on-dark.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-on-dark.btn-primary { background: #fff; color: var(--chic-800); }
.btn-on-dark.btn-primary:hover { background: var(--chic-50); }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 16px 26px; font-size: 15px; }
.btn-icon {
  width: 16px; height: 16px; stroke-width: 1.5;
}

/* ===== Pills / Tags ===== */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  font-family: var(--sans);
  letter-spacing: -0.003em;
}
.pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  display: inline-block;
}
.pill-open { background: var(--open-bg); color: var(--open); }
.pill-open .dot { background: var(--open); }
.pill-soon { background: var(--soon-bg); color: var(--soon); }
.pill-soon .dot { background: var(--soon); }
.pill-ghost { background: var(--chic-50); color: var(--chic-700); }

/* ===== Cards ===== */
.card {
  background: #fff;
  border: 1px solid var(--chic-100);
  border-radius: var(--r-lg);
  transition: border-color .2s ease, box-shadow .25s ease, transform .25s ease;
}
.card:hover {
  border-color: var(--chic-200);
  box-shadow: var(--shadow-2);
}
.card-interactive { cursor: pointer; }
.card-interactive:hover { transform: translateY(-3px); box-shadow: var(--shadow-3); }
.card-padded { padding: 24px; }

/* ===== Form ===== */
.input {
  width: 100%;
  font-family: var(--sans); font-size: 15px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--chic-200);
  border-radius: var(--r);
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.input:focus {
  outline: none;
  border-color: var(--chic-800);
  box-shadow: 0 0 0 4px rgba(20,50,60,0.08);
}
.input::placeholder { color: var(--chic-300); }
.label {
  display: block;
  font-size: 13px; font-weight: 500;
  color: var(--chic-700);
  margin-bottom: 8px;
}

/* ===== Stat ===== */
.stat {
  display: flex; flex-direction: column; gap: 6px;
}
.stat-value {
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--chic-800);
  font-variant-numeric: tabular-nums;
}
.stat-value .frac { font-size: 0.5em; color: var(--chic-300); font-weight: 500; }
.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chic-400);
}

/* ===== Anim utils ===== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.in {
  opacity: 1; transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== Striped placeholder ===== */
.ph {
  background:
    repeating-linear-gradient(135deg, var(--chic-50) 0 12px, var(--chic-100) 12px 24px);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px; color: var(--chic-400);
  border-radius: var(--r);
}

/* ===== Top info bar ===== */
.infobar {
  background: var(--chic-900);
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  padding: 8px 0;
}
.infobar .container {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.infobar a { color: inherit; }
.infobar-left, .infobar-right {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.infobar-item {
  display: inline-flex; align-items: center; gap: 6px;
}
.infobar-item svg { stroke-width: 1.5; opacity: 0.7; }
.infobar-item b { color: #fff; font-weight: 500; }

.lang-switch {
  display: inline-flex; border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; padding: 2px;
}
.lang-switch button {
  background: transparent; border: 0; color: inherit;
  padding: 2px 10px; font-size: 11px;
  border-radius: 999px; font-family: var(--sans); font-weight: 500;
}
.lang-switch button.active { background: #fff; color: var(--chic-900); }

/* ===== Main nav ===== */
.nav-wrap {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--chic-100);
}
.nav {
  display: flex; align-items: center; gap: 32px;
  padding: 18px 0;
}
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-brand-bar { width: 1px; height: 36px; background: var(--chic-100); }
.nav-menu {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.nav-menu li { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  font-size: 14px; font-weight: 500;
  border-radius: 999px;
  color: var(--chic-700);
  transition: color .15s ease, background .15s ease;
}
.nav-link:hover { color: var(--chic-900); background: var(--chic-50); }
.nav-link.active { color: var(--chic-800); }
.nav-link .chev { width: 12px; height: 12px; opacity: 0.6; transition: transform .15s; }
.nav-menu li:hover .chev { transform: rotate(180deg); }

.nav-submenu {
  position: absolute; top: 100%; left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--chic-100);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-3);
  padding: 12px;
  display: none;
  margin-top: 8px;
  z-index: 50;
}
/* Bridge invisible pour relier le menu parent au sous-menu, évite la perte de hover */
.nav-submenu::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -10px;
  height: 10px;
}
.nav-menu li:hover .nav-submenu,
.nav-menu li:focus-within .nav-submenu { display: block; }
.nav-submenu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--chic-700);
  border-radius: var(--r);
  transition: background .15s, color .15s;
}
.nav-submenu a:hover { background: var(--chic-50); color: var(--chic-900); }
.nav-submenu a.active { color: var(--chic-800); font-weight: 500; }
.nav-submenu small {
  display: block;
  font-family: var(--mono); font-size: 10px;
  color: var(--chic-300);
  margin-top: 2px;
  letter-spacing: 0.04em;
}

.nav-actions {
  margin-left: auto;
  display: flex; align-items: center; gap: 10px;
}

.nav-burger {
  display: none;
  border: 1px solid var(--chic-200); background: #fff;
  width: 40px; height: 40px;
  border-radius: 999px;
  align-items: center; justify-content: center;
}

/* mobile nav */
@media (max-width: 1080px) {
  .nav-menu { display: none; }
  .nav-burger { display: inline-flex; }
}

/* ===== Footer ===== */
.footer {
  background: var(--chic-900);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
  font-size: 14px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer h5 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: inherit; transition: color .15s; }
.footer a:hover { color: #fff; }
.footer-brand-logo {
  color: #fff; margin-bottom: 18px;
}
.footer-brand p { color: rgba(255,255,255,0.55); max-width: 36ch; }
.newsletter {
  display: flex; gap: 8px; margin-top: 18px;
}
.newsletter input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-family: var(--sans); font-size: 14px;
  padding: 10px 14px;
  border-radius: 999px;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter button {
  background: var(--accent); color: var(--chic-900);
  border: 0; padding: 10px 16px;
  border-radius: 999px; font-weight: 500;
  font-family: var(--sans);
}
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 12.5px; color: rgba(255,255,255,0.45);
}
.footer-bottom .legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-social {
  display: flex; gap: 10px; margin-top: 18px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
}

/* ===== Crumbs ===== */
.crumbs {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11.5px;
  color: var(--chic-300);
  letter-spacing: 0.03em;
  padding: 18px 0;
}
.crumbs a { color: var(--chic-400); }
.crumbs a:hover { color: var(--chic-800); }
.crumbs .sep { opacity: 0.5; }
.crumbs .current { color: var(--chic-800); }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  min-height: 520px;
}
.hero-split .text {
  padding: clamp(56px, 7vw, 96px) var(--gutter) clamp(56px, 7vw, 96px) var(--gutter);
  background: #fff;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-split .visual {
  position: relative;
  background: var(--chic-100);
  min-height: 480px;
  overflow: hidden;
}
.hero-split .visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-split .visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(20,50,60,0.18) 100%);
  pointer-events: none;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.hero-eyebrow { margin-bottom: 22px; }
.hero h1 { max-width: 14ch; }
.hero p.lead { max-width: 52ch; margin-top: 22px; }

@media (max-width: 880px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split .visual { min-height: 320px; order: -1; }
}

/* Cinematic hero */
.hero-cine {
  position: relative;
  min-height: 620px;
  background: var(--chic-900);
  color: #fff;
  overflow: hidden;
}
.hero-cine .bg {
  position: absolute; inset: 0;
}
.hero-cine .bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-cine .bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,26,32,0.4) 0%, rgba(10,26,32,0.1) 35%, rgba(10,26,32,0.85) 100%),
    linear-gradient(90deg, rgba(10,26,32,0.55) 0%, rgba(10,26,32,0.1) 60%);
}
.hero-cine .content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 620px;
  padding: clamp(64px, 7vw, 96px) 0 clamp(40px, 5vw, 64px);
}
.hero-cine .eyebrow { color: rgba(255,255,255,0.7); }
.hero-cine h1 { color: #fff; max-width: 18ch; }
.hero-cine p.lead { color: rgba(255,255,255,0.8); max-width: 52ch; }

/* Hero stats strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--chic-100);
  border-bottom: 1px solid var(--chic-100);
}
.hero-stats .cell {
  padding: clamp(28px, 3vw, 40px) clamp(20px, 3vw, 36px);
  border-right: 1px solid var(--chic-100);
}
.hero-stats .cell:last-child { border-right: 0; }
.hero-stats .stat-value { color: var(--chic-800); }
@media (max-width: 700px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats .cell { border-right: 0; border-bottom: 1px solid var(--chic-100); }
  .hero-stats .cell:last-child { border-bottom: 0; }
}

/* ===== Live tracker (Services disponibles) ===== */
.tracker-toolbar {
  position: sticky; top: var(--header-h);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid var(--chic-100);
  z-index: 20;
  padding: 18px 0;
}
.tracker-toolbar-inner {
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
}
.tracker-search {
  position: relative;
  flex: 1; min-width: 280px;
}
.tracker-search input {
  width: 100%;
  font-family: var(--sans); font-size: 14px;
  padding: 12px 16px 12px 42px;
  border: 1px solid var(--chic-200);
  background: #fff;
  border-radius: 999px;
}
.tracker-search input:focus {
  outline: none; border-color: var(--chic-800);
  box-shadow: 0 0 0 4px rgba(20,50,60,0.08);
}
.tracker-search svg {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  stroke-width: 1.5; color: var(--chic-400);
}
.chip-row {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 500;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--chic-200);
  background: #fff; color: var(--chic-700);
  transition: all .15s ease;
}
.chip:hover { border-color: var(--chic-800); color: var(--chic-800); }
.chip.active {
  background: var(--chic-800); color: #fff; border-color: var(--chic-800);
}
.chip .ct {
  font-family: var(--mono); font-size: 10.5px;
  opacity: 0.7;
}

.tracker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1180px) { .tracker-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px)  { .tracker-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .tracker-grid { grid-template-columns: 1fr; } }

.tracker-grid.compact { gap: 12px; }
.tracker-grid.compact .specialty-card { padding: 18px; }
.tracker-grid.compact .specialty-card .items { display: none; }
.tracker-grid.compact .specialty-card .more { display: none; }

.specialty-card {
  display: flex; flex-direction: column; gap: 14px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--chic-100);
  border-radius: var(--r-lg);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.specialty-card:hover {
  border-color: var(--chic-200);
  box-shadow: var(--shadow-2);
  transform: translateY(-2px);
}
.specialty-card .head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
}
.specialty-card .name {
  font-weight: 600; font-size: 16px;
  line-height: 1.3; letter-spacing: -0.005em;
  color: var(--chic-900);
}
.specialty-card .pole {
  font-family: var(--mono); font-size: 10.5px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--chic-400);
  margin-top: 4px;
}
.specialty-card .progress {
  display: flex; align-items: center; gap: 12px;
}
.specialty-card .bar {
  flex: 1; height: 4px;
  background: var(--chic-100);
  border-radius: 999px;
  overflow: hidden;
}
.specialty-card .bar-fill {
  height: 100%; background: var(--chic-800);
  border-radius: 999px;
  transition: width .8s cubic-bezier(0.22, 1, 0.36, 1);
}
.specialty-card .ratio {
  font-family: var(--mono); font-size: 11px;
  color: var(--chic-400);
  font-variant-numeric: tabular-nums;
}
.specialty-card .items {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; color: var(--chic-700);
  line-height: 1.45;
}
.specialty-card .items li {
  position: relative; padding-left: 16px;
}
.specialty-card .items li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%;
}
.specialty-card .items li.open::before { background: var(--open); }
.specialty-card .items li.soon::before { background: var(--soon); }
.specialty-card .more {
  font-size: 12px; color: var(--chic-400);
  margin: -2px 0 0 16px;
}
.specialty-card .cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500;
  color: var(--chic-800);
  padding-top: 6px;
}
.specialty-card .cta svg { width: 14px; height: 14px; transition: transform .15s; stroke-width: 1.5; }
.specialty-card .cta:hover svg { transform: translateX(3px); }

/* ===== Home — Poles grid ===== */
.poles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1080px) { .poles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .poles-grid { grid-template-columns: 1fr; } }
.pole-card {
  position: relative;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--chic-100);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 220px;
  transition: all .25s ease;
}
.pole-card:hover {
  border-color: var(--chic-800);
  background: var(--chic-50);
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}
.pole-card .icon {
  width: 44px; height: 44px;
  background: var(--chic-100);
  border-radius: var(--r);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--chic-800);
}
.pole-card:hover .icon { background: var(--chic-800); color: #fff; }
.pole-card .icon svg { stroke-width: 1.5; width: 22px; height: 22px; }
.pole-card .title { font-weight: 600; font-size: 17px; letter-spacing: -0.005em; }
.pole-card .desc { font-size: 13px; color: var(--chic-400); line-height: 1.5; }
.pole-card .meta {
  margin-top: auto;
  font-family: var(--mono); font-size: 11px;
  color: var(--chic-400);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Section header */
.sec-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}
.sec-header .right { text-align: right; }
@media (max-width: 880px) {
  .sec-header { grid-template-columns: 1fr; gap: 18px; }
  .sec-header .right { text-align: left; }
}

/* Innovation / plateau strip */
.innov-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--chic-100);
}
.innov-grid .cell {
  padding: 36px 28px;
  border-right: 1px solid var(--chic-100);
  border-bottom: 1px solid var(--chic-100);
  display: flex; flex-direction: column; gap: 12px;
  min-height: 220px;
}
.innov-grid .cell:nth-child(4n) { border-right: 0; }
@media (max-width: 980px) {
  .innov-grid { grid-template-columns: repeat(2, 1fr); }
  .innov-grid .cell { border-right: 1px solid var(--chic-100); }
  .innov-grid .cell:nth-child(2n) { border-right: 0; }
}
@media (max-width: 600px) {
  .innov-grid { grid-template-columns: 1fr; }
  .innov-grid .cell { border-right: 0; }
}
.innov-grid .num {
  font-family: var(--mono); font-size: 11px;
  color: var(--chic-300); letter-spacing: 0.08em;
}
.innov-grid h4 { font-size: 19px; }
.innov-grid p { font-size: 14px; color: var(--chic-400); margin: 0; }

/* Future roadmap */
.future {
  background: var(--chic-900);
  color: #fff;
  padding: clamp(56px, 7vw, 96px) 0;
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.future .container {
  position: relative; z-index: 2;
}
.future::before {
  content: "";
  position: absolute; inset: -1px;
  background: radial-gradient(60% 80% at 80% 30%, rgba(240,180,120,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.future .grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 36px;
}
@media (max-width: 880px) { .future .grid { grid-template-columns: 1fr; } }
.future-card {
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
}
.future-card .step {
  font-family: var(--mono); font-size: 10.5px;
  color: var(--accent); letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.future-card h3 { color: #fff; margin-bottom: 10px; }
.future-card p { color: rgba(255,255,255,0.6); font-size: 14px; margin: 0; }

/* News strip */
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr; } }
.news-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--chic-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .25s ease;
}
.news-card:hover { border-color: var(--chic-200); box-shadow: var(--shadow-2); transform: translateY(-3px); }
.news-card .visual {
  aspect-ratio: 16/10;
}
.news-card .body { padding: 22px 24px 28px; }
.news-card .tag {
  font-family: var(--mono); font-size: 11px; color: var(--accent-strong);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.news-card h3 { margin: 10px 0 12px; font-size: 19px; line-height: 1.3; }
.news-card .date { font-family: var(--mono); font-size: 11px; color: var(--chic-400); }

/* CTA band */
.cta-band {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  padding: clamp(36px, 4.5vw, 60px);
  background: var(--chic-50);
  border-radius: var(--r-xl);
}
@media (max-width: 880px) { .cta-band { grid-template-columns: 1fr; } }
.cta-band .right { display: flex; justify-content: flex-end; gap: 12px; flex-wrap: wrap; }
@media (max-width: 880px) { .cta-band .right { justify-content: flex-start; } }

/* ===== Hi-fi RDV (Booking flow) ===== */
.rdv {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(28px, 4vw, 48px) 0 clamp(48px, 6vw, 88px);
}
@media (max-width: 980px) { .rdv { grid-template-columns: 1fr; } }
.stepper {
  display: flex; flex-direction: column; gap: 4px;
}
.rdv > aside {
  position: sticky; top: calc(var(--header-h) + 24px);
  align-self: start;
}
@media (max-width: 980px) {
  .rdv > aside { position: static; }
}
.stepper-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 12px 0;
  align-items: center;
  position: relative;
}
.stepper-item .num {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--chic-200);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  color: var(--chic-400);
  transition: all .2s ease;
}
.stepper-item .label {
  font-size: 14px; color: var(--chic-400);
  font-weight: 500;
  transition: color .2s;
}
.stepper-item.done .num {
  background: var(--chic-800); color: #fff; border-color: var(--chic-800);
}
.stepper-item.done .label { color: var(--chic-700); }
.stepper-item.active .num {
  background: var(--accent); color: var(--chic-900); border-color: var(--accent);
}
.stepper-item.active .label { color: var(--chic-900); font-weight: 600; }
.stepper-item:not(:last-child)::after {
  content: ""; position: absolute;
  left: 13.5px; top: 38px; bottom: -4px;
  width: 1px;
  background: var(--chic-100);
}
.stepper-item.done:not(:last-child)::after { background: var(--chic-800); }

.rdv-card {
  background: #fff;
  border: 1px solid var(--chic-100);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
}
.rdv-card h2 { margin-bottom: 12px; }
.rdv-card .lead { margin-bottom: 32px; }
.rdv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 16px;
}
@media (max-width: 720px) { .rdv-grid { grid-template-columns: 1fr 1fr; } }
.rdv-spec {
  text-align: left;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--chic-200);
  border-radius: var(--r);
  cursor: pointer;
  transition: all .15s;
  display: flex; flex-direction: column; gap: 6px;
}
.rdv-spec:hover { border-color: var(--chic-800); background: var(--chic-50); }
.rdv-spec.selected { border-color: var(--chic-800); background: var(--chic-50); }
.rdv-spec.selected .check {
  background: var(--chic-800); color: #fff; border-color: var(--chic-800);
}
.rdv-spec .head { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.rdv-spec .check {
  width: 22px; height: 22px;
  border: 1px solid var(--chic-200);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: transparent;
  transition: all .15s;
  flex-shrink: 0;
}
.rdv-spec.selected .check svg { color: #fff; }
.rdv-spec .name { font-weight: 500; font-size: 14.5px; }
.rdv-spec .pole { font-family: var(--mono); font-size: 10.5px; color: var(--chic-400); text-transform: uppercase; letter-spacing: 0.06em; }

.rdv-actions {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid var(--chic-100);
}

/* Calendar */
.cal {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px;
  margin-top: 16px;
}
@media (max-width: 720px) { .cal { grid-template-columns: 1fr; } }
.cal-month {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.cal-dow {
  font-family: var(--mono); font-size: 10.5px; color: var(--chic-400);
  text-transform: uppercase; letter-spacing: 0.08em;
  text-align: center;
  padding: 8px 0 4px;
}
.cal-day {
  aspect-ratio: 1;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500;
  border-radius: var(--r);
  background: transparent;
  border: 0;
  color: var(--chic-700);
  cursor: pointer;
  transition: all .12s;
}
.cal-day:hover:not(:disabled) { background: var(--chic-50); }
.cal-day:disabled { color: var(--chic-200); cursor: not-allowed; }
.cal-day.selected { background: var(--chic-800); color: #fff; }
.cal-day.weekend { color: var(--chic-300); }

.slots h4 { margin-bottom: 14px; }
.slot-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.slot {
  padding: 10px 12px; font-size: 13px; font-weight: 500;
  font-variant-numeric: tabular-nums;
  border: 1px solid var(--chic-200);
  background: #fff; color: var(--chic-700);
  border-radius: var(--r);
  cursor: pointer; transition: all .12s;
}
.slot:hover { border-color: var(--chic-800); }
.slot.selected { background: var(--chic-800); color: #fff; border-color: var(--chic-800); }

/* RDV summary */
.rdv-summary {
  display: flex; flex-direction: column; gap: 10px;
  padding: 20px;
  background: var(--chic-50);
  border-radius: var(--r);
  font-size: 13px;
  margin-bottom: 28px;
}
.rdv-summary .row { display: flex; justify-content: space-between; gap: 16px; }
.rdv-summary .row .k { color: var(--chic-400); font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }
.rdv-summary .row .v { font-weight: 500; color: var(--chic-900); }

/* Mobile money */
.mm-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
@media (max-width: 560px) { .mm-options { grid-template-columns: 1fr; } }
.mm-card {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--chic-200);
  border-radius: var(--r);
  cursor: pointer;
  display: flex; align-items: center; gap: 14px;
  transition: all .15s;
}
.mm-card:hover { border-color: var(--chic-800); background: var(--chic-50); }
.mm-card.selected { border-color: var(--chic-800); background: var(--chic-50); }
.mm-card .logo {
  width: 40px; height: 40px;
  border-radius: var(--r);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff;
}
.mm-card .name { font-weight: 600; }
.mm-card small { display: block; font-family: var(--mono); font-size: 11px; color: var(--chic-400); }

/* RDV confirm */
.confirm-badge {
  width: 72px; height: 72px;
  background: var(--open-bg); color: var(--open);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}

/* ===== Skeleton for empty grid placeholders ===== */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--chic-400);
}

/* Tracker count summary */
.tracker-summary {
  display: flex; gap: 36px; align-items: center; flex-wrap: wrap;
  padding: 24px 0;
  border-bottom: 1px solid var(--chic-100);
  font-size: 14px;
}
.tracker-summary .item {
  display: flex; align-items: center; gap: 10px;
  color: var(--chic-700);
}
.tracker-summary .item b {
  font-weight: 600; color: var(--chic-800);
  font-variant-numeric: tabular-nums;
}

/* Pole filter active state */
.pole-filter-row {
  display: flex; gap: 6px; flex-wrap: wrap;
  padding-top: 14px;
}

/* Dark mode (optional tweak) */
body.theme-dark {
  background: var(--chic-900);
  color: rgba(255,255,255,0.85);
}
body.theme-dark .nav-wrap {
  background: rgba(10,26,32,0.85);
  border-bottom-color: rgba(255,255,255,0.08);
}
body.theme-dark .nav-link { color: rgba(255,255,255,0.75); }
body.theme-dark .nav-link:hover { color: #fff; background: rgba(255,255,255,0.04); }
body.theme-dark .nav-link.active { color: #fff; }
body.theme-dark .nav-submenu { background: var(--chic-900); border-color: rgba(255,255,255,0.1); }
body.theme-dark .nav-submenu a { color: rgba(255,255,255,0.75); }
body.theme-dark .nav-submenu a:hover { background: rgba(255,255,255,0.05); color: #fff; }
body.theme-dark .specialty-card,
body.theme-dark .pole-card,
body.theme-dark .news-card,
body.theme-dark .rdv-card {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
}
body.theme-dark .specialty-card .name { color: #fff; }
body.theme-dark .h1, body.theme-dark .h2, body.theme-dark .h3 { color: #fff; }
body.theme-dark .input { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); color: #fff; }
body.theme-dark .input::placeholder { color: rgba(255,255,255,0.4); }
body.theme-dark .tracker-toolbar { background: rgba(10,26,32,0.92); border-bottom-color: rgba(255,255,255,0.08); }
body.theme-dark .chip { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
body.theme-dark .chip.active { background: #fff; color: var(--chic-900); border-color: #fff; }
body.theme-dark .hero-stats { border-color: rgba(255,255,255,0.08); }
body.theme-dark .hero-stats .cell { border-color: rgba(255,255,255,0.08); }
body.theme-dark .hero-stats .stat-value { color: #fff; }
body.theme-dark .stat-label { color: rgba(255,255,255,0.5); }
body.theme-dark .crumbs { color: rgba(255,255,255,0.4); }
body.theme-dark .crumbs a { color: rgba(255,255,255,0.6); }
body.theme-dark .crumbs .current { color: #fff; }
body.theme-dark .cta-band { background: rgba(255,255,255,0.03); }
body.theme-dark .innov-grid { border-color: rgba(255,255,255,0.08); }
body.theme-dark .innov-grid .cell { border-color: rgba(255,255,255,0.08); }
body.theme-dark .rule { background: rgba(255,255,255,0.08); }

/* ===== Video gallery ===== */
.video-section {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 24px;
}
@media (max-width: 980px) {
  .video-section { grid-template-columns: 1fr; }
}

.video-main {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--chic-900);
  border: 1px solid var(--chic-100);
}
.video-main .thumb {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.video-main .thumb.placeholder {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 12px, rgba(255,255,255,0.02) 12px 24px),
    linear-gradient(135deg, var(--chic-800) 0%, var(--chic-900) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.video-main::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,26,32,0.85) 100%);
  pointer-events: none;
}
.video-main .play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  background: rgba(255,255,255,0.96);
  color: var(--chic-800);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 3;
  transition: transform .25s ease, background .25s ease;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.4);
}
.video-main:hover .play-btn { transform: translate(-50%, -50%) scale(1.06); background: var(--accent); }
.video-main .info {
  position: absolute; left: 28px; right: 28px; bottom: 26px;
  color: #fff; z-index: 3;
}
.video-main .info .tag {
  font-family: var(--mono); font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 10px;
}
.video-main .info h3 {
  color: #fff; font-weight: 600; font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -0.015em; line-height: 1.18; margin: 0; max-width: 28ch;
}
.video-main .duration {
  position: absolute; top: 18px; right: 18px;
  z-index: 3;
  background: rgba(10,26,32,0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--mono); font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.video-side {
  display: flex; flex-direction: column; gap: 12px;
}
.video-thumb {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--chic-100);
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: all .2s ease;
  text-align: left;
}
.video-thumb:hover {
  border-color: var(--chic-800);
  box-shadow: var(--shadow-2);
  transform: translateY(-2px);
}
.video-thumb.active {
  border-color: var(--chic-800);
  background: var(--chic-50);
}
.video-thumb .thumb-mini {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--r);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 6px, rgba(0,0,0,0.05) 6px 12px),
    linear-gradient(135deg, var(--chic-700), var(--chic-900));
  overflow: hidden;
}
.video-thumb .thumb-mini::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,26,32,0.55) 100%);
}
.video-thumb .play-mini {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.95);
  color: var(--chic-800);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 2;
}
.video-thumb .meta { display: flex; flex-direction: column; gap: 6px; padding-right: 6px; align-self: center; }
.video-thumb .meta .tag {
  font-family: var(--mono); font-size: 10.5px;
  color: var(--accent-strong);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.video-thumb .meta h4 {
  font-size: 14.5px; font-weight: 600; line-height: 1.3;
  margin: 0; letter-spacing: -0.005em;
  color: var(--chic-900);
}
.video-thumb .meta .duration {
  font-family: var(--mono); font-size: 11px; color: var(--chic-400);
  display: inline-flex; align-items: center; gap: 5px;
}

body.theme-dark .video-thumb {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
}
body.theme-dark .video-thumb.active {
  background: rgba(255,255,255,0.06);
}
body.theme-dark .video-thumb .meta h4 { color: #fff; }
body.theme-dark .video-thumb .meta .duration { color: rgba(255,255,255,0.5); }

/* Play triangle inside button (no svg dependency) */
.play-tri {
  width: 0; height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid currentColor;
  margin-left: 4px;
}
.play-tri.sm {
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid currentColor;
  margin-left: 2px;
}
.mobile-nav {
  position: fixed; inset: 0;
  background: rgba(10,26,32,0.5);
  z-index: 100;
  display: none;
}
.mobile-nav.open { display: block; }
.mobile-nav-inner {
  position: absolute; top: 0; right: 0;
  width: min(420px, 92vw);
  height: 100%;
  background: #fff;
  padding: 28px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 22px;
}
.mobile-nav-section { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-section h5 {
  font-family: var(--mono); font-size: 11px; color: var(--chic-400);
  letter-spacing: 0.12em; text-transform: uppercase; margin: 0 0 6px;
  font-weight: 500;
}
.mobile-nav-section a {
  padding: 10px 0; font-size: 15px; color: var(--chic-800);
  border-bottom: 1px solid var(--chic-50);
}

/* ===== Stepper / RDV — separate "Besoin d'aide" box visually ===== */
.rdv-help {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--chic-100);
  border-radius: var(--r);
  font-size: 13px;
  box-shadow: var(--shadow-1);
}
@media (max-width: 980px) {
  .rdv-help { margin-top: 20px; }
}

/* ===== Mobile compactness pass (responsive) ===== */
@media (max-width: 720px) {
  :root {
    --gutter: 18px;
    --header-h: 96px;
  }
  html, body { font-size: 15px; line-height: 1.55; }

  .section { padding: 36px 0; }
  .section.tight { padding: 28px 0; }

  .h1 { font-size: clamp(30px, 8vw, 42px); line-height: 1.1; }
  .h2 { font-size: clamp(24px, 6vw, 32px); line-height: 1.15; }
  .h3 { font-size: 19px; line-height: 1.25; }
  .lead { font-size: 15px; line-height: 1.5; }

  .sec-header { margin-bottom: 24px; gap: 14px; }

  /* Tighter hero */
  .hero-split { min-height: auto; }
  .hero-split .text { padding: 32px var(--gutter) 28px; }
  .hero-split .visual { min-height: 240px; }
  .hero-cine, .hero-cine .content { min-height: 520px; }
  .hero-actions { margin-top: 22px; gap: 10px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }

  /* Grids breathe less */
  .tracker-grid { gap: 12px; }
  .poles-grid { gap: 12px; }
  .innov-grid .cell { padding: 22px 18px; min-height: 0; }

  /* Cards padding */
  .card-padded { padding: 18px; }
  .pole-card { padding: 18px; min-height: 0; }
  .specialty-card { padding: 18px; gap: 10px; }
  .news-card .body { padding: 16px 18px 20px; }
  .cta-band { padding: 26px 22px; gap: 18px; }
  .future-card { padding: 22px; }

  /* RDV booking */
  .rdv { gap: 20px; padding: 20px 0 40px; }
  .rdv-card { padding: 22px; }
  .stepper { flex-direction: row; flex-wrap: wrap; gap: 4px 14px; }
  .stepper-item { padding: 6px 0; grid-template-columns: 24px auto; gap: 8px; }
  .stepper-item .num { width: 24px; height: 24px; font-size: 11px; }
  .stepper-item .label { font-size: 12.5px; }
  .stepper-item:not(:last-child)::after { display: none; }
  .rdv-help { margin-top: 14px; }
  .rdv-actions { margin-top: 24px; padding-top: 20px; }

  /* Photo strip — stacked equally */
  .photo-strip .psg-item { aspect-ratio: 16/10; }

  /* Footer */
  .footer { padding: 40px 0 22px; }
  .footer-top { padding-bottom: 28px; gap: 26px; }

  /* Page hero */
  .page-hero { padding: 32px 0 22px; }

  /* Spacing utility overrides — kill big inline margins */
  .vision-grid { margin-top: 28px !important; gap: 22px !important; }
}

@media (max-width: 480px) {
  .hero-actions .btn { padding: 12px 16px; font-size: 13px; }
  .stepper-item .label { display: none; }
  .stepper-item .num { width: 26px; height: 26px; }
  .stepper { justify-content: flex-start; }
  .rdv-summary { padding: 16px; }
  .rdv-summary .row { flex-direction: column; gap: 4px; }
}
