/* ===========================================================
   MotoConcho RD — styles.css
   Estilo: minimalismo expresivo + app-store landing
   =========================================================== */

:root {
  /* Brand — Azul marino como acento principal */
  --primary: #000080;       /* azul marino — acento/botones */
  --primary-600: #1a1aa3;   /* hover (un poco más claro) */
  --primary-700: #00005c;   /* texto del acento sobre claro */
  --accent: #1d4ed8;        /* azul real (resaltes/éxito) */
  --blue: #1d4ed8;          /* azul confianza / RD */

  /* Marino profundo (siempre oscuro) */
  --ink: #0a1733;           /* azul marino profundo */
  --ink-2: #102146;
  --ink-3: #1a2f5e;
  --gold: #ffb020;

  /* Colores representativos de perfiles */
  --c-pax: #1d4ed8;  --c-pax-2: #5b8bff;   /* Pasajeros — azul */
  --c-rider: #f0a020; --c-rider-2: #ffc24d; /* Motoristas — ámbar */
  --c-boss: #1f9d57; --c-boss-2: #46c97e;   /* Jefes de parada — verde */
  --c-biz: #d11f2d;  --c-biz-2: #ff5a67;    /* Emprendedores — rojo */

  /* ----- Tokens de tema: CLARO (por defecto) ----- */
  --bg: #f6f7fb;
  --bg-alt: #ffffff;
  --surface: #ffffff;
  --surface-2: #fbfcff;
  --text: #0e1426;
  --muted: #5c6478;
  --muted-2: #8a92a6;
  --border: #e7e9f2;
  --nav-bg: rgba(246, 247, 251, .72);
  --nav-bg-scrolled: rgba(246, 247, 251, .9);
  --nav-mobile-bg: rgba(246, 247, 251, .98);
  --card-pro: linear-gradient(160deg, #fff, #fff5f6);

  --shadow-sm: 0 1px 2px rgba(13, 19, 38, .06), 0 2px 8px rgba(13, 19, 38, .05);
  --shadow: 0 8px 24px rgba(13, 19, 38, .08);
  --shadow-lg: 0 24px 60px rgba(13, 19, 38, .16);
  --shadow-primary: 0 14px 30px rgba(0, 0, 128, .38);

  /* Effects */
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ----- Tokens de tema: OSCURO ----- */
:root[data-theme="dark"] {
  --bg: #060c1a;
  --bg-alt: #0a1326;
  --surface: #0e1a36;
  --surface-2: #0c1730;
  --text: #eef2fb;
  --muted: #9aa3bc;
  --muted-2: #7f88a0;
  --border: rgba(255, 255, 255, .09);
  --nav-bg: rgba(8, 14, 28, .72);
  --nav-bg-scrolled: rgba(8, 14, 28, .92);
  --nav-mobile-bg: rgba(8, 14, 28, .98);
  --card-pro: linear-gradient(160deg, #142142, #2a1822);

  /* Acento un poco más claro para que resalte sobre el navy oscuro */
  --primary: #2a2ac2;
  --primary-600: #3d3dd8;
  --shadow-primary: 0 14px 30px rgba(42, 42, 194, .45);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .3), 0 2px 8px rgba(0, 0, 0, .25);
  --shadow: 0 10px 28px rgba(0, 0, 0, .4);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, .5);
}
:root[data-theme="dark"] body { background: var(--bg); }
/* Transición suave al cambiar de tema */
body, .nav, .section--alt, .profile, .rank, .plan, .step, .fcard, .compare__col--pro {
  transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: "Lexend", system-ui, sans-serif; line-height: 1.1; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

.grad {
  background: linear-gradient(100deg, var(--primary), var(--accent) 55%, #5b8bff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: .8rem; --pad-x: 1.3rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: var(--pad-y) var(--pad-x);
  border: 1px solid transparent; border-radius: 999px;
  font-family: "Lexend", sans-serif; font-weight: 600; font-size: .98rem;
  cursor: pointer; transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid rgba(37,99,235,.55); outline-offset: 2px; }
.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-primary); }
.btn--primary:hover { background: var(--primary-600); }
.btn--ghost { color: var(--text); border-color: var(--border); box-shadow: var(--shadow-sm); background: var(--surface); }
.btn--ghost:hover { border-color: color-mix(in srgb, var(--primary) 40%, var(--border)); }
.btn--lg { --pad-y: 1rem; --pad-x: 1.7rem; font-size: 1.05rem; }
.btn--sm { --pad-y: .55rem; --pad-x: 1rem; font-size: .9rem; }
.btn--block { display: flex; width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.nav.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); background: var(--nav-bg-scrolled); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: .55rem; font-family: "Lexend", sans-serif; font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em; color: var(--text); }
.brand__mark {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-700));
  box-shadow: var(--shadow-primary);
}
.brand__icon { width: 28px; height: 28px; object-fit: contain; display: block; }
.brand__rd { color: var(--primary); margin-left: 1px; }
:root[data-theme="dark"] .brand__rd { color: #6f6fff; }
.nav__right { display: flex; align-items: center; gap: 1.2rem; }
.nav__links { display: flex; align-items: center; gap: 1.7rem; }
.nav__links a { font-weight: 500; color: var(--text); font-size: .98rem; transition: color .2s; }
.nav__links a:not(.btn):hover { color: var(--primary); }
.nav__cta { color: #fff !important; }
/* Botón de tema */
.theme-toggle { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); background: var(--surface); color: var(--text); cursor: pointer; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), border-color .2s, color .2s; margin-left: .5rem; }
.theme-toggle:hover { transform: translateY(-2px); color: var(--primary); border-color: color-mix(in srgb, var(--primary) 40%, var(--border)); }
.theme-toggle:focus-visible { outline: 3px solid rgba(29,78,216,.5); outline-offset: 2px; }
.theme-toggle__moon { display: none; }
:root[data-theme="dark"] .theme-toggle__sun { display: none; }
:root[data-theme="dark"] .theme-toggle__moon { display: block; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Pills / eyebrow ---------- */
.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  padding: .45rem .9rem; font-size: .85rem; font-weight: 600; color: var(--text);
  box-shadow: var(--shadow-sm);
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(29,78,216,.18); }
.eyebrow { display: inline-block; font-family: "Lexend", sans-serif; font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); margin-bottom: .8rem; }
.eyebrow--light { color: #8fb0ff; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero__glow {
  position: absolute; inset: -20% -10% auto -10%; height: 600px; z-index: 0; pointer-events: none;
  background:
    radial-gradient(45% 50% at 78% 18%, rgba(209,31,45,.22), transparent 70%),
    radial-gradient(40% 45% at 12% 8%, rgba(37,99,235,.16), transparent 70%),
    radial-gradient(35% 40% at 60% 0%, rgba(29,78,216,.14), transparent 70%);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
}
.hero__title { font-size: clamp(2.3rem, 5.4vw, 4rem); font-weight: 800; margin: 1.1rem 0 1.1rem; }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); max-width: 36ch; }
.hero__sub strong { color: var(--text); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 2rem; }
.hero__stats { display: flex; gap: clamp(1rem, 3vw, 2.2rem); flex-wrap: wrap; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: "Lexend", sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--text); line-height: 1; }
.hero__stats span { font-size: .85rem; color: var(--muted); max-width: 16ch; margin-top: .35rem; }

