/* ============================================================
   GLIDE - Site vitrine
   Mobilite partagee a Vitre
   Typo Montserrat / Inter, accent bleu #3557D4
   ============================================================ */

:root {
  --blue: #3557d4;
  --blue-600: #2a48b8;
  --blue-700: #1f3894;
  --blue-400: #6a86e6;
  --blue-ink: #0b1638;
  --blue-soft: #e7ecfc;
  --blue-tint: #f5f7fe;

  --wyvo: #35d461;
  --wyvo-dark: #16a944;

  --ink: #0e1119;
  --ink-soft: #5b6172;
  --ink-faint: #8b91a3;

  --bg: #f5f7fe;
  --surface: #ffffff;
  --line: #e2e7f7;
  --map: #e7eaf0;

  --r-sec: 40px;
  --r-card: 22px;
  --r-pill: 100px;

  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shell: 1240px;
  --pad: clamp(20px, 5vw, 56px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.62;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font: inherit; color: inherit; }
::selection { background: var(--blue); color: #fff; }

/* ============ TYPO ============ */

.h-xl, .h-lg, .h-md, .h-sm {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.h-xl { font-size: clamp(2.75rem, 9.6vw, 8.2rem); font-weight: 900; text-transform: uppercase; }
.h-lg { font-size: clamp(2.2rem, 5.4vw, 4.4rem); font-weight: 800; line-height: 1.04; }
.h-md { font-size: clamp(1.6rem, 3.2vw, 2.5rem); font-weight: 800; line-height: 1.1; }
.h-sm { font-size: clamp(1.04rem, 1.6vw, 1.26rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.3; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.eyebrow.on-dark { color: var(--blue-400); }

.lead {
  font-size: clamp(1.01rem, 1.5vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 62ch;
}
.lead.on-dark { color: rgba(255, 255, 255, 0.72); }

.accent { color: var(--blue); }
.dot { color: var(--blue); }
.lnk { color: var(--blue); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }

/* ============ LAYOUT ============ */

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad); }

.band { position: relative; padding: clamp(70px, 9vw, 126px) 0; }
.band-white { background: var(--surface); }
.band-tint { background: var(--blue-tint); }
.band-dark { background: var(--blue-ink); color: #fff; }
.band-stats { padding: clamp(30px, 4vw, 54px) 0 clamp(56px, 7vw, 90px); }

/* Empilement facon citygo : chaque bande arrondie chevauche la precedente */
.band-round {
  border-radius: var(--r-sec) var(--r-sec) 0 0;
  margin-top: calc(var(--r-sec) * -1);
  z-index: 2;
}

.head { max-width: 780px; margin-bottom: clamp(38px, 5vw, 62px); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ BOUTONS ============ */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
  border: 1px solid transparent;
  overflow: hidden;
  isolation: isolate;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 26px rgba(53, 87, 212, 0.28); }
.btn-primary:hover { background: var(--blue-600); box-shadow: 0 16px 34px rgba(53, 87, 212, 0.34); }

.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #000; box-shadow: 0 14px 30px rgba(15, 25, 60, 0.22); }

.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

.btn-outline { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); box-shadow: 0 12px 26px rgba(15, 25, 60, 0.1); }

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.6); }

.btn-wyvo { background: var(--wyvo); color: #06331a; font-weight: 700; }
.btn-wyvo:hover { background: #2bc456; box-shadow: 0 16px 32px rgba(53, 212, 97, 0.34); }

.btn-sm { padding: 11px 20px; font-size: 0.88rem; }

/* reflet qui traverse le bouton au survol */
.btn-shine::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -60%;
  width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  z-index: -1;
}
.btn-shine:hover::after { animation: shine 0.85s var(--ease); }
@keyframes shine {
  0% { left: -60%; opacity: 1; }
  100% { left: 130%; opacity: 0; }
}
.btn-white.btn-shine::after { background: linear-gradient(100deg, transparent, rgba(53, 87, 212, 0.16), transparent); }

/* ============ TOPBAR ============ */

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px var(--pad);
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.topbar.is-stuck {
  background: rgba(245, 247, 254, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.62rem;
  letter-spacing: -0.045em;
  color: var(--ink);
  line-height: 1;
}
.brand .dot { color: var(--blue); display: inline-block; }
.page-legal .topbar:not(.is-stuck) .brand { color: #fff; }
.page-legal .topbar:not(.is-stuck) .brand .dot { color: var(--blue-400); }
.topbar .brand .dot { animation: dotPop 0.7s var(--ease) 0.5s backwards; }
@keyframes dotPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.5); opacity: 1; }
  100% { transform: scale(1); }
}

.navpill {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(14, 17, 25, 0.74);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-pill);
  padding: 6px;
}
.navpill a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.71rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  padding: 10px 15px;
  border-radius: var(--r-pill);
  transition: background 0.22s, color 0.22s;
}
.navpill a:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.navpill a.is-active { background: var(--blue); color: #fff; }

.topbar-right { display: flex; align-items: center; gap: 10px; }

.burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(14, 17, 25, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  align-items: center;
  justify-content: center;
}
.burger svg { width: 20px; height: 20px; stroke: #fff; }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--blue-ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--pad);
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}
.drawer.is-open { transform: translateY(0); }
.drawer a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 6.6vw, 2.3rem);
  letter-spacing: -0.03em;
  color: #fff;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s, padding-left 0.3s var(--ease);
}
.drawer a:hover { color: var(--blue-400); padding-left: 10px; }
.drawer a:last-of-type { border-bottom: none; }
.drawer-close {
  position: absolute;
  top: 22px; right: var(--pad);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: flex; align-items: center; justify-content: center;
}
.drawer-close svg { width: 20px; height: 20px; stroke: #fff; }

/* ============ HERO ============ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--map);
  padding: 150px 0 130px;
}

.hero-map { position: absolute; inset: 0; }
.hero-map img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: mapIn 1.6s var(--ease) both;
}
@keyframes mapIn { from { opacity: 0; } to { opacity: 1; } }

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(64% 52% at 50% 44%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.64) 44%, rgba(255, 255, 255, 0.16) 76%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(233, 236, 242, 0.92) 0%, rgba(233, 236, 242, 0) 24%, rgba(245, 247, 254, 0) 58%, rgba(245, 247, 254, 0.97) 100%);
}

.hero-inner { position: relative; z-index: 3; width: 100%; max-width: 1100px; padding: 0 var(--pad); }

.hero-title { color: var(--ink); }
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.hero-title .line > span {
  display: block;
  animation: lineUp 1s var(--ease) both;
}
.hero-title .line:nth-child(1) > span { animation-delay: 0.12s; }
.hero-title .line:nth-child(2) > span { animation-delay: 0.26s; }
.hero-title .l2 { color: var(--blue); }
@keyframes lineUp {
  from { transform: translateY(105%); }
  to { transform: translateY(0); }
}

.hero-sub {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.65vw, 1.18rem);
  max-width: 54ch;
  margin: 26px auto 0;
}

.anim-up { animation: upIn 0.9s var(--ease) both; }
.anim-up.d1 { animation-delay: 0.42s; }
.anim-up.d2 { animation-delay: 0.54s; }
.anim-up.d3 { animation-delay: 0.66s; }
@keyframes upIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

.hero-stores { margin-top: 36px; }
.store-note {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.store-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px 12px 20px;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 26px rgba(15, 25, 60, 0.16);
  transition: background 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}
.store-badge:hover { background: #000; transform: translateY(-3px); box-shadow: 0 18px 36px rgba(15, 25, 60, 0.24); }
.store-badge svg { width: 26px; height: 26px; fill: #fff; flex: none; }
.store-badge span { display: block; text-align: left; }
.store-badge .s1 { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.72; line-height: 1.4; }
.store-badge .s2 { font-family: var(--font-display); font-weight: 800; font-size: 1rem; letter-spacing: -0.02em; line-height: 1.2; }

/* ============ RECHERCHE D'ITINERAIRE ============ */

.finder-wrap { position: relative; z-index: 6; margin-top: clamp(-120px, -8vw, -70px); }

.finder {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(26px, 3.4vw, 40px);
  max-width: 780px;
  margin: 0 auto;
  box-shadow: 0 30px 70px rgba(15, 25, 60, 0.13);
}
.finder-head { text-align: center; margin-bottom: 26px; }
.finder-head .eyebrow::before { display: none; }
.finder-head .eyebrow { margin-bottom: 10px; }

.finder-form { display: flex; gap: 14px; align-items: stretch; }
.finder-fields { position: relative; flex: 1; display: flex; flex-direction: column; gap: 10px; min-width: 0; }

.finder-rail {
  position: absolute;
  left: 21px; top: 30px; bottom: 30px;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--line) 0 4px, transparent 4px 8px);
}

