/* ============================================================
   Centre de Tests Psychotechniques — Feuille de style partagée
   Palette bleue inspirée des sites du secteur (permis / psycho)
   ============================================================ */

:root {
  --blue: #355689;
  --blue-dark: #26406a;
  --blue-light: #eaf1fb;
  --blue-lighter: #f5f8fd;
  --accent: #ff7a2f;
  --accent-dark: #e8641a;
  --green: #1f9d55;
  --green-light: #e7f6ee;
  --text: #1c2430;
  --muted: #5c6b7f;
  --border: #e2e8f2;
  --white: #ffffff;
  --star: #ffb400;
  --shadow-sm: 0 1px 3px rgba(20, 40, 80, .08);
  --shadow-md: 0 8px 24px rgba(20, 40, 80, .10);
  --shadow-lg: 0 18px 48px rgba(20, 40, 80, .16);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1160px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(255,122,47,.35); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(53,86,137,.30); }
.btn-blue:hover { background: var(--blue-dark); }
.btn-ghost { background: #fff; color: var(--blue); border-color: var(--blue); }
.btn-ghost:hover { background: var(--blue-light); }
.btn-sm { padding: 9px 18px; font-size: .9rem; }
.btn-block { width: 100%; }

/* ---------- Bandeau info ---------- */
.topbar {
  background: var(--blue-dark);
  color: #dfe8f6;
  font-size: .86rem;
  padding: 7px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 600; }
.topbar .tb-phone { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 11px; font-weight: 800; color: var(--blue); }
.logo .mark {
  width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(135deg, var(--blue), #4a72b0);
  color: #fff; display: grid; place-items: center; font-size: 1.15rem; font-weight: 900;
  box-shadow: var(--shadow-sm);
}
.logo .brand { line-height: 1.1; }
.logo .brand small { display: block; font-size: .62rem; letter-spacing: .12em; color: var(--muted); font-weight: 600; text-transform: uppercase; }
.logo .brand strong { font-size: 1.02rem; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-weight: 600; color: var(--text); font-size: .95rem; }
.nav a:hover { color: var(--blue); }
.header-cta { display: flex; align-items: center; gap: 12px; }

.menu-toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--blue); cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(74,114,176,.20), transparent 60%),
    linear-gradient(180deg, var(--blue-lighter), #fff);
  padding: 60px 0 40px;
}
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-light); color: var(--green);
  font-weight: 700; font-size: .82rem; padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.hero h1 { font-size: 2.7rem; line-height: 1.12; margin: 0 0 16px; color: var(--blue-dark); letter-spacing: -.01em; }
.hero h1 .hl { color: var(--accent); }
.hero p.lead { font-size: 1.12rem; color: var(--muted); margin: 0 0 26px; max-width: 34ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 10px; margin-top: 24px; font-size: .92rem; color: var(--muted); }
.stars { color: var(--star); letter-spacing: 1px; }

/* Carte réservation dans le hero */
.hero-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); padding: 22px;
}
.hero-card h3 { margin: 0 0 4px; font-size: 1.1rem; color: var(--blue-dark); }
.hero-card .sub { color: var(--muted); font-size: .88rem; margin: 0 0 16px; }
.slot-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 14px; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 10px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.slot-row:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.slot-info .day { font-weight: 700; }
.slot-info .time { color: var(--muted); font-size: .86rem; }
.slot-price { text-align: right; }
.price-old { color: var(--muted); text-decoration: line-through; font-size: .8rem; }
.price-new { color: var(--green); font-weight: 800; font-size: 1.05rem; }

/* ---------- Bandeau partenaire ---------- */
.partner {
  background: var(--accent); color: #fff; text-align: center; padding: 12px 0; font-weight: 700; font-size: .98rem;
}
.partner .container { display: flex; gap: 10px; align-items: center; justify-content: center; flex-wrap: wrap; }
.partner .pill { background: rgba(255,255,255,.22); padding: 3px 12px; border-radius: 999px; font-size: .82rem; }