/* ---------- Phone mockup ---------- */
.hero__device { position: relative; display: grid; place-items: center; }
.device-blob {
  position: absolute; width: 115%; aspect-ratio: 1; z-index: 0;
  background: conic-gradient(from 140deg, rgba(209,31,45,.18), rgba(37,99,235,.16), rgba(29,78,216,.18), rgba(209,31,45,.18));
  filter: blur(60px); border-radius: 50%;
}
.phone {
  position: relative; z-index: 1;
  width: min(320px, 78vw); aspect-ratio: 320 / 660;
  background: #0c1124; border-radius: 44px; padding: 12px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,.06);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-12px) } }
.phone__notch { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 120px; height: 26px; background: #0c1124; border-radius: 0 0 16px 16px; z-index: 4; }
.phone__screen { position: relative; height: 100%; background: linear-gradient(180deg, #eef1f8, #e3e8f4); border-radius: 33px; overflow: hidden; display: flex; flex-direction: column; color: #0e1426; }

.appbar { display: flex; align-items: center; justify-content: space-between; padding: 34px 16px 12px; background: #fff; }
.appbar__loc { display: flex; flex-direction: column; }
.appbar__label { font-size: 10px; color: #8a92a6; text-transform: uppercase; letter-spacing: .06em; }
.appbar__place { font-family: "Lexend", sans-serif; font-weight: 600; font-size: 14px; }
.appbar__avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), #5b8bff); color: #fff; font-size: 12px; font-weight: 700; display: grid; place-items: center; }

.map { position: relative; flex: 1; background:
  linear-gradient(#dfe5f2 1px, transparent 1px) 0 0 / 100% 26px,
  linear-gradient(90deg, #dfe5f2 1px, transparent 1px) 0 0 / 26px 100%,
  #eaeefb; }
.map__route { position: absolute; left: 22%; top: 24%; width: 56%; height: 46%; border: 3px dashed var(--primary); border-radius: 40% 60% 55% 45%; opacity: .85; }
.map__pin { position: absolute; width: 26px; height: 26px; border-radius: 50% 50% 50% 2px; display: grid; place-items: center; color: #fff; font-size: 11px; font-weight: 700; font-family: "Lexend", sans-serif; line-height: 1; box-shadow: var(--shadow); }
.map__pin--a { background: var(--blue); left: 20%; top: 20%; }
.map__pin--b { background: var(--primary); right: 20%; bottom: 28%; }
.moto-chip { position: absolute; top: 12px; left: 12px; background: #fff; border-radius: 999px; padding: 6px 11px; font-size: 11px; font-weight: 600; display: flex; align-items: center; gap: 6px; box-shadow: var(--shadow); }
.moto-chip__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(29,78,216,.25); }

.sheet { background: #fff; border-radius: 22px 22px 0 0; padding: 10px 14px 16px; box-shadow: 0 -10px 30px rgba(13,19,38,.12); }
.sheet__grab { width: 40px; height: 4px; background: #d7dcec; border-radius: 4px; margin: 0 auto 10px; }
.sheet__title { font-family: "Lexend", sans-serif; font-weight: 600; font-size: 13px; margin-bottom: 8px; }
.sheet__cta { margin-top: 10px; width: 100%; border: 0; border-radius: 12px; padding: 11px; background: var(--primary); color: #fff; font-family: "Lexend", sans-serif; font-weight: 600; font-size: 13px; cursor: pointer; }

.rider { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid #f0f2f8; }
.rider:last-of-type { border-bottom: 0; }
.rider__avatar { width: 38px; height: 38px; border-radius: 12px; background: linear-gradient(135deg, var(--primary), #3b6fe0); color: #fff; font-weight: 700; font-size: 13px; display: grid; place-items: center; flex-shrink: 0; }
.rider__avatar--2 { background: linear-gradient(135deg, var(--accent), #5b8bff); }
.rider__info { flex: 1; min-width: 0; }
.rider__name { font-family: "Lexend", sans-serif; font-weight: 600; font-size: 13px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.rider__meta { font-size: 11px; color: #5c6478; }
.rider__rate { text-align: right; }
.stars { color: var(--gold); font-size: 12px; font-weight: 700; display: block; }
.rider__price { font-family: "Lexend", sans-serif; font-weight: 700; font-size: 13px; }

.badge { font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 999px; letter-spacing: .03em; }
.badge--diamond { background: #e7f0ff; color: var(--blue); }
.badge--gold { background: #fff3d6; color: #b9810a; }

/* ---------- Strip (problem) ---------- */
.strip { background: var(--bg); color: var(--text); padding: clamp(2.5rem,5vw,4rem) 0; }
.strip__lead { text-align: center; color: var(--primary); font-family: "Lexend", sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; margin-bottom: 2rem; }
.strip__items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.strip__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.strip__num { font-family: "Lexend", sans-serif; font-weight: 800; font-size: 2.2rem; background: linear-gradient(120deg,var(--primary),#4f8bff); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; margin-bottom: .4rem; }
.strip__item p { color: var(--muted); font-size: .98rem; }
.strip__item strong { color: var(--text); }
.strip__solution { text-align: center; margin-top: 2.2rem; font-family: "Lexend", sans-serif; font-weight: 600; font-size: clamp(1.2rem,2.4vw,1.7rem); }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-alt); color: var(--text); }
.section__head { max-width: 680px; margin: 0 auto clamp(2.2rem,4vw,3.4rem); text-align: center; }
.section__title { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 800; }
.section__lead { color: var(--muted); margin-top: .9rem; font-size: 1.1rem; }
.section__lead--light { color: var(--muted); }

/* ----- Acento por perfil en cada sección de detalle ----- */
.acc-pax   { --acc: #1d4ed8; --acc-ink: #1d4ed8; --acc-soft: #5b8bff; --acc-on: #fff; }
.acc-rider { --acc: #f0a020; --acc-ink: #a86c08; --acc-soft: #ffc24d; --acc-on: #2a1c00; }
.acc-boss  { --acc: #1f9d57; --acc-ink: #15824a; --acc-soft: #46c97e; --acc-on: #fff; }
.acc-biz   { --acc: #d11f2d; --acc-ink: #c81a28; --acc-soft: #ff5a67; --acc-on: #fff; }

.acc { position: relative; }
.acc::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--acc), var(--acc-soft)); z-index: 2; }
.acc .eyebrow { color: var(--acc-ink); }
.acc .eyebrow--light { color: var(--acc-ink); }
:root[data-theme="dark"] .acc .eyebrow--light { color: var(--acc-soft); }
.acc .btn--primary { background: var(--acc); color: var(--acc-on); box-shadow: 0 14px 30px color-mix(in srgb, var(--acc) 35%, transparent); }
.acc .btn--primary:hover { background: color-mix(in srgb, var(--acc) 86%, #000); color: var(--acc-on); }

/* Emprendedores: plan destacado en rojo */
.acc-biz .plan--featured { border-color: var(--acc); }
.acc-biz .plan__badge { background: var(--acc); color: #fff; box-shadow: 0 8px 20px color-mix(in srgb, var(--acc) 40%, transparent); }

/* Jefes de parada: panel y precio en verde */
.acc-boss .panel__btn { background: var(--acc); }
.acc-boss .pstat strong { color: var(--acc-soft); }
.acc-boss .price-tag__amount { color: var(--acc-soft); }
.acc-boss .panel__live, .acc-boss .panel__gps { color: var(--acc-soft); }
.acc-boss .live-dot, .acc-boss .dot--ok { background: var(--acc); }

/* ---------- Perfiles (4 cards) ---------- */
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.profile {
  position: relative; overflow: hidden; isolation: isolate;
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem 1.5rem; box-shadow: var(--shadow-sm); color: var(--text);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
/* Franja superior con el color del perfil */
.profile::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--pc), var(--pc2)); opacity: 0; transition: opacity .3s var(--ease);
}
/* Resplandor del color en la esquina */
.profile::after {
  content: ""; position: absolute; top: -40px; right: -40px; width: 150px; height: 150px; z-index: -1;
  background: radial-gradient(circle, color-mix(in srgb, var(--pc) 28%, transparent), transparent 70%);
  opacity: .5; transition: opacity .3s var(--ease);
}
.profile:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg), 0 18px 40px color-mix(in srgb, var(--pc) 22%, transparent); border-color: color-mix(in srgb, var(--pc) 45%, var(--border)); }
.profile:hover::before { opacity: 1; }
.profile:hover::after { opacity: 1; }
.profile:focus-visible { outline: 3px solid color-mix(in srgb, var(--pc) 60%, transparent); outline-offset: 3px; }
/* Color representativo por perfil */
.profile--pax   { --pc: var(--c-pax);   --pc2: var(--c-pax-2); }
.profile--rider { --pc: var(--c-rider); --pc2: var(--c-rider-2); }
.profile--boss  { --pc: var(--c-boss);  --pc2: var(--c-boss-2); }
.profile--biz   { --pc: var(--c-biz);   --pc2: var(--c-biz-2); }

.profile__index {
  position: absolute; top: 1rem; right: 1.2rem; font-family: "Lexend", sans-serif; font-weight: 800;
  font-size: 2.6rem; line-height: 1; color: transparent;
  -webkit-text-stroke: 1.5px color-mix(in srgb, var(--pc) 35%, transparent);
  opacity: .55; transition: opacity .3s var(--ease);
}
.profile:hover .profile__index { opacity: 1; }
.profile__top { display: flex; align-items: center; gap: .85rem; margin-bottom: 1rem; }
.profile__icon { flex-shrink: 0; width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--pc), var(--pc2)); box-shadow: 0 8px 18px color-mix(in srgb, var(--pc) 40%, transparent); transition: transform .3s var(--ease); }
.profile:hover .profile__icon { transform: scale(1.08) rotate(-4deg); }
.profile__icon svg { width: 27px; height: 27px; }
.profile__top h3 { font-size: 1.2rem; line-height: 1.15; }
.profile p { color: var(--muted); font-size: .97rem; }
.profile__chips { display: flex; flex-wrap: wrap; gap: .4rem; margin: 1rem 0 1.2rem; }
.profile__chips li {
  font-family: "Lexend", sans-serif; font-size: .74rem; font-weight: 600; padding: .28rem .65rem; border-radius: 999px;
  background: color-mix(in srgb, var(--pc) 12%, transparent);
  color: color-mix(in srgb, var(--pc) 72%, var(--text));
  border: 1px solid color-mix(in srgb, var(--pc) 22%, transparent);
}
.profile__link { margin-top: auto; display: inline-flex; align-items: center; gap: .4rem; color: var(--pc); font-weight: 700; font-family: "Lexend", sans-serif; font-size: .92rem; }
.profile__arrow { transition: transform .25s var(--ease); }
.profile:hover .profile__arrow { transform: translateX(5px); }

/* Etiqueta de fase en las tarjetas */
.phase-badge { align-self: flex-start; display: inline-flex; align-items: center; gap: .3rem; font-family: "Lexend", sans-serif; font-weight: 700; font-size: .66rem; letter-spacing: .04em; text-transform: uppercase; padding: .26rem .6rem; border-radius: 999px; margin-bottom: .9rem; }
.phase-badge--now { background: #1f9d57; color: #fff; }
.phase-badge--soon { background: #f0a020; color: #2a1c00; }

/* ---------- Roadmap ---------- */
.roadmap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.rstep {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.9rem 1.6rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.rstep::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--rc); }
.rstep:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.rstep--now    { --rc: #1f9d57; --rc-ink: #15824a; border-color: color-mix(in srgb, #1f9d57 38%, var(--border)); box-shadow: var(--shadow); }
.rstep--soon   { --rc: #f0a020; --rc-ink: #a86c08; }
.rstep--future { --rc: #8a92a6; --rc-ink: var(--muted); }
.rstep__marker { width: 14px; height: 14px; border-radius: 50%; background: var(--rc); box-shadow: 0 0 0 5px color-mix(in srgb, var(--rc) 22%, transparent); margin-bottom: 1.1rem; }
.rstep__phase { font-family: "Lexend", sans-serif; font-weight: 700; font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; color: var(--rc-ink); }
.rstep h3 { font-size: 1.2rem; margin: .45rem 0 .6rem; }
.rstep p { color: var(--muted); font-size: .95rem; }
.rstep__list { display: grid; gap: .5rem; margin: 1.1rem 0 1.3rem; }
.rstep__list li { position: relative; padding-left: 1.4rem; font-size: .92rem; color: var(--text); }
.rstep__list li::before { content: ""; position: absolute; left: 0; top: .5em; width: 7px; height: 7px; border-radius: 50%; background: var(--rc); }
.rstep__status { margin-top: auto; align-self: flex-start; font-family: "Lexend", sans-serif; font-weight: 700; font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; padding: .32rem .75rem; border-radius: 999px; }
.rstep__status--now { background: #1f9d57; color: #fff; }
.rstep__status--soon { background: #f0a020; color: #2a1c00; }
.rstep__status--future { background: color-mix(in srgb, var(--muted-2) 16%, transparent); color: var(--muted); border: 1px solid var(--border); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: step; }
.step { position: relative; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.6rem; }
.section--alt .step { background: var(--surface-2); }
.step__n { font-family: "Lexend", sans-serif; font-weight: 800; font-size: 2.4rem; color: transparent; -webkit-text-stroke: 2px var(--primary); display: block; margin-bottom: .6rem; opacity: .85; }
.step h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.step p { color: var(--muted); font-size: .97rem; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 4rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__copy .section__title { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.ticks { margin: 1.4rem 0 1.8rem; display: grid; gap: .7rem; }
.ticks li { position: relative; padding-left: 2rem; color: var(--text); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(29,78,216,.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* feature stack (pasajeros media) */
.feature-stack { display: grid; gap: 1rem; }
.fcard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.3rem; box-shadow: var(--shadow); }
.fcard__row { display: flex; align-items: center; gap: .8rem; margin-bottom: .9rem; }
.fcard__row > div:nth-child(2) { flex: 1; }
.heart { margin-left: auto; background: #e6e9ff; color: var(--primary); border: 0; width: 36px; height: 36px; border-radius: 50%; font-size: 18px; cursor: pointer; }
.review { background: var(--bg); border-radius: 12px; padding: .7rem .9rem; font-size: .9rem; color: var(--muted); margin-top: .55rem; }
.fcard--mini { display: flex; align-items: center; justify-content: space-between; }
.fcard__k { color: var(--muted); font-weight: 600; }
.fcard__v { font-family: "Lexend", sans-serif; font-weight: 700; color: var(--accent); }

/* ---------- Compare (motoristas) ---------- */
.compare { display: grid; grid-template-columns: 1fr 1.15fr; gap: 1.4rem; max-width: 920px; margin: 0 auto; align-items: stretch; }
.compare__col { border-radius: var(--radius-lg); padding: 1.8rem; }
.compare__col--free { background: var(--surface); border: 1px solid var(--border); }
.compare__col--pro { background: var(--card-pro); color: var(--text); box-shadow: var(--shadow-lg); position: relative; }
.compare__tag { display: inline-block; font-family: "Lexend", sans-serif; font-weight: 700; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1rem; }
.compare__tag--pro { color: var(--primary); }
.x-list li, .check-list li { position: relative; padding-left: 1.9rem; margin-bottom: .7rem; font-size: .98rem; }
.x-list li { color: var(--muted); }
.x-list li::before { content: "✕"; position: absolute; left: 0; color: #ff6b6b; font-weight: 700; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.check-list { margin-bottom: 1.4rem; }

/* CV benefits */
.cv-benefits { margin-top: 3rem; text-align: center; }
.cv-benefits h3 { color: var(--text); font-size: 1.4rem; margin-bottom: 1.5rem; }
.cv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.cv-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem 1.1rem; text-align: left; box-shadow: var(--shadow-sm); }
.cv-item__ico { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; background: rgba(209,31,45,.16); color: var(--primary); font-size: 20px; font-weight: 700; margin-bottom: .8rem; }
.cv-item p { color: var(--muted); font-size: .92rem; }

/* ---------- Rangos ---------- */
.ranks { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.rank {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem 1.1rem; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.rank:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.rank--featured { background: linear-gradient(165deg, var(--ink), var(--ink-3)); color: #fff; border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.rank--featured p { color: #c2c9dd; }
.rank--featured .rank__req { background: rgba(255,255,255,.12); color: #ffd0d4; }
.rank__medal { font-size: 2rem; display: block; margin-bottom: .5rem; }
.rank h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.rank__req { display: inline-block; font-size: .72rem; font-weight: 700; font-family: "Lexend", sans-serif; background: #e6e9ff; color: var(--primary-700); padding: .25rem .6rem; border-radius: 999px; margin-bottom: .7rem; }
.rank p { font-size: .82rem; color: var(--muted); line-height: 1.45; }

/* Gamify */
.gamify { margin-top: 3rem; background: linear-gradient(135deg, var(--ink), #14224a); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.8rem); color: #fff; display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; align-items: center; overflow: hidden; position: relative; }
.gamify::after { content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(209,31,45,.35), transparent 65%); }
.gamify__copy .eyebrow { color: #8fb0ff; }
.gamify__copy h3 { font-size: 1.6rem; margin-bottom: .7rem; }
.gamify__copy p { color: #c2c9dd; }
.gamify__chips { display: flex; flex-wrap: wrap; gap: .7rem; position: relative; z-index: 1; }
.chip { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: #fff; padding: .6rem 1rem; border-radius: 999px; font-weight: 600; font-size: .92rem; font-family: "Lexend", sans-serif; }
.chip--crystal { background: rgba(37,99,235,.25); border-color: rgba(91,139,255,.4); }
.chip--local { background: rgba(209,31,45,.22); border-color: rgba(255,154,60,.45); }

/* ---------- Price tag / panel ---------- */
.price-tag { display: inline-flex; align-items: baseline; gap: .5rem; background: var(--ink); color: #fff; border-radius: 999px; padding: .7rem 1.3rem; }
.price-tag__amount { font-family: "Lexend", sans-serif; font-weight: 800; font-size: 1.5rem; color: #8fb0ff; }
.price-tag__period { color: #b9c0d4; font-size: .9rem; }

.panel { background: var(--ink); border-radius: var(--radius-lg); padding: 1.6rem; color: #fff; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.08); }
.panel__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.panel__title { font-family: "Lexend", sans-serif; font-weight: 700; }
.panel__live { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--accent); }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 1.6s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(29,78,216,.5) } 70% { box-shadow: 0 0 0 8px rgba(29,78,216,0) } 100% { box-shadow: 0 0 0 0 rgba(29,78,216,0) } }
.panel__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-bottom: 1.2rem; }
.pstat { background: var(--ink-2); border-radius: 12px; padding: .9rem; text-align: center; }
.pstat strong { font-family: "Lexend", sans-serif; font-size: 1.5rem; display: block; color: #8fb0ff; }
.pstat span { font-size: .78rem; color: #aab2c8; }
.panel__row { display: flex; align-items: center; gap: .6rem; padding: .7rem .2rem; border-bottom: 1px solid rgba(255,255,255,.07); font-size: .92rem; }
.panel__row--muted { color: #8a92a6; }
.panel__gps { margin-left: auto; font-size: .8rem; color: var(--accent); }
.panel__row--muted .panel__gps { color: #8a92a6; }
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot--ok { background: var(--accent); }
.dot--off { background: #5c6478; }
.panel__btn { margin-top: 1.1rem; width: 100%; border: 0; border-radius: 12px; padding: .8rem; background: var(--primary); color: #fff; font-family: "Lexend", sans-serif; font-weight: 600; cursor: pointer; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; max-width: 960px; margin: 0 auto; align-items: stretch; }
.plan { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.7rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan--featured { border: 2px solid var(--primary); box-shadow: var(--shadow-lg); }
.plan__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-family: "Lexend", sans-serif; font-weight: 700; font-size: .75rem; padding: .3rem .9rem; border-radius: 999px; box-shadow: var(--shadow-primary); }
.plan__name { font-size: 1.3rem; }
.plan__price { font-family: "Lexend", sans-serif; font-weight: 800; font-size: 2.1rem; margin: .6rem 0 1.2rem; }
.plan__price span { font-size: .95rem; font-weight: 500; color: var(--muted); }
.plan__feats { display: grid; gap: .65rem; margin-bottom: 1.6rem; flex: 1; }
.plan__feats li { position: relative; padding-left: 1.7rem; font-size: .96rem; color: var(--text); }
.plan__feats li::before { content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; }
.pricing__note { text-align: center; color: var(--muted); margin-top: 1.6rem; font-size: .98rem; }
.pricing__preview { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .7rem; max-width: 760px; margin: 0 auto 1.8rem; padding: .8rem 1.2rem; border: 1px dashed var(--border); border-radius: 999px; background: var(--surface); color: var(--muted); font-size: .95rem; text-align: center; }
.pricing__preview-tag { flex-shrink: 0; font-family: "Lexend", sans-serif; font-weight: 700; font-size: .75rem; letter-spacing: .05em; text-transform: uppercase; background: var(--c-rider); color: #2a1c00; padding: .28rem .7rem; border-radius: 999px; }
.price-tag__period em { font-style: italic; opacity: .8; }

/* Botones de tienda en estado "próximamente" */
.store--soon { cursor: not-allowed; opacity: .82; position: relative; }
.store--soon::after { content: "Pronto"; position: absolute; top: -8px; right: -8px; background: var(--c-rider); color: #2a1c00; font-family: "Lexend", sans-serif; font-weight: 700; font-size: .62rem; letter-spacing: .03em; padding: .15rem .45rem; border-radius: 999px; box-shadow: var(--shadow-sm); }

/* ---------- Marca / Splash ---------- */
.brand-showcase .split { align-items: center; }
.showcase__logo { width: clamp(220px, 30vw, 340px); height: auto; margin: .4rem 0 1.2rem; }
.showcase__logo--on-dark { display: none; }
:root[data-theme="dark"] .showcase__logo--on-light { display: none; }
:root[data-theme="dark"] .showcase__logo--on-dark { display: block; }
.showcase__text { color: var(--muted); font-size: 1.12rem; max-width: 46ch; margin-bottom: 1.8rem; }
.showcase__text strong { color: var(--text); }

.phone--splash { margin-inline: auto; }
/* Marco blanco en modo oscuro para que el teléfono resalte */
:root[data-theme="dark"] .phone--splash { background: #fff; box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(0,0,0,.06); }
:root[data-theme="dark"] .phone--splash .phone__notch { background: #fff; }
.phone__screen--splash {
  background: radial-gradient(circle at 50% 32%, #21219c, #000080 72%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.1rem; padding: 2rem;
}
.splash__logo { width: 66%; max-width: 210px; height: auto; filter: drop-shadow(0 8px 24px rgba(0,0,0,.35)); animation: splashPop 1.1s var(--ease) both; }
@keyframes splashPop { 0% { opacity: 0; transform: scale(.82); } 60% { opacity: 1; transform: scale(1.04); } 100% { transform: scale(1); } }
.splash__tagline { color: rgba(255,255,255,.92); font-family: "Lexend", sans-serif; font-weight: 600; font-size: 1rem; letter-spacing: .01em; text-align: center; }
.splash__loader { width: 120px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.18); overflow: hidden; }
.splash__loader i { display: block; height: 100%; width: 40%; border-radius: 4px; background: #fff; animation: splashLoad 1.6s var(--ease) infinite; }
@keyframes splashLoad { 0% { transform: translateX(-120%); } 100% { transform: translateX(320%); } }

/* ---------- CTA ---------- */
.cta { padding: clamp(3rem, 6vw, 5.5rem) 0; background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 20% 20%, rgba(42,42,194,.28), transparent 60%), radial-gradient(45% 55% at 85% 80%, rgba(37,99,235,.2), transparent 60%); pointer-events: none; }
.cta__inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.cta__logo { width: clamp(150px, 22vw, 220px); height: auto; margin-bottom: 1.2rem; }
.cta__copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); font-weight: 800; }
.cta__copy > p { color: #c2c9dd; margin: 1rem 0 1.8rem; font-size: 1.1rem; max-width: 42ch; }
.store-btns { display: flex; flex-wrap: wrap; gap: .9rem; }
.store { display: inline-flex; align-items: center; gap: .7rem; background: #fff; color: var(--ink); border-radius: 14px; padding: .7rem 1.2rem; transition: transform .2s var(--ease); }
.store:hover { transform: translateY(-3px); }
.store--soon:hover { transform: none; }
.store span { display: flex; flex-direction: column; line-height: 1.15; }
.store small { font-size: .68rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.store strong { font-family: "Lexend", sans-serif; font-size: 1.05rem; }
.cta__soon { margin-top: 1.2rem; font-size: .85rem; color: #8a92a6; }

.cta__form { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 1.8rem; backdrop-filter: blur(8px); }
.cta__form h3 { font-size: 1.3rem; margin-bottom: .3rem; }
.cta__form > p { color: #aab2c8; font-size: .95rem; margin-bottom: 1.3rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; color: #d6dbeb; }
.field input, .field select { width: 100%; padding: .8rem 1rem; border-radius: 12px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); color: #fff; font-family: inherit; font-size: 1rem; }
.field input::placeholder { color: #7d869c; }
.field input:focus, .field select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(209,31,45,.25); }
.field select option { color: #0e1426; }
.field__error { display: block; color: #ff8a8a; font-size: .82rem; margin-top: .35rem; min-height: 1em; }
.cta__success { color: var(--accent); font-weight: 600; margin-top: 1rem; text-align: center; }

/* Tarjeta CTA con enlace a Google Form */
.cta__card { text-align: left; }
.cta__card-badge { display: inline-block; font-family: "Lexend", sans-serif; font-weight: 700; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); padding: .3rem .75rem; border-radius: 999px; margin-bottom: 1rem; }
.cta__card .btn { margin-top: .4rem; }
.cta__card-perks { display: grid; gap: .55rem; margin: 1.3rem 0 1rem; }
.cta__card-perks li { position: relative; padding-left: 1.7rem; font-size: .92rem; color: #d6dbeb; }
.cta__card-perks li::before { content: ""; position: absolute; left: 0; top: 3px; width: 16px; height: 16px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2346c97e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; }
.cta__card-note { color: #8a92a6; font-size: .82rem; text-align: center; margin-top: .2rem; }

/* ---------- Footer ---------- */
.footer { background: #070b16; color: #aab2c8; padding: clamp(2.5rem,5vw,3.5rem) 0 1.5rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.brand--footer { color: #fff; margin-bottom: 1rem; }
.brand--footer .brand__rd { color: #6f6fff; }
.footer__tag { font-size: .92rem; max-width: 32ch; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer__col a { display: block; padding: .35rem 0; font-size: .92rem; transition: color .2s; }
.footer__col a:hover { color: var(--primary); }
.footer__bottom { max-width: var(--maxw); margin: 2.5rem auto 0; padding: 1.5rem 22px 0; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .82rem; color: #6b7488; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { order: 2; }
  .hero__device { order: 1; }
  .hero__sub { margin-inline: auto; }
  .hero__stats { justify-content: center; }
  .pill { margin-inline: auto; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .cv-grid { grid-template-columns: repeat(2, 1fr); }
  .ranks { grid-template-columns: repeat(3, 1fr); }
  .gamify { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .nav__links {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--nav-mobile-bg); backdrop-filter: blur(14px); padding: 1.2rem 22px 1.6rem;
    gap: .3rem; border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
    transform: translateY(-130%); transition: transform .35s var(--ease); visibility: hidden;
  }
  .nav__links.open { transform: translateY(0); visibility: visible; }
  .nav__links a { padding: .8rem .4rem; border-bottom: 1px solid var(--border); }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__cta { margin-top: .5rem; }
  .nav__toggle { display: flex; }
  .strip__items { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .roadmap { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .compare { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; max-width: 420px; }
  .plan--featured { order: -1; }
  .cta__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .cards-4 { grid-template-columns: 1fr; }
  .cv-grid { grid-template-columns: 1fr; }
  .ranks { grid-template-columns: repeat(2, 1fr); }
  .hero__stats { gap: 1.2rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .rank--featured, .plan--featured { transform: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .phone { animation: none; }
}