.field {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--blue-tint);
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 0 18px;
  height: 58px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.field:focus-within { background: #fff; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(53, 87, 212, 0.12); }
.field input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: none;
  font-size: 0.98rem;
  font-weight: 500;
}
.field input::placeholder { color: var(--ink-faint); font-weight: 400; }

.field-dot { width: 11px; height: 11px; flex: none; position: relative; z-index: 2; }
.field-dot.start { border-radius: 50%; border: 3px solid var(--ink); background: #fff; }
.field-dot.end { border-radius: 3px; background: var(--blue); }
.field:focus-within .field-dot.start { border-color: var(--blue); }

.finder-go { height: 58px; align-self: stretch; padding: 0 30px; }

.finder-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 20px;
  font-size: 0.86rem;
  color: var(--ink-faint);
  line-height: 1.5;
}
.finder-note svg { width: 16px; height: 16px; flex: none; margin-top: 3px; stroke: var(--blue); fill: none; stroke-width: 1.8; }

/* ============ MODALE ============ */

.modal { position: fixed; inset: 0; z-index: 120; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-back {
  position: absolute; inset: 0;
  background: rgba(9, 14, 30, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease both;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-box {
  position: relative;
  background: var(--surface);
  border-radius: 26px;
  width: 100%;
  max-width: 500px;
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 40px 90px rgba(9, 14, 30, 0.4);
  animation: popIn 0.42s var(--ease) both;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes popIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
.modal-x {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-faint);
  transition: background 0.2s, color 0.2s;
}
.modal-x:hover { background: var(--blue-tint); color: var(--ink); }
.modal-x svg { width: 17px; height: 17px; }

.modal-mark {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.modal-mark svg { width: 25px; height: 25px; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.modal-mark.glide { background: var(--blue-soft); }
.modal-mark.glide svg { stroke: var(--blue); }
.modal-mark.wyvo { background: rgba(53, 212, 97, 0.16); }
.modal-mark.wyvo svg { stroke: var(--wyvo-dark); }

.modal-box h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.03em; line-height: 1.15; }
.modal-box p { color: var(--ink-soft); font-size: 0.97rem; margin-top: 12px; }
.modal-trip {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0 4px;
  padding: 14px 18px;
  background: var(--blue-tint);
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 600;
}
.modal-trip svg { width: 16px; height: 16px; flex: none; stroke: var(--ink-faint); fill: none; stroke-width: 2; }
.modal-acts { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.modal-acts .btn { flex: 1; min-width: 160px; }

.wyvo-word { font-family: var(--font-display); font-weight: 900; letter-spacing: -0.045em; }
.wyvo-word i { color: var(--wyvo); font-style: normal; }

/* ============ STATS ============ */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
}
.stat { background: var(--surface); padding: 34px 28px; transition: background 0.3s; }
.stat:hover { background: var(--blue-tint); }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}
.stat span {
  display: block;
  margin-top: 10px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ============ GRILLES ============ */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 32px 30px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(53, 87, 212, 0.34);
  box-shadow: 0 20px 44px rgba(15, 25, 60, 0.09);
}
.card p { color: var(--ink-soft); font-size: 0.95rem; margin-top: 10px; }

.ico {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--blue-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease), background 0.3s;
}
.card:hover .ico { transform: translateY(-3px) rotate(-6deg); }
.ico svg { width: 23px; height: 23px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ============ ETAPES ============ */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 32px 30px 34px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.step:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(15, 25, 60, 0.09); }
.step::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.step:hover::before { transform: scaleX(1); }
.step-n {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  letter-spacing: -0.05em;
  color: var(--blue-soft);
  line-height: 1;
  margin-bottom: 18px;
  transition: color 0.35s;
}
.step:hover .step-n { color: var(--blue); }
.step p { color: var(--ink-soft); font-size: 0.95rem; margin-top: 10px; }

/* ============ APP ============ */

.app-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.app-feats { display: flex; flex-direction: column; gap: 4px; margin: 32px 0 30px; }
.app-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.app-feat:last-child { border-bottom: none; }
.app-feat .ico { width: 42px; height: 42px; border-radius: 12px; margin: 0; flex: none; }
.app-feat .ico svg { width: 19px; height: 19px; }
.app-feat:hover .ico { background: var(--blue); }
.app-feat:hover .ico svg { stroke: #fff; }
.app-feat h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; }
.app-feat p { color: var(--ink-soft); font-size: 0.92rem; margin-top: 3px; }

.phone {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 320 / 650;
  background: var(--ink);
  border-radius: 44px;
  padding: 11px;
  box-shadow: 0 40px 80px rgba(11, 22, 56, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  position: relative;
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--map);
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  position: absolute;
  top: 11px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 22px;
  background: var(--ink);
  border-radius: 0 0 14px 14px;
  z-index: 5;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px 6px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--surface);
  position: relative;
  z-index: 2;
}
.phone-map { flex: 1; position: relative; overflow: hidden; }
.phone-map img { width: 100%; height: 100%; object-fit: cover; }

.phone-me {
  position: absolute;
  top: 46%; left: 50%;
  width: 16px; height: 16px;
  margin: -8px 0 0 -8px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(11, 22, 56, 0.35);
  z-index: 2;
}
.phone-me::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(53, 87, 212, 0.3);
  animation: ping 2.6s ease-out infinite;
}
@keyframes ping {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(3); opacity: 0; }
}

