/* HelloDrive - Global styles */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;1,500&display=swap");

:root{
  --white:#FFFFFF;
  --sky:#3B9EE8;
  --text:#111111;
  --muted:#5b6470;
  --bg:#ffffff;
  --card:#ffffff;
  --line:rgba(17,17,17,.10);
  --shadow: 0 14px 30px rgba(17,17,17,.10);
  --shadow-soft: 0 10px 22px rgba(17,17,17,.08);
  --radius: 18px;
  --radius-sm: 14px;
  --container: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
}
body.page-home{
  background: #0b0f14;
  overflow-x: hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input{font:inherit}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin-inline:auto;
}

.topbar{
  background: #0b0f14;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
}
.topbar a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
}
.topbar .left{display:flex;gap:10px;flex-wrap:wrap}
.icon{
  width:18px;height:18px;display:inline-grid;place-items:center;
}

/* Topbar ticker */
.ticker{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 10px 0;
}
.ticker-inner{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0;
  padding: 10px 12px;
  border-radius: 0;
  background: #0b0f14;
  border: 0;
  overflow:hidden;
}
.ticker-dot{
  width:8px;height:8px;border-radius:999px;
  background: rgba(59,158,232,.95);
  box-shadow: none;
  flex: 0 0 auto;
  display:none;
}
.ticker-text{
  font-weight: 800;
  letter-spacing: .01em;
  text-align:center;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
  transition: opacity .25s ease, transform .25s ease;
}
.ticker-text.is-out{opacity:0; transform: translateX(-14px)}
.ticker-text.is-in{opacity:1; transform: translateX(0)}

.navbar{
  position:sticky;
  top:0;
  z-index:50;
  width: min(var(--container), calc(100% - 34px));
  margin: 10px auto 0;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(17,17,17,.10);
}
.navbar .container{
  width: 100%;
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  gap:14px;
}
.brand{
  font-weight:800;
  letter-spacing:-.02em;
  font-size:20px;
}
.brand .dot{color:var(--sky)}

