/* ===========================================================
   RospARking — sitio institucional
   Sistema visual: dark navy + naranja, tipografía técnica
   =========================================================== */

:root {
  /* superficies */
  --bg:        #070a18;
  --bg-2:      #0a0e22;
  --panel:     #0e1430;
  --panel-2:   #131a3d;
  --surface:   #161e45;
  --border:    rgba(150, 162, 220, 0.14);
  --border-2:  rgba(150, 162, 220, 0.22);

  /* marca */
  --indigo:        #1a237e;
  --indigo-bright: #5868ff;
  --indigo-glow:   rgba(88, 104, 255, 0.40);
  --orange:        #ff6f00;
  --orange-soft:   #ff8a2b;
  --orange-glow:   rgba(255, 111, 0, 0.35);

  /* texto */
  --text:      #eef0fb;
  --text-mid:  #b9c0e4;
  --text-dim:  #8189b6;
  --text-faint:#5a608c;

  /* otros */
  --ok:        #2fd576;
  --maxw:      1200px;
  --radius:    16px;
  --radius-sm: 10px;

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body:    "IBM Plex Sans", system-ui, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, monospace;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--orange); color: #1a0c00; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

.mono { font-family: var(--font-mono); }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.section { padding: clamp(80px, 11vw, 150px) 0; position: relative; }
.section-sm { padding: clamp(56px, 7vw, 90px) 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-soft);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--orange);
}

.h-sec { font-size: clamp(30px, 4.6vw, 52px); }
.lead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-mid);
  max-width: 60ch;
  line-height: 1.6;
}

.accent { color: var(--orange-soft); }
.indigo-text { color: var(--indigo-bright); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 15.5px;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: var(--orange);
  color: #160a00;
  box-shadow: 0 6px 26px -8px var(--orange-glow);
}
.btn-primary:hover { background: var(--orange-soft); transform: translateY(-2px); box-shadow: 0 12px 34px -8px var(--orange-glow); }
.btn-ghost {
  background: rgba(255,255,255,0.03);
  border-color: var(--border-2);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--indigo-bright); background: rgba(88,104,255,0.08); transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 16.5px; }

/* ---------- nav ---------- */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
header.nav.scrolled {
  background: rgba(7, 10, 24, 0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700; font-size: 21px;
  letter-spacing: -0.03em;
  display: inline-flex; align-items: center; gap: 11px;
}
.brand-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(150deg, var(--indigo-bright), var(--indigo));
  display: grid; place-items: center;
  font-size: 16px; font-weight: 700; color: #fff;
  box-shadow: 0 4px 16px -4px var(--indigo-glow), inset 0 1px 0 rgba(255,255,255,.25);
}
.brand .ar { color: var(--orange-soft); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a.link {
  font-size: 14.5px; color: var(--text-mid); font-weight: 500;
  transition: color .18s;
}
.nav-links a.link:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }
.nav-toggle span + span { margin-top: 5px; }

/* ---------- decorative bg ---------- */
.grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  opacity: .5;
}
.glow {
  position: absolute; border-radius: 50%; filter: blur(90px);
  pointer-events: none; z-index: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: 150px; overflow: hidden; }
.hero .glow-1 { width: 620px; height: 620px; top: -260px; left: -160px; background: radial-gradient(circle, rgba(88,104,255,.30), transparent 70%); }
.hero .glow-2 { width: 520px; height: 520px; top: -120px; right: -180px; background: radial-gradient(circle, var(--orange-glow), transparent 70%); }

.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .04em;
  color: var(--text-mid);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-2);
  padding: 7px 14px; border-radius: 100px; margin-bottom: 26px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(47,213,118,.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(47,213,118,.55);} 70%{box-shadow:0 0 0 7px rgba(47,213,118,0);} 100%{box-shadow:0 0 0 0 rgba(47,213,118,0);} }