.phone-sheet {
  position: absolute;
  left: 10px; right: 10px; bottom: 10px;
  background: #fff;
  border-radius: 22px;
  padding: 16px 17px;
  box-shadow: 0 12px 30px rgba(11, 22, 56, 0.16);
  z-index: 3;
}
.phone-sheet .ttl {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.scoot-row { display: flex; align-items: center; gap: 11px; margin-bottom: 13px; }
.scoot-ico {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--blue-soft);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.scoot-ico svg { width: 19px; height: 19px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.scoot-row b { display: block; font-size: 0.78rem; font-weight: 700; line-height: 1.3; }
.scoot-row small { display: block; font-size: 0.68rem; color: var(--ink-faint); }
.batt {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 4px 9px;
  border-radius: 100px;
  flex: none;
}
.phone-btn {
  background: var(--blue);
  color: #fff;
  border-radius: 100px;
  text-align: center;
  padding: 11px;
  font-size: 0.79rem;
  font-weight: 600;
}

/* ============ TARIFS ============ */

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.plan {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--r-card);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
}
.plan:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, 0.32); background: rgba(255, 255, 255, 0.07); }
.plan-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-400);
}
.plan-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 18px 0 6px;
}
.plan-sub { font-size: 0.87rem; color: rgba(255, 255, 255, 0.6); margin-bottom: 24px; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; }
.plan li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
}
.plan li svg { width: 17px; height: 17px; flex: none; margin-top: 3px; stroke: var(--blue-400); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.plan .btn { width: 100%; margin-top: auto; }

.plan-hot {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
  position: relative;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}
.plan-hot:hover { border-color: #fff; background: #fff; }
.plan-hot .plan-name { color: var(--blue); }
.plan-hot .plan-sub { color: var(--ink-soft); }
.plan-hot li { color: var(--ink-soft); }
.plan-hot li svg { stroke: var(--blue); }
.plan-flag {
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--blue);
  color: #fff;
  padding: 6px 13px;
  border-radius: 100px;
}
.plan-note {
  margin-top: 30px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.plan-note svg { width: 17px; height: 17px; flex: none; margin-top: 3px; stroke: var(--blue-400); fill: none; stroke-width: 1.8; }

/* ============ ZONE ============ */

.zone-split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.towns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.town {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease);
}
.town:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.town-main { background: var(--blue); border-color: var(--blue); color: #fff; font-weight: 600; }
.town-main:hover { color: #fff; }
.town-soon { border-style: dashed; color: var(--ink-faint); }

.zone-map {
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--map);
  aspect-ratio: 4 / 3;
  box-shadow: 0 20px 50px rgba(15, 25, 60, 0.1);
}
.zone-map img { width: 100%; height: 100%; object-fit: cover; }

/* ============ FAQ ============ */

.faq { max-width: 900px; }
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  letter-spacing: -0.02em;
  transition: color 0.25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--blue); }