/* ---------- Sections génériques ---------- */
section { padding: 62px 0; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 42px; }
.eyebrow { color: var(--accent); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
.section-head h2 { font-size: 2rem; color: var(--blue-dark); margin: 8px 0 12px; letter-spacing: -.01em; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }

.alt { background: var(--blue-lighter); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 18px; text-align: center; box-shadow: var(--shadow-sm);
}
.stat .num { font-size: 2rem; font-weight: 900; color: var(--blue); }
.stat .lbl { color: var(--muted); font-size: .92rem; margin-top: 4px; }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature .ico {
  width: 52px; height: 52px; border-radius: 13px; background: var(--blue-light); color: var(--blue);
  display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 16px;
}
.feature h3 { margin: 0 0 8px; font-size: 1.18rem; color: var(--blue-dark); }
.feature p { margin: 0; color: var(--muted); font-size: .96rem; }

/* Étapes */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 20px 24px; background:#fff; border:1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -18px; left: 20px;
  width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color:#fff;
  font-weight: 900; display: grid; place-items: center; box-shadow: 0 6px 16px rgba(255,122,47,.35);
}
.step h3 { margin: 6px 0 8px; font-size: 1.05rem; color: var(--blue-dark); }
.step p { margin: 0; color: var(--muted); font-size: .92rem; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background:#fff; border:1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--blue-dark);
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--accent); font-weight: 400; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--muted); }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; text-align: center; }
.cta-band h2 { color:#fff; font-size: 2rem; margin: 0 0 12px; }
.cta-band p { color: #d8e3f5; font-size: 1.08rem; margin: 0 0 26px; }

/* ---------- Page ville : liste de dates ---------- */
.page-hero { background: linear-gradient(180deg, var(--blue-lighter), #fff); padding: 46px 0 30px; }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--blue); }
.page-hero h1 { font-size: 2.2rem; color: var(--blue-dark); margin: 0 0 10px; }
.page-hero h1 .price-hl { color: var(--accent); }
.page-hero .intro { color: var(--muted); max-width: 62ch; font-size: 1.03rem; }

.city-layout { display: grid; grid-template-columns: 1fr 330px; gap: 32px; align-items: start; }

.dates-toolbar {
  display:flex; align-items:center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.dates-toolbar .count { font-weight: 700; color: var(--blue-dark); }
.legend { font-size: .82rem; color: var(--muted); }

.date-card {
  background:#fff; border:1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); margin-bottom: 16px; overflow: hidden;
}
.date-card .date-head {
  display:flex; align-items:center; gap: 14px;
  padding: 14px 20px; background: var(--blue-light); border-bottom: 1px solid var(--border);
}
.date-card .date-head .dnum {
  background:#fff; color: var(--blue); border:1px solid var(--border); border-radius: 10px;
  width: 52px; text-align:center; padding: 6px 0; box-shadow: var(--shadow-sm);
}
.date-card .date-head .dnum .d { font-size: 1.3rem; font-weight: 900; line-height: 1; }
.date-card .date-head .dnum .m { font-size: .68rem; text-transform: uppercase; color: var(--muted); letter-spacing: .06em; }
.date-card .date-head .dtitle { font-weight: 800; color: var(--blue-dark); text-transform: capitalize; }
.date-card .date-head .dtitle small { display:block; font-weight:600; color: var(--muted); text-transform: none; font-size: .84rem; }

.slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 16px 20px; }
.slot {
  border:1px solid var(--border); border-radius: 12px; padding: 14px; text-align:center;
  transition: border-color .15s ease, box-shadow .15s ease, transform .12s ease;
}
.slot:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.slot .time { font-weight: 800; color: var(--blue-dark); font-size: 1.05rem; }
.slot .places { font-size: .74rem; color: var(--muted); margin: 2px 0 8px; }
.slot .places.low { color: var(--accent-dark); font-weight: 700; }
.slot .prices { margin-bottom: 10px; }
.slot .price-old { display:block; }
.slot .price-new { display:block; }
.slot .after { font-size: .68rem; color: var(--muted); }

/* Sidebar centre */
.side-card { background:#fff; border:1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 22px; position: sticky; top: 90px; }
.side-card h3 { margin: 0 0 4px; color: var(--blue-dark); font-size: 1.15rem; }
.side-card .rating { color: var(--muted); font-size: .88rem; margin-bottom: 14px; }
.side-card .addr { display:flex; gap: 10px; align-items:flex-start; color: var(--text); font-size: .95rem; margin-bottom: 8px; }
.side-card .addr .ico { color: var(--blue); }
.side-card .map {
  height: 150px; border-radius: 12px; margin: 14px 0; border:1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(53,86,137,.12), rgba(74,114,176,.06)),
    repeating-linear-gradient(0deg, #eef3fa 0 22px, #e6edf7 22px 24px),
    repeating-linear-gradient(90deg, #eef3fa 0 22px, #e6edf7 22px 24px);
  display:grid; place-items:center; color: var(--blue); font-weight:700;
}
.side-card ul { list-style:none; padding:0; margin: 14px 0 0; }
.side-card ul li { display:flex; gap:9px; align-items:center; color: var(--muted); font-size: .9rem; padding: 5px 0; }
.side-card ul li .ok { color: var(--green); font-weight: 900; }

/* ---------- Footer ---------- */
.footer { background: var(--blue-dark); color: #cdd9ec; padding: 54px 0 26px; font-size: .92rem; }
.footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 34px; }
.footer h4 { color:#fff; font-size: .98rem; margin: 0 0 14px; }
.footer a { display:block; color:#cdd9ec; padding: 4px 0; }
.footer a:hover { color:#fff; }
.footer .flogo { display:flex; align-items:center; gap:10px; color:#fff; font-weight:800; margin-bottom: 12px; }
.footer .flogo .mark { width:36px; height:36px; border-radius:10px; background: rgba(255,255,255,.14); display:grid; place-items:center; }
.footer .foot-note { color:#9fb3d4; max-width: 40ch; }
.footer .fbar { border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px; display:flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color:#9fb3d4; font-size:.85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .city-layout { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .nav, .header-cta .btn-ghost { display: none; }
  .menu-toggle { display: block; }
  .nav.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left:0; right:0;
    background:#fff; border-bottom: 1px solid var(--border); padding: 18px 22px; gap: 16px;
  }
  .footer .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .slots { grid-template-columns: repeat(2, 1fr); }
  .footer .cols { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
}

/* ============================================================
   Recherche de ville + Carte de France
   ============================================================ */

/* Barre de recherche */
.city-search { position: relative; max-width: 560px; margin-top: 22px; }
.city-search .cs-field {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 2px solid var(--border); border-radius: 999px;
  padding: 6px 6px 6px 18px; box-shadow: var(--shadow-md);
  transition: border-color .15s ease;
}
.city-search .cs-field:focus-within { border-color: var(--blue); }
.city-search .cs-ico { color: var(--blue); font-size: 1.1rem; }
.city-search input {
  flex: 1; border: 0; outline: 0; font-size: 1.02rem; font-family: inherit; color: var(--text);
  background: transparent; min-width: 0;
}
.city-search input::placeholder { color: #9aa7b8; }
.autocomplete {
  display: none; position: absolute; z-index: 40; left: 0; right: 0; top: calc(100% + 8px);
  background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-lg);
  overflow: hidden; padding: 6px;
}
.ac-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%;
  background: none; border: 0; text-align: left; cursor: pointer; padding: 11px 14px; border-radius: 10px;
  font-family: inherit; font-size: .96rem; color: var(--text);
}
.ac-item:hover, .ac-item.on { background: var(--blue-light); }
.ac-item .ac-city { font-weight: 700; }
.ac-item .ac-dep { color: var(--muted); font-size: .84rem; }
.cs-hint { font-size: .82rem; color: var(--muted); margin-top: 10px; padding-left: 6px; }

/* Section carte */
.map-wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px; align-items: start; }
.map-svg-box { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 14px; }
.map-svg-box svg { width: 100%; height: auto; display: block; }
.dep {
  fill: #dfe8f6; stroke: #fff; stroke-width: 1.1; cursor: pointer;
  transition: fill .12s ease;
}
.dep:hover { fill: var(--blue); }
.dep.sel { fill: var(--accent); }
.dlab { font-size: 11px; fill: var(--blue-dark); pointer-events: none; text-anchor: middle; font-weight: 600; opacity: .0; }
.map-svg-box.show-labels .dlab { opacity: .55; }
.map-tooltip {
  display: none; position: absolute; z-index: 30; pointer-events: none;
  background: var(--blue-dark); color: #fff; padding: 8px 12px; border-radius: 10px;
  font-size: .84rem; box-shadow: var(--shadow-md); max-width: 220px;
}
.map-tooltip span { color: #cfe0f7; }

.map-panel { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 26px; position: sticky; top: 90px; }
.map-panel .mp-empty { color: var(--muted); }
.map-panel .mp-code { display: inline-block; background: var(--blue-light); color: var(--blue); font-weight: 800; padding: 3px 12px; border-radius: 999px; font-size: .85rem; }
.map-panel .mp-name { font-size: 1.5rem; font-weight: 800; color: var(--blue-dark); margin: 12px 0 8px; }
.map-panel p { color: var(--muted); font-size: .96rem; }
.map-panel .btn { margin-top: 12px; }

@media (max-width: 900px) {
  .map-wrap { grid-template-columns: 1fr; }
  .map-panel { position: static; }
}

/* ============================================================
   Pages de paiement
   ============================================================ */
.pay-wrap { max-width: 560px; margin: 40px auto; }
.pay-card { background:#fff; border:1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.pay-head { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color:#fff; padding: 26px 30px; }
.pay-head h1 { margin:0 0 4px; font-size: 1.4rem; }
.pay-head p { margin:0; color:#d8e3f5; font-size:.92rem; }
.pay-body { padding: 28px 30px; }
.pay-line { display:flex; justify-content:space-between; align-items:flex-start; gap:14px; padding:12px 0; border-bottom:1px dashed var(--border); }
.pay-line:last-of-type { border-bottom:0; }
.pay-line .k { color: var(--muted); font-size:.95rem; }
.pay-line .v { font-weight:700; text-align:right; }
.pay-total { display:flex; justify-content:space-between; align-items:center; margin-top:14px; padding-top:16px; border-top:2px solid var(--border); }
.pay-total .k { font-weight:800; color: var(--blue-dark); font-size:1.05rem; }
.pay-total .v { font-weight:900; color: var(--green); font-size:1.7rem; }
.pay-note { background: var(--blue-lighter); border:1px solid var(--border); border-radius:12px; padding:12px 14px; margin-top:18px; font-size:.85rem; color: var(--muted); }
.pay-test { background: #fff7ed; border:1px solid #fed7aa; color:#9a5b1a; border-radius:12px; padding:12px 14px; margin-top:14px; font-size:.82rem; }
.pay-test code { background:#fff; border:1px solid #fed7aa; border-radius:6px; padding:1px 6px; font-weight:700; }
.pay-err { display:none; background:#fef2f2; border:1px solid #f6c9c9; color:#a12626; border-radius:12px; padding:12px 14px; margin-top:14px; font-size:.88rem; }
.pay-secure { display:flex; align-items:center; justify-content:center; gap:8px; color:var(--muted); font-size:.82rem; margin-top:16px; }
.pay-secure b { color: var(--blue-dark); }
.pay-status-ico { width:76px; height:76px; border-radius:50%; display:grid; place-items:center; margin:0 auto 18px; font-size:2.2rem; }
.pay-status-ico.ok { background: var(--green-light); color: var(--green); }
.pay-status-ico.ko { background:#fef2f2; color:#c0392b; }
.pay-center { text-align:center; }

/* Champs du formulaire de paiement intégré (Stripe Elements) */
.pay-field-label { display:block; font-size:.82rem; font-weight:700; color:var(--blue-dark); margin-bottom:6px; }
.pay-input {
  width:100%; padding:12px 14px; border:1px solid #e6e6e6; border-radius:10px;
  font-size:1rem; font-family:inherit; color:var(--text); background:#fff; outline:none;
  transition:border-color .15s ease, box-shadow .15s ease;
}
.pay-input:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(53,86,137,.12); }
#payment-element { margin-top:2px; }

/* Prix barré à côté du total à régler */
.pay-old-inline { text-decoration: line-through; color: var(--muted); font-weight: 700; font-size: 1rem; margin-right: 10px; }
.pay-reduit-note { text-align: right; color: var(--green); font-size: .82rem; font-weight: 700; margin-top: -8px; margin-bottom: 4px; }

/* Page de remerciement — détail du prix + prochaines étapes */
.pay-breakdown { margin-top: 6px; padding: 6px 0; border-top: 1px dashed var(--border); }
.success-steps { text-align: left; background: var(--blue-lighter); border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; margin-top: 20px; }
.success-steps h3 { margin: 0 0 10px; font-size: 1rem; color: var(--blue-dark); }
.success-steps ul { list-style: none; padding: 0; margin: 0; }
.success-steps li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .93rem; padding: 5px 0; }
.success-steps li .ok { color: var(--green); font-weight: 900; }

/* Correctif mobile : le badge du hero ne doit pas déborder */
.hero-badge { max-width: 100%; }
@media (max-width: 600px) {
  .hero-badge { border-radius: 14px; align-items: flex-start; line-height: 1.35; }
}

/* Correctif mobile (suite) : autoriser les colonnes du hero à rétrécir */
@media (max-width: 900px) {
  .hero-text, .hero-card { min-width: 0; }
}