.hero h1 { font-size: clamp(38px, 5.6vw, 70px); font-weight: 700; }
.hero h1 .hl { color: var(--orange-soft); }
.hero-sub { margin-top: 24px; font-size: clamp(17px, 2vw, 20px); color: var(--text-mid); max-width: 52ch; }
.hero-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 40px; display: flex; gap: 30px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--text-dim);
}
.hero-meta div { display: flex; align-items: center; gap: 8px; }
.hero-meta b { color: var(--text); font-family: var(--font-mono); font-weight: 500; }
.check { width: 16px; height: 16px; flex: none; color: var(--orange-soft); }

/* ---------- dashboard mock ---------- */
.mock {
  position: relative; z-index: 2;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border-2);
  border-radius: 18px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.05);
  overflow: hidden;
}
.mock-top {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 16px; border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,.18);
}
.mock-dot { width: 11px; height: 11px; border-radius: 50%; }
.mock-title { margin-left: 10px; font-family: var(--font-mono); font-size: 12px; color: var(--text-dim); }
.mock-live { margin-left: auto; display: flex; align-items: center; gap: 7px; font-size: 11px; color: var(--ok); font-family: var(--font-mono); }
.mock-live .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); animation: pulse 2.4s infinite; }

.mock-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.mock-stat { background: var(--panel); padding: 16px 18px; }
.mock-stat .k { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-faint); }
.mock-stat .v { font-family: var(--font-display); font-size: 23px; font-weight: 600; margin-top: 5px; }
.mock-stat .v.green { color: var(--ok); }

.mock-body { padding: 8px 0 12px; }
.mock-rowhead, .mock-row {
  display: grid; grid-template-columns: 1.2fr 1fr 0.9fr 0.9fr; gap: 8px;
  padding: 9px 18px; align-items: center;
}
.mock-rowhead { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); }
.mock-row { font-size: 13.5px; border-top: 1px solid var(--border); transition: background .3s; }
.mock-row:hover { background: rgba(88,104,255,.06); }
.plate {
  font-family: var(--font-mono); font-weight: 600; font-size: 12.5px;
  background: #e8eaf2; color: #11132a;
  padding: 3px 8px; border-radius: 5px; letter-spacing: .06em;
  display: inline-block; border: 1px solid #b8bcd0;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.08);
}
.mock-row .ty { color: var(--text-dim); }
.mock-row .mt { font-family: var(--font-mono); color: var(--text); }
.tag-abono { font-family: var(--font-mono); font-size: 10.5px; color: var(--indigo-bright); background: rgba(88,104,255,.12); padding: 2px 7px; border-radius: 5px; border: 1px solid rgba(88,104,255,.25); }

/* floating mini-ticket */
.mini-ticket {
  position: absolute; right: -22px; bottom: -26px; z-index: 3;
  width: 168px;
  background: #f4f1e9; color: #1a1a1a;
  font-family: var(--font-mono); font-size: 10px; line-height: 1.5;
  padding: 14px 14px 18px;
  border-radius: 4px;
  box-shadow: 0 24px 50px -14px rgba(0,0,0,.7);
  transform: rotate(3.5deg);
  -webkit-mask-image: radial-gradient(circle at 6px 100%, transparent 0 5px, #000 5px), radial-gradient(circle at 18px 100%, transparent 0 5px, #000 5px);
}
.mini-ticket .tk-c { text-align: center; }
.mini-ticket .tk-b { font-weight: 700; font-size: 11px; letter-spacing: .04em; }
.mini-ticket hr { border: none; border-top: 1px dashed #b3ada0; margin: 8px 0; }
.mini-ticket .tk-row { display: flex; justify-content: space-between; }

/* ============================================================
   marquee / medios de pago
   ============================================================ */
.strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); padding: 26px 0; overflow: hidden; }
.strip-label { text-align: center; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 18px; }
.marquee { display: flex; gap: 56px; width: max-content; animation: scroll-x 26s linear infinite; }
.marquee:hover { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.marquee .item { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--text-dim); white-space: nowrap; }
.marquee .item svg { width: 20px; height: 20px; color: var(--text-faint); }