.faq-plus {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  flex: none;
  transition: transform 0.35s var(--ease), background 0.3s, border-color 0.3s;
}
.faq-plus svg { width: 15px; height: 15px; stroke: var(--ink); stroke-width: 2; transition: stroke 0.3s; }
.faq details[open] .faq-plus { transform: rotate(45deg); background: var(--blue); border-color: var(--blue); }
.faq details[open] .faq-plus svg { stroke: #fff; }
.faq-body { padding: 0 60px 26px 0; color: var(--ink-soft); font-size: 0.97rem; }
.faq details[open] .faq-body { animation: upIn 0.45s var(--ease) both; }

/* ============ CTA FINAL ============ */

.final {
  background: var(--blue);
  color: #fff;
  border-radius: var(--r-sec);
  padding: clamp(50px, 7vw, 84px) clamp(28px, 5vw, 70px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before, .final::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}
.final::before { width: 340px; height: 340px; top: -150px; right: -90px; animation: drift 16s ease-in-out infinite alternate; }
.final::after { width: 240px; height: 240px; bottom: -120px; left: -60px; animation: drift 20s ease-in-out infinite alternate-reverse; }
@keyframes drift {
  from { transform: translate(0, 0); }
  to { transform: translate(-26px, 20px); }
}
.final > * { position: relative; z-index: 2; }
.final .lead { color: rgba(255, 255, 255, 0.82); margin: 20px auto 0; text-align: center; }
.final-btns { margin-top: 34px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */

.foot { background: var(--ink); color: rgba(255, 255, 255, 0.6); padding: clamp(50px, 6vw, 76px) 0 34px; }
.foot .brand { color: #fff; }

.cross {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  margin-bottom: clamp(46px, 6vw, 72px);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-card);
}
.cross-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wyvo);
  margin-bottom: 14px;
}
.cross-head h2 { color: #fff; }
.cross-head p { margin-top: 14px; font-size: 0.94rem; color: rgba(255, 255, 255, 0.58); max-width: 40ch; }

.cross-card {
  display: block;
  background: rgba(53, 212, 97, 0.08);
  border: 1px solid rgba(53, 212, 97, 0.28);
  border-radius: 18px;
  padding: 28px 30px;
  transition: transform 0.35s var(--ease), background 0.3s, border-color 0.3s, box-shadow 0.35s;
}
.cross-card:hover {
  transform: translateY(-4px);
  background: rgba(53, 212, 97, 0.14);
  border-color: var(--wyvo);
  box-shadow: 0 20px 44px rgba(53, 212, 97, 0.16);
}
.cross-logo {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.9rem;
  letter-spacing: -0.045em;
  color: #fff;
  line-height: 1;
}
.cross-logo i { color: var(--wyvo); font-style: normal; }
.cross-txt { display: block; margin-top: 14px; font-size: 0.93rem; color: rgba(255, 255, 255, 0.66); line-height: 1.6; }
.cross-go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--wyvo);
}
.cross-go svg { width: 17px; height: 17px; transition: transform 0.3s var(--ease); }
.cross-card:hover .cross-go svg { transform: translateX(5px); }