.nav-links{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav-links a{
  padding:10px 12px;
  border-radius:999px;
  color:rgba(17,17,17,.85);
  font-weight:600;
  font-size:14px;
}
.nav-links a.active,
.nav-links a:hover{
  background: rgba(59,158,232,.12);
  color: var(--text);
}
.nav-cta{
  display:flex;
  align-items:center;
  gap:10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(17,17,17,.12);
  background: var(--white);
  cursor:pointer;
  font-weight:700;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  user-select:none;
}
.btn:hover{transform: translateY(-1px); box-shadow: var(--shadow-soft)}
.btn-primary{
  background: linear-gradient(135deg, var(--sky), #69c1ff);
  border-color: rgba(59,158,232,.35);
  color: white;
}
.btn-ghost{
  background: rgba(17,17,17,.04);
}
.btn-dark{
  background: #0b0f14;
  border-color: rgba(255,255,255,.08);
  color: white;
}
.btn-sm{padding:10px 14px; font-size:14px}

.hamburger{
  display:none;
  width:42px;height:42px;
  border-radius:12px;
  border:1px solid rgba(17,17,17,.12);
  background: var(--white);
  cursor:pointer;
}
.hamburger span{
  display:block;
  width:18px;height:2px;
  background: var(--text);
  margin:4px auto;
  border-radius:2px;
}

.mobile-drawer{
  display:none;
  border-top:1px solid var(--line);
  padding:10px 0 14px;
}
.mobile-drawer a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 10px;
  border-radius:12px;
  font-weight:700;
}
.mobile-drawer a:hover{background: rgba(59,158,232,.10)}

/* HERO */
.hero{
  position:relative;
  overflow:hidden;
  background: radial-gradient(1200px 600px at 20% 20%, rgba(255,255,255,.24), transparent 55%),
              linear-gradient(135deg, var(--sky), #6ec6ff);
  color: white;
}
.hero::before{
  content:"";
  position:absolute;
  inset:-40px;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.45)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=2200&q=70");
  background-size: cover;
  background-position: center;
  filter: saturate(1.1);
  transform: scale(1.06);
}
.hero .container{
  position:relative;
  padding: 72px 0 34px;
}
.page-home{
  --home-nav-stack: clamp(76px, 11vw, 96px);
}
.page-home .hero.hero-home{
  margin-top: calc(-1 * var(--home-nav-stack));
  padding-top: 0;
  background: #0b0f14;
  position: relative;
  z-index: 0;
  min-height: clamp(620px, 88svh, 980px);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
.page-home .hero.hero-home::before{
  display:none;
}
.page-home .hero.hero-home .container{
  padding:
    calc(var(--home-nav-stack) + clamp(52px, 9vw, 92px))
    0 52px;
}
.hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
}
.hero-slide{
  position:absolute;
  inset:-40px;
  background-size: cover;
  background-position: center;
  opacity:0;
  transform: scale(1.06);
  filter: saturate(1.05);
  transition: opacity 900ms ease;
}
.page-home .hero-home .hero-slide{
  filter: saturate(1.08) brightness(1.06);
}
.hero-slide.is-active{
  opacity: 1;
}
.hero-scrim{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(1000px 520px at 18% 20%, rgba(0,0,0,.38), transparent 62%),
    linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.72));
}
.page-home .hero-home .hero-scrim{
  background:
    radial-gradient(980px 520px at 24% 20%, rgba(0,0,0,.22), transparent 56%),
    linear-gradient(to bottom, rgba(0,0,0,.14), rgba(0,0,0,.4));
}
.page-home .hero.hero-home > .container{
  position:relative;
  z-index:2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:center;
}
.hero-grid.hero-single{
  grid-template-columns: 1fr;
  width: min(860px, 100%);
  margin-inline: auto;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  font-weight:800;
  letter-spacing:.06em;
  font-size:12px;
}
.hero h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.05;
  letter-spacing:-.03em;
}
.hero p{
  margin:0 0 18px;
  font-size:16px;
  color: rgba(255,255,255,.92);
  max-width: 54ch;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.hero-title{
  margin:14px 0 10px;
  font-size: clamp(1.75rem, 8vw, 2.25rem);
  line-height:1.08;
  letter-spacing:-.03em;
  font-weight: 900;
  max-width: 100%;
  overflow-wrap: break-word;
}
@media (min-width: 768px){
  .hero-title{
    font-size: clamp(2.75rem, 4.5vw, 3.75rem);
    line-height:1.04;
  }
}
@media (min-width: 1024px){
  .hero-title{
    font-size: clamp(3.25rem, 4.6vw, 4.5rem);
    line-height:1.02;
  }
}
.hero-em{
  font-family: "Playfair Display", ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;
}
.hero-lede{
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,.92);
  max-width: min(58ch, 100%);
  white-space: normal;
  overflow-wrap: break-word;
}
.hero-home .hero-grid > div{
  min-width: 0;
}
.hero-home-actions{
  display:flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items:center;
  gap: clamp(14px, 2.5vw, 22px);
  max-width: 100%;
}
.hero-home-actions .btn-hero-how{
  flex-shrink: 0;
  white-space: normal;
  background: #fff;
  color: #111;
  border-color: rgba(17, 17, 17, 0.08);
  padding: 12px 22px;
  font-weight: 700;
  box-shadow: none;
}
.hero-home-actions .btn-hero-how:hover{
  background: #fff;
  color: #111;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}
.hero-home-actions .hero-vehicles-link{
  flex: 0 1 auto;
  white-space: normal;
  align-self: center;
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  text-decoration-color: rgba(255, 255, 255, 0.9);
}
.hero-home-actions .hero-vehicles-link:hover{
  text-decoration: underline;
  text-decoration-color: #fff;
  opacity: 0.95;
}
.hero-secondary{
  color: rgba(255,255,255,.94);
  font-weight: 800;
}
.hero-secondary:hover{text-decoration: underline}
.hero-home .hero-grid{
  grid-template-columns: 1fr;
}
.hero-card{
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

/* Booking card (home hero) */
.booking-card{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 20px;
  padding: 18px;
  color: var(--text);
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
}
.booking-kicker{
  font-size: 11px;
  letter-spacing: .16em;
  font-weight: 900;
  color: rgba(17,17,17,.55);
}
.booking-title{
  font-weight: 900;
  letter-spacing: -.02em;
  margin-top: 6px;
}
.booking-sub{
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  margin-top: 4px;
}
.booking-fields{margin-top: 14px; display:grid; gap: 12px}
.booking-field label{
  display:block;
  font-size: 12px;
  font-weight: 900;
  color: rgba(17,17,17,.62);
  margin: 0 0 6px;
}
.booking-input{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  border:1px solid rgba(17,17,17,.12);
  background: white;
}
.booking-ico{opacity:.8}
.booking-input input,
.booking-input select{
  border:0;
  outline:0;
  width:100%;
  padding:0;
  background: transparent;
}
.booking-split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.booking-minirow{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.booking-mini{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border:1px solid rgba(17,17,17,.12);
  background: white;
}
.booking-mini input,
.booking-mini select{
  border:0;
  outline:0;
  width:100%;
  padding:0;
  background: transparent;
}
.booking-btn{
  width:100%;
  margin-top: 14px;
  padding: 14px 16px;
}
.booking-note{
  margin-top: 10px;
  font-size: 12.5px;
  color: rgba(17,17,17,.60);
  font-weight: 800;
}
.hero-card .mini{
  display:flex;
  gap:12px;
  align-items:center;
}
.hero-card .mini img{
  width: 92px;
  height: 64px;
  object-fit:cover;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.22);
}
.hero-card .mini strong{display:block; font-size:14px}
.hero-card .mini span{display:block; opacity:.9; font-size:13px}
.page-home .hero-home .stats{
  width: min(100%, 508px);
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 16px 6px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-top: 1px solid rgba(255,255,255,.42);
  background: rgba(6, 8, 11, .55);
  backdrop-filter: blur(14px) saturate(0.82);
  -webkit-backdrop-filter: blur(14px) saturate(0.82);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 12px 36px rgba(0, 0, 0, .28);
  color: #fff;
}
.page-home .hero-home .stat{
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 6px 8px;
  text-align: center;
  position: relative;
}
.page-home .hero-home .stat + .stat::before{
  content: "";
  position: absolute;
  left: 0;
  top: 14%;
  height: 72%;
  width: 1px;
  background: rgba(255,255,255,.35);
}
.page-home .hero-home .stat b{
  display: block;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.page-home .hero-home .stat span{
  display: block;
  margin-top: 6px;
  opacity: 0.93;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* KPI row (used outside hero, e.g. À propos) */
.kpi-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.kpi-card{
  background: rgba(255,255,255,.10);
  border:1px solid rgba(17,17,17,.10);
  border-radius: 16px;
  padding: 14px 14px;
}
.kpi-card b{
  display:block;
  font-size: 22px;
  letter-spacing:-.02em;
}
.kpi-card span{opacity:.9; font-weight:600; font-size:13px}

/* SECTIONS */
.section{padding: 70px 0}
.section-muted{background: #f5f7fb}
.section .section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom: 24px;
}
.section h2{
  margin:0;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing:-.02em;
}
.section .lead{
  margin:0;
  color: var(--muted);
  max-width: 70ch;
}

.conditions-rental{
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 74vh, 780px);
  padding: clamp(52px, 8vw, 92px) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d8dee8;
}
.conditions-rental__bg{
  position: absolute;
  inset: -12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  filter: saturate(1.06) brightness(0.78);
}
.conditions-rental__scrim{
  position: absolute;
  inset: 0;
  /* Voile léger en plus du assombrissement de la photo pour le contraste du texte. */
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(14, 18, 28, 0.35) 48%,
    rgba(6, 10, 18, 0.48) 100%
  );
  pointer-events: none;
}
.conditions-rental__inner{
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.conditions-rental__head{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px !important;
  width: 100%;
}
.conditions-rental__head > div{
  max-width: 40rem;
  margin-inline: auto;
}
.conditions-rental h2{
  color: #fff;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 6px 32px rgba(0, 0, 0, 0.45);
}
.conditions-rental .lead{
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45), 0 4px 24px rgba(0, 0, 0, 0.28);
}

.conditions-panel{
  max-width: 38rem;
  margin-inline: auto;
  padding: 26px 22px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.conditions-panel__age{
  width: 100%;
  margin: 0 0 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
.conditions-panel__list{
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.conditions-panel__row{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  max-width: 30rem;
  margin-inline: auto;
}
.conditions-panel__ico{
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.95);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}
.conditions-panel__bar{
  flex: 1 1 auto;
  min-width: 0;
  padding: 12px 16px;
  text-align: center;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.conditions-panel__note{
  margin: 18px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.75);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  width: 100%;
  max-width: 36rem;
  text-align: left;
  font-size: 12.5px;
  line-height: 1.55;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.conditions-panel__note-mark{
  flex: 0 0 auto;
  font-weight: 900;
  font-style: normal;
  opacity: 0.95;
}

/* Comment ça marche — variante HelloDrive (bleu, textes propriétaires) */
.how-works{
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 52%);
  padding: clamp(64px, 10vw, 96px) 0;
}
.how-works-grid{
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.how-works-visual{
  position: relative;
  /* Carré affiché : même largeur/hauteur, taille plus petite (plafond commun aux 2 photos). */
  --how-photo-side: min(420px, max(160px, 26vw));
  min-height: calc(var(--how-photo-side) * 1.18 + 20px);
  overflow: visible;
}
.how-works-visual__curve{
  position: absolute;
  inset: 8% 4% 6% 2%;
  border: 1px solid rgba(59, 158, 232, 0.18);
  border-radius: 48% 55% 44% 58% / 52% 48% 54% 46%;
  pointer-events: none;
  opacity: 0.65;
}
.how-works-visual__dots{
  position: absolute;
  width: clamp(72px, 14vw, 120px);
  height: clamp(72px, 14vw, 120px);
  border-radius: 14px;
  background-image: radial-gradient(circle, rgba(59, 158, 232, 0.35) 1.35px, transparent 1.35px);
  background-size: 11px 11px;
  opacity: 0.55;
  pointer-events: none;
}
.how-works-visual__dots--tl{
  top: -4px;
  left: -6px;
}
.how-works-visual__dots--br{
  right: -4px;
  bottom: 12px;
}
.how-works-visual__splash{
  position: absolute;
  width: clamp(56px, 10vw, 88px);
  height: clamp(56px, 10vw, 88px);
  pointer-events: none;
  opacity: 0.9;
}
.how-works-visual__splash--1{
  top: 6%;
  right: 6%;
  background: radial-gradient(ellipse 62% 50% at 50% 50%, rgba(59, 158, 232, 0.34) 0%, transparent 68%);
  filter: blur(0.5px);
  transform: rotate(-14deg);
}
.how-works-visual__splash--2{
  bottom: 14%;
  left: 4%;
  background: radial-gradient(ellipse 54% 44% at 50% 50%, rgba(17, 17, 17, 0.09) 0%, transparent 70%);
  transform: rotate(22deg);
}
.how-works-visual__photos{
  position: relative;
  width: min(640px, 100%);
  height: calc(var(--how-photo-side) * 1.12);
  margin-inline: auto;
}
.how-works-img{
  position: absolute;
  box-sizing: border-box;
  width: var(--how-photo-side);
  height: var(--how-photo-side);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: clamp(16px, 3vw, 26px);
  box-shadow:
    0 20px 48px rgba(17, 17, 17, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset,
    0 2px 0 rgba(59, 158, 232, 0.12);
}
.how-works-img--back{
  left: 0;
  top: 10%;
  z-index: 1;
}
.how-works-img--front{
  right: 0;
  bottom: 0;
  top: auto;
  transform: rotate(3deg);
  z-index: 2;
}
.how-works-copy{
  padding: 10px 0;
}
.how-works-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(21, 80, 130, 0.95);
  background: linear-gradient(180deg, rgba(239, 248, 255, 1) 0%, rgba(222, 240, 255, 1) 100%);
  border: 1px solid rgba(59, 158, 232, 0.28);
}
.how-works-badge__ico{
  flex-shrink: 0;
  opacity: 0.92;
}
.how-works-title{
  margin: 0 0 16px;
  font-size: clamp(24px, 2.85vw, 36px);
  line-height: 1.14;
  letter-spacing: -0.025em;
  font-weight: 900;
  color: #0f1419;
  max-width: min(100%, 40ch);
}
.how-works-lead{
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 1.64;
  color: #56606d;
  max-width: 48ch;
}
.how-works-steps{
  counter-reset: howstep;
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: clamp(18px, 2.8vw, 26px);
  max-width: 52ch;
}
.how-works-steps li{
  counter-increment: howstep;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.52;
  color: #596273;
}
.how-works-steps li::before{
  content: counter(howstep);
  grid-column: 1;
  grid-row: 1;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--sky), #69c1ff);
  box-shadow:
    0 8px 20px rgba(59, 158, 232, 0.25),
    0 2px 0 rgba(255, 255, 255, 0.25) inset;
}
.how-works-steps__text{
  grid-column: 2;
  grid-row: 1;
  display: block;
  margin: 0;
  /* Aligne la 1re ligne de texte avec le centre optique du carré (44px de haut). */
  padding-top: 10px;
}
/* Étape 1 : comme avant (flex + sans décalage du texte). */
.how-works-steps > li:first-child{
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 16px;
}
.how-works-steps > li:first-child::before{
  grid-column: unset;
  grid-row: unset;
  flex: 0 0 44px;
}
.how-works-steps > li:first-child .how-works-steps__text{
  flex: 1;
  min-width: 0;
  grid-column: unset;
  grid-row: unset;
  padding-top: 0;
}
.how-works-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, var(--sky), #69c1ff);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    0 2px 0 rgba(0, 0, 0, 0.08) inset,
    0 14px 32px rgba(59, 158, 232, 0.32);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.how-works-cta:hover{
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 2px 0 rgba(0, 0, 0, 0.06) inset,
    0 18px 40px rgba(59, 158, 232, 0.4);
}
.how-works-cta__ico{
  display: inline-flex;
  opacity: 0.95;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.grid-4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.grid-5{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.card{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(17,17,17,.06);
  padding: 18px;
}
.card .pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(59,158,232,.10);
  border:1px solid rgba(59,158,232,.18);
  font-weight:800;
}
.card h3{margin:14px 0 8px; font-size: 18px; letter-spacing:-.01em}
.card p{margin:0; color: var(--muted)}
.step{
  position:relative;
  padding-top: 16px;
}
.step .num{
  width: 42px;height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky), #6ec6ff);
  display:grid;
  place-items:center;
  color:white;
  font-weight:900;
  box-shadow: 0 12px 24px rgba(59,158,232,.25);
}
.feature-icon{
  width:44px;height:44px;
  border-radius: 16px;
  background: rgba(17,17,17,.04);
  border:1px solid rgba(17,17,17,.08);
  display:grid;
  place-items:center;
}

/* Témoignages (accueil) — bande claire, palette HelloDrive */
.page-home .section-testimonials{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(720px 380px at 88% -12%, rgba(59,158,232,.14), transparent 58%),
    radial-gradient(480px 280px at -8% 102%, rgba(59,158,232,.08), transparent 55%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 48%, #f4f8fc 100%);
  color:var(--text);
}
.page-home .section-testimonials .section-head{
  justify-content:center;
  align-items:center;
  text-align:center;
}
.page-home .section-testimonials .section-head > div{
  max-width:min(70ch, 100%);
  margin-inline:auto;
}
.page-home .section-testimonials h2{
  color:var(--text);
}
.page-home .section-testimonials .lead{
  color:var(--muted);
  margin-inline:auto;
}
.page-home .section-testimonials .card.review{
  background:var(--white);
  border:1px solid var(--line);
  box-shadow:
    0 16px 40px rgba(17,17,17,.07),
    0 0 0 1px rgba(59,158,232,.06);
}
.page-home .section-testimonials .review h3{
  color:var(--text);
}

/* Testimonials */
.testimonials{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.review .stars{color:#ffd166; letter-spacing:2px}
.review .meta{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top: 14px;
}
.avatar{
  width:42px;height:42px;
  border-radius: 14px;
  background: rgba(59,158,232,.14);
  border:1px solid rgba(59,158,232,.22);
  display:grid;
  place-items:center;
  font-weight:900;
  color: #0b2f4b;
}
.review .name{font-weight:800}
.review .role{color: var(--muted); font-size:13px}

/* Avis (Firestore) */
.avis-empty{
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}
.avis-form-wrap{
  margin-top: 18px;
  background: rgba(255,255,255,.86);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(17,17,17,.05);
  padding: 18px;
}
.avis-form-title{
  margin:0 0 10px;
  font-size:16px;
  letter-spacing:-.01em;
}
.avis-form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.avis-form textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(17,17,17,.14);
  background: var(--white);
  resize: vertical;
}
.stars-input{
  display:flex;
  gap:6px;
  align-items:center;
  padding: 10px 12px;
  border-radius: 14px;
  border:1px solid rgba(17,17,17,.14);
  background: var(--white);
}
.stars-input button{
  width:34px;
  height:34px;
  border-radius: 12px;
  border:1px solid rgba(17,17,17,.08);
  background: rgba(17,17,17,.04);
  cursor:pointer;
  font-weight:900;
  color: rgba(17,17,17,.35);
  transition: transform .12s ease, background .12s ease, border-color .12s ease, color .12s ease;
}
.stars-input button:hover{transform: translateY(-1px)}
.stars-input button.is-on{
  background: rgba(255,209,102,.18);
  border-color: rgba(255,209,102,.45);
  color:#ffd166;
}
.avis-form-actions{
  margin-top: 12px;
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.avis-status{
  font-size:13px;
  font-weight:800;
  color: var(--muted);
}
.avis-status[data-kind="ok"]{color:#0b6b2d}
.avis-status[data-kind="error"]{color:#b42318}

/* CTA */
.cta{
  background:
    radial-gradient(1000px 500px at 80% 10%, rgba(255,255,255,.22), transparent 58%),
    linear-gradient(135deg, var(--sky), #69c1ff);
  color: white;
  border-radius: 28px;
  padding: 34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  overflow:hidden;
  position:relative;
}
.cta::after{
  content:"";
  position:absolute;
  inset:-40px -120px -120px -120px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.26), transparent 55%);
  transform: rotate(-10deg);
  pointer-events:none;
}
.cta > *{position:relative}
.cta h2{margin:0 0 6px}
.cta p{margin:0; opacity:.92}
.cta .actions{display:flex; gap:12px; flex-wrap:wrap}

/* CTA bandeau accueil (après avis) — dégradé bleu site */
.cta-promo-section{
  position:relative;
  overflow:hidden;
  color:#fff;
  padding-top: clamp(56px, 7vw, 80px);
  padding-bottom: clamp(56px, 7vw, 80px);
}
.cta-promo-section__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(115deg, rgba(255,255,255,.1) 0%, transparent 45%),
    radial-gradient(1000px 520px at 82% 6%, rgba(255,255,255,.22), transparent 58%),
    linear-gradient(135deg, var(--sky), #69c1ff);
  pointer-events:none;
}
.cta-promo-section__bg::after{
  content:"";
  position:absolute;
  inset:-40px -120px -120px -120px;
  background: radial-gradient(circle at 28% 32%, rgba(255,255,255,.28), transparent 55%);
  transform: rotate(-10deg);
  pointer-events:none;
  opacity:.95;
}
.cta-promo{
  position:relative;
  text-align:center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-promo__badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0 0 18px;
  padding:8px 16px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#fff;
  background: rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
}
.cta-promo__badge-icon{font-size:14px; line-height:1}
.cta-promo-section .cta-promo__title{
  margin:0 0 12px;
  font-size: clamp(28px, 4.2vw, 40px);
  line-height:1.12;
  letter-spacing:-.02em;
  font-weight:900;
  color:#fff;
}
.cta-promo-section .cta-promo__lead{
  margin:0 0 28px;
  font-size: clamp(15px, 2vw, 18px);
  line-height:1.55;
  color: rgba(255,255,255,.94);
}
.cta-promo__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  align-items:center;
}
.btn-cta-promo-solid{
  background: var(--white);
  color:var(--text);
  border-color: rgba(255,255,255,.92);
  font-weight:800;
  padding:14px 22px;
}
.btn-cta-promo-solid:hover{
  background:#f6f8fb;
  box-shadow: 0 12px 28px rgba(11,47,75,.2);
}
.btn-cta-promo-outline{
  background: transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.55);
  font-weight:700;
  padding:14px 22px;
}
.btn-cta-promo-outline:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.88);
}
.cta-promo__phone-ico{flex-shrink:0; color:#fff; opacity:.95}
.cta-promo__divider{
  height:1px;
  max-width: 420px;
  margin: 32px auto 24px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
}
.cta-promo__trust{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap: clamp(16px, 4vw, 36px);
  font-size:14px;
  font-weight:700;
  color: rgba(255,255,255,.94);
}
.cta-promo__trust li{
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.cta-promo__trust-ico{
  display:grid;
  place-items:center;
  color: rgba(255,255,255,.95);
  flex-shrink:0;
}

/* Footer — fond clair, structure type “manycar”, couleurs HelloDrive */
footer.footer-site{
  background:var(--white);
  color:var(--text);
  margin-top:0;
  border-top:0;
}
.footer-site__inner{
  padding:clamp(52px, 6vw, 72px) 0 36px;
}
.footer-site__top{
  display:grid;
  grid-template-columns:1.35fr repeat(3, 1fr);
  gap:clamp(20px, 4vw, 36px);
  align-items:start;
}
.footer-site__logo{
  font-weight:900;
  font-size:clamp(20px, 2.4vw, 26px);
  letter-spacing:-.02em;
  color:#0b0f14;
}
.footer-site__desc{
  margin:12px 0 0;
  font-size:14px;
  line-height:1.55;
  color:var(--muted);
  max-width:40ch;
}
.footer-site__contacts{
  list-style:none;
  margin:18px 0 0;
  padding:0;
  display:grid;
  gap:12px;
  font-size:14px;
}
.footer-site__contacts li{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.footer-site__contacts a{
  color:var(--text);
  text-decoration:underline;
  text-underline-offset:3px;
}
.footer-site__contacts a:hover{color:var(--sky)}
.footer-site__contact-ic{
  flex-shrink:0;
  color:var(--sky);
  display:grid;
  place-items:center;
  margin-top:1px;
}
.footer-site__heading{
  margin:0 0 14px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
}
.footer-site__col a{
  display:block;
  padding:7px 0;
  font-size:14px;
  font-weight:600;
  color:#0b0f14;
}
.footer-site__col a:hover{color:var(--sky)}
.footer-site__col--legal .footer-site__legal-item{
  display:block;
  padding:7px 0;
  font-size:14px;
  font-weight:600;
  color:#0b0f14;
  cursor:default;
  user-select:none;
}
.footer-site__rule{
  height:1px;
  background:var(--line);
  margin:28px 0;
}
.footer-site__band{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:20px 32px;
}
.footer-site__band-text{
  flex:1 1 260px;
  max-width:480px;
}
.footer-site__eyebrow{
  margin:0 0 6px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
}
.footer-site__band-title{
  margin:0 0 8px;
  font-size:clamp(20px, 2.2vw, 26px);
  font-weight:900;
  letter-spacing:-.02em;
  color:#0b0f14;
}
.footer-site__band-lead{
  margin:0;
  font-size:14px;
  color:var(--muted);
  line-height:1.5;
}
.footer-site__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 20px;
  border-radius:999px;
  font-weight:800;
  font-size:14px;
  border:1px solid transparent;
  cursor:pointer;
  font:inherit;
  margin:0;
  text-decoration:none;
  -webkit-appearance:none;
  appearance:none;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.footer-site__btn:hover{transform: translateY(-1px)}
.footer-site__btn--dark{
  background:#0b0f14;
  color:#fff;
  border-color:#0b0f14;
}
.footer-site__btn--dark:hover{
  background:#141a22;
  box-shadow:0 10px 24px rgba(11,15,20,.2);
}
.footer-site__btn--outline{
  background:var(--white);
  color:#0b0f14;
  border-color:var(--line);
}
.footer-site__btn--outline:hover{
  border-color:rgba(59,158,232,.45);
  background:#f7fbff;
}
.footer-site__ctas{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
  flex:1 1 220px;
}
.footer-site__bottom{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.footer-site__copy{
  margin:0;
  font-size:13px;
  color:var(--muted);
}
.footer-site__bottom-right{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:16px 22px;
}
.footer-site__social{display:flex; gap:8px}
.footer-site__social-link{
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid var(--line);
  display:grid;
  place-items:center;
  color:#0b0f14;
  transition: border-color .12s ease, background .12s ease, color .12s ease;
}
.footer-site__social-link:hover{
  border-color:rgba(59,158,232,.5);
  background:rgba(59,158,232,.08);
  color:var(--sky);
}

.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(17,17,17,.06);
  border:1px solid rgba(17,17,17,.10);
  font-weight:700;
  font-size:13px;
}

/* Fleet page */
.filters{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.field label{
  display:block;
  font-size:12px;
  color: var(--muted);
  font-weight:700;
  margin: 0 0 6px;
}
.field select, .field input{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(17,17,17,.14);
  background: white;
}
.fleet-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.vehicle-card{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background: white;
  box-shadow: 0 14px 30px rgba(17,17,17,.08);
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.vehicle-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(17,17,17,.12);
}
.vehicle-media{
  position:relative;
  aspect-ratio: 16 / 10;
  overflow:hidden;
}
.vehicle-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter: saturate(1.06);
  transform: scale(1.02);
}
.vehicle-badges{
  position:absolute;
  left:12px;
  top:12px;
  display:flex;
  align-items:center;
  gap:8px;
}
.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.55);
  font-weight:900;
  font-size:12px;
}
.price{
  background: rgba(59,158,232,.92);
  border-color: rgba(59,158,232,.15);
  color: white;
}
.km{
  position:absolute;
  left:12px;
  bottom:12px;
  padding:8px 10px;
  border-radius: 999px;
  background: rgba(17,17,17,.74);
  border:1px solid rgba(255,255,255,.12);
  color:white;
  font-weight:800;
  font-size:12px;
}
.vehicle-body{
  padding: 16px;
}
.vehicle-title{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 10px;
}
.vehicle-title h3{margin:0; font-size:18px; letter-spacing:-.01em}
.vehicle-title .year{color: var(--muted); font-weight:800; font-size:13px}
.specs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  color: rgba(17,17,17,.82);
  margin: 10px 0 14px;
}
.spec{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius: 999px;
  background: rgba(17,17,17,.04);
  border:1px solid rgba(17,17,17,.08);
  font-weight:800;
  font-size:13px;
}
.vehicle-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.vehicle-bottom .total{
  font-weight:900;
  letter-spacing:-.02em;
}
.muted{color: var(--muted)}

/* Vehicle detail */
.detail-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:start;
  margin-top: 14px;
}
.carousel{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background: white;
  box-shadow: 0 14px 30px rgba(17,17,17,.08);
}
.carousel .stage{
  aspect-ratio: 16 / 10;
  position:relative;
  overflow:hidden;
}
.carousel .stage img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.carousel .nav{
  position:absolute;
  inset: 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0 10px;
  pointer-events:none;
}
.carousel .nav button{
  pointer-events:auto;
  width:42px;height:42px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(17,17,17,.55);
  color:white;
  cursor:pointer;
}
.thumbs{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 12px;
}
.thumbs button{
  border-radius: 14px;
  border:1px solid rgba(17,17,17,.12);
  padding:0;
  overflow:hidden;
  cursor:pointer;
  background:white;
  opacity:.85;
}
.thumbs button.active{outline: 2px solid rgba(59,158,232,.65); opacity:1}
.thumbs img{width:100%; height:60px; object-fit:cover}

.facts{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.fact{
  padding: 12px 12px;
  border-radius: 16px;
  border:1px solid rgba(17,17,17,.12);
  background: rgba(17,17,17,.03);
  font-weight:800;
}
.equip-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.equip{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px;
  border-radius: 16px;
  border:1px solid rgba(17,17,17,.10);
  background: white;
}
.equip .eicon{
  width:38px;height:38px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(59,158,232,.12);
  border:1px solid rgba(59,158,232,.18);
  font-weight:900;
}

.important{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.note{
  border-radius: var(--radius);
  border:1px solid rgba(17,17,17,.12);
  background: white;
  padding: 16px;
}
.note h4{margin:0 0 8px}
.note p{margin:0;color:var(--muted)}

.sticky-bar{
  position: sticky;
  bottom: 0;
  z-index: 40;
  margin-top: 18px;
  border-radius: 20px;
  border:1px solid rgba(17,17,17,.12);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(17,17,17,.14);
  padding: 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.sticky-bar .sum b{display:block; font-size: 18px}
.sticky-bar .sum span{display:block; font-size: 13px; color: var(--muted); font-weight:700}

/* FAQ accordion */
.accordion{
  display:grid;
  gap: 12px;
  margin-top: 16px;
}
.acc-item{
  border:1px solid rgba(17,17,17,.12);
  border-radius: var(--radius);
  overflow:hidden;
  background: white;
}
.acc-btn{
  width:100%;
  text-align:left;
  padding: 16px 16px;
  border:0;
  background: white;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  font-weight:900;
}
.acc-btn span{color: rgba(17,17,17,.92)}
.acc-panel{
  display:none;
  padding: 0 16px 16px;
  color: var(--muted);
}
.acc-panel p{
  margin:0;
  line-height:1.55;
}
.acc-item.open .acc-panel{display:block}
.chev{
  width:34px;height:34px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(17,17,17,.04);
  border:1px solid rgba(17,17,17,.08);
}

/* About */
.team{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.person{
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid rgba(17,17,17,.12);
  background:white;
  box-shadow: 0 14px 30px rgba(17,17,17,.08);
}
.person img{aspect-ratio: 16/10; width:100%; object-fit:cover}
.person .info{padding: 16px}
.person .info b{display:block}
.person .info span{color: var(--muted); font-weight:700; font-size:13px}

/* Utilities */
.page-hero{
  padding: 34px 0 0;
}
.page-hero .box{
  border-radius: 28px;
  padding: 28px;
  background:
    radial-gradient(900px 420px at 80% 20%, rgba(255,255,255,.22), transparent 56%),
    linear-gradient(135deg, rgba(59,158,232,.95), #69c1ff);
  color:white;
  position:relative;
  overflow:hidden;
}
.page-hero .box::before{
  content:"";
  position:absolute;
  inset:-40px;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.12)),
    url("https://images.unsplash.com/photo-1525609004556-c46c7d6cf023?auto=format&fit=crop&w=2200&q=70");
  background-size: cover;
  background-position: center;
  opacity:.38;
}
.page-hero .box > *{position:relative}
.page-hero h1{margin:0 0 6px; letter-spacing:-.03em}
.page-hero p{margin:0; opacity:.92}

/* Responsive */
@media (max-width: 960px){
  .hero-grid{grid-template-columns: 1fr; }
  .page-home .hero.hero-home{
    min-height: clamp(560px, 86svh, 920px);
  }
  .page-home .hero.hero-home .container{
    padding: calc(var(--home-nav-stack) + clamp(42px, 11vw, 72px)) 0 42px;
  }
  .how-works-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .how-works-visual{
    --how-photo-side: min(420px, max(200px, 64vw));
    max-width: min(640px, 100%);
    width: 100%;
    margin-inline: auto;
  }
  .how-works-steps,
  .how-works-lead{
    max-width: none;
  }
  .grid-5{grid-template-columns: repeat(2, 1fr)}
  .grid-4{grid-template-columns: repeat(2, 1fr)}
  .grid-3{grid-template-columns: repeat(2, 1fr)}
  .fleet-grid{grid-template-columns: repeat(2, 1fr)}
  .filters{grid-template-columns: repeat(3, 1fr)}
  .detail-grid{grid-template-columns: 1fr}
  .equip-grid{grid-template-columns: repeat(2, 1fr)}
  .footer-site__top{
    grid-template-columns:repeat(3, 1fr);
  }
  .footer-site__intro{grid-column:1 / -1}
  .team{grid-template-columns: 1fr}
  .booking-split{grid-template-columns: 1fr}
}
@media (max-width: 640px){
  .page-home .hero.hero-home{
    min-height: clamp(500px, 84svh, 860px);
  }
  .page-home .hero-home .hero-title{
    font-size: clamp(1.625rem, 7.5vw, 2.125rem);
    line-height: 1.1;
  }
  .page-home .hero-home .hero-lede{
    font-size: 15px;
    max-width: 100%;
  }
  .page-home .hero-home-actions{
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
  .page-home .hero-home-actions .btn-hero-how{
    width: 100%;
    max-width: 100%;
    text-align: center;
    justify-content: center;
  }
  .page-home .hero-home-actions .hero-vehicles-link{
    align-self: flex-start;
    text-align: left;
  }
  .page-home .hero-home .stats{
    max-width: 100%;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 14px;
    padding: 10px 4px;
  }
  .page-home .hero-home .stat{
    padding: 6px 4px;
  }
  .page-home .hero-home .stat b{
    font-size: clamp(15px, 4.2vw, 20px);
  }
  .page-home .hero-home .stat span{
    font-size: 8px;
    letter-spacing: 0.06em;
    margin-top: 4px;
  }
  .page-home .hero-home .stat + .stat::before{
    display: block;
    top: 12%;
    height: 76%;
  }
  .navbar{
    width: calc(100% - 22px);
    margin: 10px auto 0;
    border-radius: 26px;
  }
  .nav-links, .nav-cta{display:none}
  .hamburger{display:block}
  .mobile-drawer{display:block}
  .mobile-drawer[hidden]{display:none}
  .kpi-row{grid-template-columns: 1fr}
  .grid-3{grid-template-columns: 1fr}
  .testimonials{grid-template-columns: 1fr}
  .avis-form-grid{grid-template-columns: 1fr}
  .fleet-grid{grid-template-columns: 1fr}
  .filters{grid-template-columns: 1fr 1fr}
  .cta{flex-direction:column; align-items:flex-start}
  .cta-promo__actions{flex-direction:column; width:100%}
  .cta-promo__actions .btn{width:100%; max-width: 320px}
  .cta-promo__trust{flex-direction:column; align-items:center; gap:14px}
  .footer-site__top{grid-template-columns:1fr}
  .footer-site__ctas{justify-content:flex-start; width:100%}
  .footer-site__band{flex-direction:column; align-items:stretch}
  .footer-site__bottom{flex-direction:column; align-items:flex-start}
}