/* ============================================================
   PROBLEMA / SOLUCIÓN
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 56px; }
.col-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.col-card.bad { background: rgba(255,255,255,0.015); }
.col-card.good { background: linear-gradient(180deg, rgba(88,104,255,.07), rgba(255,111,0,.04)); border-color: var(--border-2); }
.col-card h3 { font-size: 14px; font-family: var(--font-mono); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 22px; }
.col-card.bad h3 { color: var(--text-faint); }
.col-card.good h3 { color: var(--orange-soft); }
.pline { display: flex; gap: 13px; padding: 11px 0; border-top: 1px solid var(--border); font-size: 15.5px; color: var(--text-mid); align-items: flex-start; }
.pline:first-of-type { border-top: none; }
.pline svg { width: 19px; height: 19px; flex: none; margin-top: 1px; }
.pline.x svg { color: #6a7099; }
.pline.v svg { color: var(--ok); }
.col-card.good .pline { color: var(--text); }

/* ============================================================
   CÓMO FUNCIONA — pasos
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; counter-reset: step; }
.step {
  position: relative; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; background: var(--panel); overflow: hidden;
}
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-mono); font-size: 13px; color: var(--orange-soft);
  position: absolute; top: 22px; right: 22px;
}
.step-ico { width: 44px; height: 44px; border-radius: 11px; background: rgba(88,104,255,.12); border: 1px solid rgba(88,104,255,.25); display: grid; place-items: center; margin-bottom: 20px; color: var(--indigo-bright); }
.step-ico svg { width: 22px; height: 22px; }
.step h4 { font-size: 19px; margin-bottom: 9px; }
.step p { font-size: 14.5px; color: var(--text-dim); line-height: 1.55; }
.step .conn { display: none; }

/* ============================================================
   FUNCIONALIDADES — grid
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.feat {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 28px; background: var(--panel);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.feat:hover { transform: translateY(-4px); border-color: var(--border-2); background: var(--panel-2); }
.feat-ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 22px; color: var(--orange-soft); background: rgba(255,111,0,.10); border: 1px solid rgba(255,111,0,.22); }
.feat-ico svg { width: 23px; height: 23px; }
.feat h4 { font-size: 19.5px; margin-bottom: 10px; }
.feat p { font-size: 14.5px; color: var(--text-dim); line-height: 1.58; }
.feat .tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.feat .tags span { font-family: var(--font-mono); font-size: 11px; color: var(--text-dim); border: 1px solid var(--border); padding: 3px 8px; border-radius: 6px; }

/* ============================================================
   AFIP feature (banded)
   ============================================================ */