.foot-top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; padding-bottom: 46px; }
.foot-about { max-width: 34ch; margin-top: 18px; font-size: 0.92rem; line-height: 1.6; }
.foot h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.foot ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot ul a {
  font-size: 0.92rem;
  position: relative;
  display: inline-block;
  transition: color 0.22s;
}
.foot ul a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--blue-400);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.foot ul a:hover { color: #fff; }
.foot ul a:hover::after { transform: scaleX(1); transform-origin: left; }

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.foot-notes { font-size: 0.78rem; color: rgba(255, 255, 255, 0.4); line-height: 1.7; margin-top: 22px; max-width: 78ch; }
.foot-social { display: flex; gap: 10px; margin-top: 22px; }
.foot-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease);
}
.foot-social a:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-3px); }
.foot-social svg { width: 19px; height: 19px; }

/* ============ PAGES LEGALES ============ */

.legal-hero {
  background: var(--blue-ink);
  color: #fff;
  padding: 160px 0 clamp(60px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.legal-hero::after {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 87, 212, 0.4) 0%, transparent 68%);
  top: -180px; right: -120px;
}
.legal-hero > * { position: relative; z-index: 2; }
.legal-hero .brand { color: #fff; }
.legal-meta {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 9px 18px;
  border-radius: 100px;
}
.legal-meta svg { width: 15px; height: 15px; stroke: var(--blue-400); fill: none; stroke-width: 1.8; }

.legal-body { padding: clamp(50px, 7vw, 90px) 0 clamp(60px, 8vw, 100px); }
.legal-wrap { display: grid; grid-template-columns: 250px 1fr; gap: clamp(34px, 5vw, 66px); align-items: start; }

.legal-nav {
  position: sticky;
  top: 100px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 24px 22px;
}
.legal-nav h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
}
.legal-nav ol { list-style: none; counter-reset: ln; display: flex; flex-direction: column; gap: 3px; }
.legal-nav a {
  counter-increment: ln;
  display: block;
  font-size: 0.87rem;
  color: var(--ink-soft);
  padding: 7px 10px;
  border-radius: 9px;
  transition: background 0.22s, color 0.22s, padding-left 0.22s;
}
.legal-nav a::before { content: counter(ln) ". "; color: var(--ink-faint); font-weight: 600; }
.legal-nav a:hover { background: var(--blue-soft); color: var(--blue); padding-left: 14px; }