.banded { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.feature-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feat-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.feat-list .fl { display: flex; gap: 14px; align-items: flex-start; }
.feat-list .fl-ic { width: 34px; height: 34px; border-radius: 9px; flex: none; display: grid; place-items: center; background: rgba(88,104,255,.12); border: 1px solid rgba(88,104,255,.24); color: var(--indigo-bright); }
.feat-list .fl-ic svg { width: 17px; height: 17px; }
.feat-list .fl h5 { font-family: var(--font-display); font-size: 16.5px; font-weight: 600; margin-bottom: 2px; }
.feat-list .fl p { font-size: 14px; color: var(--text-dim); line-height: 1.5; }

/* factura mock */
.factura {
  background: #fbfaf6; color: #1a1a1a; border-radius: 12px; padding: 26px;
  box-shadow: 0 36px 80px -28px rgba(0,0,0,.6);
  font-size: 13px; position: relative; max-width: 420px; margin: 0 auto;
}
.factura .f-top { display: flex; justify-content: space-between; border-bottom: 2px solid #1a1a1a; padding-bottom: 14px; }
.factura .f-type { width: 38px; height: 38px; border: 2px solid #1a1a1a; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.factura .f-co { font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.factura .f-co small { display: block; font-family: var(--font-mono); font-weight: 400; font-size: 10px; color: #555; }
.factura .f-meta { font-family: var(--font-mono); font-size: 11px; color: #444; text-align: right; line-height: 1.6; }
.factura .f-rows { margin: 14px 0; }
.factura .f-r { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid #e4e1d6; font-family: var(--font-mono); font-size: 12px; }
.factura .f-total { display: flex; justify-content: space-between; font-family: var(--font-display); font-weight: 700; font-size: 17px; margin-top: 10px; }
.factura .f-foot { display: flex; gap: 14px; align-items: center; margin-top: 16px; padding-top: 14px; border-top: 1px dashed #c9c5b8; }
.factura .f-qr { width: 58px; height: 58px; flex: none; border-radius: 4px; background:
  conic-gradient(#1a1a1a 0 25%, #fbfaf6 0 50%, #1a1a1a 0 75%, #fbfaf6 0 100%);
  background-size: 12px 12px; border: 3px solid #1a1a1a; }
.factura .f-foot small { font-family: var(--font-mono); font-size: 10px; color: #555; line-height: 1.5; }
.afip-badge { position: absolute; top: -12px; right: 18px; white-space: nowrap; font-family: var(--font-mono); font-size: 11px; font-weight: 500; background: var(--ok); color: #04150b; padding: 5px 11px; border-radius: 7px; box-shadow: 0 8px 20px -6px rgba(47,213,118,.5); }

/* ============================================================
   IMPRESIÓN térmica
   ============================================================ */
.thermal {
  width: 230px; margin: 0 auto;
  background: #f4f1e9; color: #181818;
  font-family: var(--font-mono); font-size: 11px; line-height: 1.6;
  padding: 20px 20px 26px;
  box-shadow: 0 30px 70px -22px rgba(0,0,0,.7);
  border-radius: 3px; position: relative;
  -webkit-mask-image: radial-gradient(circle at 7px 100%, transparent 0 6px, #000 6px), radial-gradient(circle at 21px 100%, transparent 0 6px, #000 6px), radial-gradient(circle at 35px 100%, transparent 0 6px, #000 6px);
  -webkit-mask-composite: source-over;
}
.thermal .t-c { text-align: center; }
.thermal .t-co { font-weight: 700; font-size: 14px; letter-spacing: .04em; }
.thermal hr { border: none; border-top: 1px dashed #b0a99a; margin: 10px 0; }
.thermal .t-r { display: flex; justify-content: space-between; }
.thermal .t-big { font-size: 17px; font-weight: 700; text-align: center; letter-spacing: .1em; margin: 4px 0; }
.thermal .t-tot { font-weight: 700; font-size: 13px; }

/* ============================================================
   MÉTRICAS
   ============================================================ */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.metric { text-align: center; padding: 14px; }
.metric .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(38px, 5vw, 58px); line-height: 1; background: linear-gradient(120deg, var(--text), var(--indigo-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.metric .num .u { color: var(--orange-soft); -webkit-text-fill-color: var(--orange-soft); }
.metric .lbl { margin-top: 12px; font-size: 14px; color: var(--text-dim); }

/* ============================================================
   PERFILES
   ============================================================ */
.profiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.profile { border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 28px; background: var(--panel); position: relative; }
.profile.featured { border-color: rgba(255,111,0,.35); background: linear-gradient(180deg, rgba(255,111,0,.06), var(--panel)); }
.profile .p-role { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-soft); margin-bottom: 16px; }
.profile h4 { font-size: 22px; margin-bottom: 16px; }
.profile ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.profile li { display: flex; gap: 11px; font-size: 14.5px; color: var(--text-mid); align-items: flex-start; }
.profile li svg { width: 17px; height: 17px; flex: none; margin-top: 2px; color: var(--indigo-bright); }

/* ============================================================
   ESTACIONAMIENTOS (red de clientes)
   ============================================================ */
.parks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 56px; }
.park { border: 1px solid var(--border); border-radius: var(--radius); background: var(--panel); overflow: hidden; transition: transform .22s ease, border-color .22s ease; }
.park:hover { transform: translateY(-4px); border-color: var(--border-2); }
.park-map { position: relative; height: 210px; background: var(--bg-2); border-bottom: 1px solid var(--border); }
.park-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.92) brightness(.96); }
.park-map .fallback { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-mono); font-size: 12px; color: var(--text-faint); background:
  repeating-linear-gradient(45deg, rgba(150,162,220,.04) 0 12px, transparent 12px 24px); z-index: 0; }
.park-pin { position: absolute; top: 14px; left: 14px; z-index: 2; white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; background: rgba(7,10,24,.82); backdrop-filter: blur(8px); border: 1px solid var(--border-2); color: var(--text); padding: 6px 12px; border-radius: 100px; }
.park-pin .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.park-body { padding: 24px 26px 26px; }
.park-badge { white-space: nowrap; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: var(--ok); background: rgba(47,213,118,.10); border: 1px solid rgba(47,213,118,.24); padding: 4px 10px; border-radius: 7px; margin-bottom: 16px; }
.park-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); }
.park-body h3 { font-family: var(--font-display); font-size: 23px; font-weight: 600; margin-bottom: 14px; }
.park-rows { display: flex; flex-direction: column; gap: 8px; }
.park-row { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--text-mid); padding: 3px 0; line-height: 1.4; }
.park-row svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--orange-soft); }
.park-row .soft { color: var(--text-faint); font-size: 13px; }
.park-actions { margin-top: 20px; display: flex; gap: 10px; flex-wrap: wrap; }
.park-actions .btn { font-size: 14px; padding: 11px 18px; }
.park-actions .btn svg { width: 16px; height: 16px; }

/* ============================================================
   PRECIOS
   ============================================================ */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; align-items: stretch; }
.plan { border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 30px; background: var(--panel); display: flex; flex-direction: column; }
.plan.pop { border-color: var(--orange); background: linear-gradient(180deg, rgba(255,111,0,.08), var(--panel)); box-shadow: 0 24px 60px -28px var(--orange-glow); position: relative; }
.plan-pop-tag { position: absolute; top: -12px; left: 30px; white-space: nowrap; font-family: var(--font-mono); font-size: 11px; font-weight: 500; background: var(--orange); color: #160a00; padding: 5px 12px; border-radius: 7px; }
.plan .p-name { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.plan .p-desc { font-size: 14px; color: var(--text-dim); margin: 8px 0 22px; min-height: 42px; }
.plan .p-price { font-family: var(--font-display); font-size: 30px; font-weight: 700; }
.plan .p-price small { font-family: var(--font-body); font-size: 14px; font-weight: 400; color: var(--text-dim); }
.plan .p-divider { height: 1px; background: var(--border); margin: 24px 0; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.plan li { display: flex; gap: 11px; font-size: 14.5px; color: var(--text-mid); align-items: flex-start; }
.plan li svg { width: 17px; height: 17px; flex: none; margin-top: 2px; color: var(--orange-soft); }
.plan .btn { width: 100%; justify-content: center; margin-top: 26px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 800px; margin: 50px auto 0; }
.qa { border-bottom: 1px solid var(--border); }
.qa summary { list-style: none; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-display); font-size: 18.5px; font-weight: 500; }
.qa summary::-webkit-details-marker { display: none; }
.qa .plus { width: 24px; height: 24px; flex: none; position: relative; transition: transform .25s; }
.qa .plus::before, .qa .plus::after { content: ""; position: absolute; background: var(--orange-soft); border-radius: 2px; }
.qa .plus::before { width: 14px; height: 2px; top: 11px; left: 5px; }
.qa .plus::after { width: 2px; height: 14px; top: 5px; left: 11px; transition: transform .25s; }
.qa[open] .plus::after { transform: rotate(90deg); opacity: 0; }
.qa .ans { padding: 0 0 24px; color: var(--text-dim); font-size: 15.5px; line-height: 1.65; max-width: 70ch; }

/* ============================================================
   CONTACTO
   ============================================================ */
.contact { position: relative; overflow: hidden; }
.contact .glow-c { width: 600px; height: 400px; left: 50%; top: -80px; transform: translateX(-50%); background: radial-gradient(circle, rgba(88,104,255,.18), transparent 70%); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; position: relative; z-index: 2; }
.contact-info h2 { font-size: clamp(30px, 4vw, 46px); }
.contact-info .lead { margin-top: 20px; }
.ci-list { margin-top: 34px; display: flex; flex-direction: column; gap: 18px; }
.ci-item { display: flex; gap: 14px; align-items: center; }
.ci-item .ci-ic { width: 42px; height: 42px; border-radius: 11px; flex: none; display: grid; place-items: center; background: rgba(255,111,0,.10); border: 1px solid rgba(255,111,0,.22); color: var(--orange-soft); }
.ci-item .ci-ic svg { width: 19px; height: 19px; }
.ci-item .ci-k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-faint); }
.ci-item .ci-v { font-size: 15.5px; color: var(--text); }

.form {
  background: var(--panel); border: 1px solid var(--border-2); border-radius: 18px;
  padding: 34px; box-shadow: 0 30px 70px -34px rgba(0,0,0,.7);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-family: var(--font-mono); letter-spacing: .04em; color: var(--text-dim); margin-bottom: 8px; }
.field label .req { color: var(--orange-soft); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--border-2);
  border-radius: 10px; padding: 13px 15px; color: var(--text);
  font-family: var(--font-body); font-size: 15px; transition: border-color .18s, box-shadow .18s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--indigo-bright); box-shadow: 0 0 0 3px rgba(88,104,255,.16);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%238189b6' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 12.5px; color: var(--text-faint); text-align: center; margin-top: 16px; }
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success .fs-ic { width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%; background: rgba(47,213,118,.14); border: 1px solid rgba(47,213,118,.3); display: grid; place-items: center; color: var(--ok); }
.form-success .fs-ic svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 24px; margin-bottom: 10px; }
.form-success p { color: var(--text-dim); font-size: 15px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 56px 0 32px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.foot-brand p { font-size: 14px; color: var(--text-dim); margin-top: 16px; max-width: 32ch; }
.foot-col h5 { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 18px; }
.foot-col a { display: block; font-size: 14.5px; color: var(--text-mid); padding: 6px 0; transition: color .18s; }
.foot-col a:hover { color: var(--orange-soft); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-faint); flex-wrap: wrap; }
.foot-bottom .mono { letter-spacing: .02em; }

/* ============================================================
   PDP — página de detalle de estacionamiento
   ============================================================ */
.pdp-hero { position: relative; padding: 140px 0 56px; overflow: hidden; }
.pdp-hero .glow-1 { width: 540px; height: 540px; top: -240px; left: -160px; background: radial-gradient(circle, rgba(88,104,255,.26), transparent 70%); }
.pdp-hero .glow-2 { width: 460px; height: 460px; top: -160px; right: -160px; background: radial-gradient(circle, var(--orange-glow), transparent 70%); }
.crumbs { position: relative; z-index: 2; display: flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 12.5px; color: var(--text-dim); margin-bottom: 22px; flex-wrap: wrap; }
.crumbs a { color: var(--text-dim); transition: color .18s; }
.crumbs a:hover { color: var(--orange-soft); }
.crumbs .sep { color: var(--text-faint); }
.crumbs .cur { color: var(--text); }
.pdp-hero h1 { position: relative; z-index: 2; font-size: clamp(34px, 5vw, 58px); font-weight: 700; }
.pdp-hero .sub { position: relative; z-index: 2; margin-top: 16px; font-size: clamp(16px, 2vw, 19px); color: var(--text-mid); max-width: 60ch; }
.pdp-badges { position: relative; z-index: 2; display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.pdp-tag { white-space: nowrap; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 12px; padding: 6px 12px; border-radius: 100px; border: 1px solid var(--border-2); color: var(--text-mid); background: rgba(255,255,255,.03); }
.pdp-tag.ok { color: var(--ok); border-color: rgba(47,213,118,.28); background: rgba(47,213,118,.08); }
.pdp-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); }

.pdp-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; align-items: start; }
.pdp-map { position: relative; border: 1px solid var(--border-2); border-radius: var(--radius); overflow: hidden; height: 460px; background: var(--bg-2); }
.pdp-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.92) brightness(.96); }
.pdp-map .fallback { position: absolute; inset: 0; display: grid; place-items: center; z-index: 0; font-family: var(--font-mono); font-size: 12px; color: var(--text-faint); background: repeating-linear-gradient(45deg, rgba(150,162,220,.04) 0 12px, transparent 12px 24px); }

.pdp-card { border: 1px solid var(--border); border-radius: var(--radius); background: var(--panel); padding: 30px; }
.pdp-card h2 { font-size: 22px; margin-bottom: 22px; }
.pdp-info { display: flex; flex-direction: column; gap: 18px; }
.pdp-info .row { display: flex; gap: 14px; align-items: flex-start; }
.pdp-info .row .ic { width: 40px; height: 40px; flex: none; border-radius: 11px; display: grid; place-items: center; background: rgba(255,111,0,.10); border: 1px solid rgba(255,111,0,.22); color: var(--orange-soft); }
.pdp-info .row .ic svg { width: 19px; height: 19px; }
.pdp-info .row .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-faint); }
.pdp-info .row .v { font-size: 16px; color: var(--text); margin-top: 2px; }
.pdp-info .row .v a:hover { color: var(--orange-soft); }
.pdp-divider { height: 1px; background: var(--border); margin: 26px 0; }
.pdp-card h3 { font-family: var(--font-display); font-size: 14px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; }
.pdp-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pdp-feats .f { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text-mid); }
.pdp-feats .f svg { width: 17px; height: 17px; flex: none; margin-top: 2px; color: var(--orange-soft); }
.pdp-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