.legal-art { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: clamp(28px, 4vw, 52px); }
.legal-art section { padding: 34px 0; border-bottom: 1px solid var(--line); }
.legal-art section:first-child { padding-top: 0; }
.legal-art section:last-child { border-bottom: none; padding-bottom: 0; }
.legal-art h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  display: flex;
  gap: 13px;
  align-items: baseline;
}
.legal-art h2 i {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 4px 10px;
  border-radius: 8px;
  flex: none;
}
.legal-art h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin: 22px 0 8px; }
.legal-art p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 14px; }
.legal-art p:last-child { margin-bottom: 0; }
.legal-art ul { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 6px 0 16px; }
.legal-art ul li { position: relative; padding-left: 26px; color: var(--ink-soft); font-size: 0.95rem; }
.legal-art ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: 10px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
}
.legal-art a { color: var(--blue); font-weight: 500; }
.legal-art a:hover { text-decoration: underline; }
.legal-art strong { color: var(--ink); font-weight: 600; }

.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 20px 0 6px; }
.info-cell { background: var(--blue-tint); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; }
.info-cell dt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.64rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 6px;
}
.info-cell dd { font-size: 0.93rem; font-weight: 500; color: var(--ink); }

.tbl-wrap { overflow-x: auto; margin: 18px 0; border: 1px solid var(--line); border-radius: 14px; }
.tbl { width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 560px; }
.tbl th {
  background: var(--blue-tint);
  text-align: left;
  padding: 13px 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.tbl td { padding: 13px 16px; border-bottom: 1px solid var(--line); color: var(--ink-soft); vertical-align: top; }
.tbl tr:last-child td { border-bottom: none; }
.tbl td:first-child { font-weight: 600; color: var(--ink); }

.rights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 18px 0 8px; }
.right-cell { border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; background: var(--surface); transition: border-color 0.25s; }
.right-cell:hover { border-color: var(--blue); }
.right-cell b { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.right-cell b svg { width: 17px; height: 17px; stroke: var(--blue); fill: none; stroke-width: 2; flex: none; }
.right-cell span { font-size: 0.9rem; color: var(--ink-soft); }

.legal-cta {
  margin-top: 34px;
  background: var(--blue-ink);
  color: #fff;
  border-radius: var(--r-card);
  padding: clamp(30px, 4vw, 46px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}
.legal-cta p { color: rgba(255, 255, 255, 0.68); font-size: 0.94rem; margin-top: 8px; max-width: 48ch; }

/* ============ REVEAL ============ */

.rv { opacity: 0; transform: translateY(28px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.rv.is-in { opacity: 1; transform: none; }
.rv-1 { transition-delay: 0.08s; }
.rv-2 { transition-delay: 0.16s; }
.rv-3 { transition-delay: 0.24s; }
.rv-4 { transition-delay: 0.32s; }

/* ============ RESPONSIVE ============ */

@media (max-width: 1080px) {
  .navpill { display: none; }
  .burger { display: flex; }
  .topbar-right .btn { display: none; }
  .app-split, .zone-split, .cross { grid-template-columns: 1fr; }
  .zone-map { max-height: 400px; }
  .legal-wrap { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
  .legal-nav ol { display: grid; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .grid-3, .grid-2, .steps, .plans { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .foot-top { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .plan-hot { order: -1; }
  .finder-form { flex-direction: column; }
  .finder-go { width: 100%; }
}

@media (max-width: 620px) {
  :root { --r-sec: 30px; --r-card: 18px; }
  .info-grid, .rights { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { padding: 26px 24px; }
  .foot-top { grid-template-columns: 1fr; }
  .legal-nav ol { grid-template-columns: 1fr; }
  .store-row { flex-direction: column; align-items: stretch; }
  .store-badge { justify-content: center; }
  .faq-body { padding-right: 0; }
  .hero { padding: 124px 0 120px; }
  .finder { border-radius: 22px; }
  .modal-acts .btn { min-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .rv { opacity: 1; transform: none; }
}