/* banda CTA de marca al pie de la PDP */
.pdp-cta { position: relative; overflow: hidden; border-top: 1px solid var(--border); background: var(--bg-2); }
.pdp-cta .inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.pdp-cta .glow-c { width: 520px; height: 320px; left: 30%; top: -60px; background: radial-gradient(circle, rgba(88,104,255,.16), transparent 70%); }
.pdp-cta h2 { font-size: clamp(24px, 3vw, 34px); max-width: 22ch; }
.pdp-cta p { color: var(--text-dim); margin-top: 10px; max-width: 46ch; font-size: 15.5px; }

@media (max-width: 900px) {
  .pdp-grid { grid-template-columns: 1fr; }
  .pdp-map { height: 340px; order: -1; }
}
@media (max-width: 720px) {
  .pdp-feats { grid-template-columns: 1fr; }
  .pdp-hero { padding-top: 110px; }
}

/* ============================================================
   reveal animation (no-JS safe)
   ============================================================ */
.anim .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.anim .reveal.in { opacity: 1; transform: none; }
.anim .reveal.d1 { transition-delay: .08s; }
.anim .reveal.d2 { transition-delay: .16s; }
.anim .reveal.d3 { transition-delay: .24s; }
.anim .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .anim .reveal { opacity: 1 !important; transform: none !important; }
  .marquee, .hero-badge .dot, .mock-live .dot { animation: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .mock { max-width: 520px; }
  .mini-ticket { right: 8px; }
  .feature-2col { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .feat-grid, .steps, .pricing, .profiles { grid-template-columns: 1fr 1fr; }
  .metrics { grid-template-columns: 1fr 1fr; gap: 36px 22px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ===== Comparativa nube vs instalable ===== */
.vs-table { width:100%; border-collapse:collapse; margin-top:40px; }
.vs-table th, .vs-table td { padding:14px 18px; text-align:left; font-size:14px; border-bottom:1px solid var(--border); }
.vs-table thead th { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--text-dim); padding-bottom:10px; }
.vs-table thead th:first-child { width:35%; }
.vs-table .vs-no { color:#ef5350; }
.vs-table .vs-yes { color:#66bb6a; }
.vs-table .vs-feature { color:var(--text-mid); font-weight:500; }
.vs-table .vs-col-pc { color:var(--text-dim); }
.vs-table .vs-col-rp { color:var(--text); font-weight:500; }
.vs-head-pc { background:var(--panel); border-radius:6px 6px 0 0; }
.vs-head-rp { background:rgba(88,104,255,.12); border-radius:6px 6px 0 0; color:var(--indigo-bright) !important; }
.vs-table tbody tr:hover { background:rgba(150,162,220,.04); }

/* ===== Demos interactivos ===== */
.demos-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:40px; }
.demo-card { background:var(--panel); border:1px solid var(--border); border-radius:12px; padding:28px 24px; display:flex; flex-direction:column; gap:12px; transition:border-color .2s, transform .2s; }
.demo-card:hover { border-color:var(--indigo-bright); transform:translateY(-2px); }
.demo-card .demo-ico { width:44px; height:44px; border-radius:10px; background:rgba(88,104,255,.12); display:flex; align-items:center; justify-content:center; }
.demo-card .demo-ico svg { width:22px; height:22px; stroke:var(--indigo-bright); }
.demo-card h4 { font-size:16px; font-weight:600; color:var(--text); margin:0; }
.demo-card p { font-size:13px; color:var(--text-dim); margin:0; line-height:1.5; flex:1; }
.demo-card .demo-link { font-size:13px; font-weight:600; color:var(--indigo-bright); text-decoration:none; display:flex; align-items:center; gap:6px; margin-top:4px; }
.demo-card .demo-link:hover { color:var(--orange-soft); }
@media (max-width: 720px) { .demos-grid { grid-template-columns:1fr; } }

/* ===== Testimonios ===== */
.testimonios { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; margin-top:40px; }
.testi { background:var(--panel); border:1px solid var(--border); border-radius:12px; padding:28px 26px; display:flex; flex-direction:column; gap:16px; }
.testi-quote { font-size:15px; line-height:1.65; color:var(--text-mid); font-style:italic; flex:1; }
.testi-quote::before { content:'"'; font-size:40px; line-height:1; color:var(--indigo-bright); opacity:.4; display:block; margin-bottom:4px; font-style:normal; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar { width:44px; height:44px; border-radius:50%; background:var(--surface); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:16px; color:var(--indigo-bright); flex-shrink:0; }
.testi-name { font-size:14px; font-weight:600; color:var(--text); }
.testi-role { font-size:12px; color:var(--text-dim); margin-top:2px; }
@media (max-width: 720px) { .testimonios { grid-template-columns:1fr; } }

/* ===== WhatsApp flotante ===== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 2px 8px rgba(0,0,0,.3);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6), 0 3px 12px rgba(0,0,0,.3); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
.wa-float .wa-tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: #111; color: #fff; font-size: 13px; font-family: var(--font-body);
  white-space: nowrap; padding: 7px 12px; border-radius: 8px;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }
@media (max-width: 720px) {
  .wa-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .wa-float .wa-tooltip { display: none; }
}
/* nav: colapsar a hamburguesa antes de que se amontone */
@media (max-width: 940px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .nav-menu-open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(7,10,24,.97); backdrop-filter: blur(16px); padding: 24px 28px 30px; gap: 4px;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu-open .nav-links a.link { padding: 12px 0; font-size: 16px; border-bottom: 1px solid var(--border); }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-menu-open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(7,10,24,.97); backdrop-filter: blur(16px); padding: 24px 28px 30px; gap: 4px;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu-open .nav-links a.link { padding: 12px 0; font-size: 16px; border-bottom: 1px solid var(--border); }
  .split, .feat-grid, .steps, .pricing, .profiles, .mock-stats, .parks { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .wrap { padding: 0 20px; }
  .mini-ticket { display: none; }
  .hero { padding-top: 120px; }
}
