/* ============================================================
   EasyParking v2.0 — Landing Page
   Dark futuristic system · gold #FFC107 · electric blue #00B4FF
   ============================================================ */

:root {
  --bg:            #060918;
  --bg-2:          #080B1A;
  --bg-blue:       #07112b;
  --panel:         rgba(255, 255, 255, 0.04);
  --panel-2:       rgba(255, 255, 255, 0.025);
  --border:        rgba(255, 193, 7, 0.20);
  --border-soft:   rgba(255, 255, 255, 0.08);
  --border-blue:   rgba(0, 180, 255, 0.22);

  --gold:          #FFC107;
  --gold-dim:      #d8a400;
  --blue:          #00B4FF;
  --blue-soft:     #4fd0ff;
  --green:         #25D366;
  --green-dk:      #1da851;

  --ink:           #F4F7FF;
  --ink-2:         #B0BEC5;
  --ink-3:         #7C879B;

  --glow-blue:     0 0 28px rgba(0, 180, 255, 0.10);
  --glow-gold:     0 0 28px rgba(255, 193, 7, 0.14);

  --maxw: 1240px;
  --r: 16px;
  --r-lg: 22px;

  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink-2);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---- gold accent text ---- */
.gold { color: var(--gold); }
.blue { color: var(--blue); }

/* ---- section frame ---- */
section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  padding: 7px 15px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255, 193, 7, 0.05);
}
.eyebrow.is-blue { color: var(--blue-soft); border-color: var(--border-blue); background: rgba(0,180,255,0.05); }

.sec-head { max-width: 720px; }
.sec-head h2 {
  font-size: clamp(30px, 4.2vw, 52px);
  margin: 22px 0 16px;
}
.sec-head p { font-size: 18px; color: var(--ink-2); }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head.center .eyebrow { margin: 0 auto; }

/* grid background helper */
.grid-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn i { font-size: 19px; }
.btn:hover { transform: translateY(-2px); }

.btn-wa {
  background: var(--green);
  color: #04210f;
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.28);
}
.btn-wa:hover { background: #2ee06f; box-shadow: 0 10px 32px rgba(37, 211, 102, 0.42); }

.btn-gold {
  background: var(--gold);
  color: #1a1505;
  box-shadow: 0 8px 26px rgba(255, 193, 7, 0.24);
}
.btn-gold:hover { background: #ffcf3a; box-shadow: 0 10px 32px rgba(255, 193, 7, 0.4); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--gold); background: rgba(255,193,7,0.06); box-shadow: var(--glow-gold); }

.btn-lg { font-size: 18px; padding: 18px 34px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.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;
}
.nav.scrolled {
  background: rgba(6, 9, 24, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border-soft);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 20px;
  color: #1a1505;
  box-shadow: 0 0 18px rgba(255,193,7,0.4);
}
/* real logo images (fixed) */
.brand-logo {
  width: 40px; height: 40px; flex: none;
  border-radius: 9px; object-fit: cover;
}
.foot-logo { height: 52px; width: auto; max-width: 280px; object-fit: contain; }
.dev-by {
  display: flex; align-items: center; gap: 14px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}
.dev-label {
  font-family: var(--font-head); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3); flex: none;
}
.spk-logo { height: 48px; width: auto; max-width: 260px; object-fit: contain; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 21px; color: var(--ink); letter-spacing: -0.01em; }
.brand-name .v { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; color: var(--ink-2); transition: color .2s; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--ink); font-size: 26px; cursor: pointer; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 170px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(1000px 600px at 78% 8%, rgba(0,180,255,0.10), transparent 60%),
    radial-gradient(900px 600px at 12% 30%, rgba(255,193,7,0.07), transparent 60%),
    var(--bg);
}
#particles { position: absolute; inset: 0; z-index: 0; }
.hero .wrap { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 54px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ink-2);
  padding: 8px 16px; border-radius: 100px;
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,0.03);
  margin-bottom: 26px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.hero h1 {
  font-size: clamp(40px, 5.6vw, 70px);
  margin-bottom: 22px;
}
.hero h1 .ep { color: var(--gold); text-shadow: 0 0 40px rgba(255,193,7,0.35); }
.hero-slogan { font-size: clamp(19px, 2.2vw, 24px); color: var(--ink); font-weight: 500; margin-bottom: 16px; font-family: var(--font-head); }
.hero-sub { font-size: 17px; color: var(--ink-2); max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* product mock */
.hero-mock { position: relative; }
.mock-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-blue);
  background: #0d1426;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(0,180,255,0.18),
    0 0 90px rgba(255,193,7,0.06);
  transform: perspective(1600px) rotateY(-9deg) rotateX(3deg);
  transition: transform .5s ease;
}
.hero-mock:hover .mock-frame { transform: perspective(1600px) rotateY(-4deg) rotateX(1deg); }
.mock-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px;
  background: #0a1120;
  border-bottom: 1px solid var(--border-soft);
}
.mock-bar span { width: 11px; height: 11px; border-radius: 50%; background: #2a3350; }
.mock-bar span:nth-child(1) { background: #ff5f57; }
.mock-bar span:nth-child(2) { background: #febc2e; }
.mock-bar span:nth-child(3) { background: #28c840; }
.mock-frame img { width: 100%; display: block; }

.mock-chip {
  position: absolute;
  display: flex; align-items: center; gap: 11px;
  padding: 13px 17px;
  border-radius: 14px;
  background: rgba(10, 16, 30, 0.92);
  border: 1px solid var(--border);
  box-shadow: 0 12px 34px rgba(0,0,0,0.5), var(--glow-gold);
  backdrop-filter: blur(8px);
}
.mock-chip i { font-size: 24px; }
.mock-chip .ct { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--ink); line-height: 1.1; white-space: nowrap; }
.mock-chip .cl { font-size: 12px; color: var(--ink-3); white-space: nowrap; }
.mock-chip.a { top: -22px; left: -26px; }
.mock-chip.b { bottom: -22px; right: -22px; border-color: var(--border-blue); box-shadow: 0 12px 34px rgba(0,0,0,0.5), var(--glow-blue); }

.hero-strip {
  margin-top: 70px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 40px;
  border-top: 1px solid var(--border-soft);
}
.hero-stat .n { font-family: var(--font-head); font-weight: 700; font-size: clamp(26px, 3vw, 36px); color: var(--ink); }
.hero-stat .n.g { color: var(--gold); }
.hero-stat .n.b { color: var(--blue); }
.hero-stat .l { font-size: 14px; color: var(--ink-3); }

/* ============================================================
   FEATURES
   ============================================================ */
.section-pad { padding: 110px 0; }

.features { background: var(--bg-2); }
.feat-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  padding: 30px 28px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s;
  overflow: hidden;
}
.card::after {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,193,7,0.4), transparent);
  opacity: 0; transition: opacity .3s;
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--border);
  background: rgba(255,255,255,0.055);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), var(--glow-blue);
}
.card:hover::after { opacity: 1; }
.feat-ico {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center;
  font-size: 26px;
  color: var(--gold);
  background: rgba(255,193,7,0.08);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.card.blue-ico .feat-ico { color: var(--blue); background: rgba(0,180,255,0.08); border-color: var(--border-blue); }
.card h3 { font-size: 19px; margin-bottom: 11px; }
.card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.62; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--bg); }
.steps {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: ""; position: absolute;
  top: 33px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  opacity: 0.35;
}
.step { text-align: center; padding: 0 14px; position: relative; }
.step-num {
  width: 66px; height: 66px; margin: 0 auto 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 24px;
  color: #1a1505; background: var(--gold);
  border: 4px solid var(--bg);
  box-shadow: 0 0 0 1px var(--border), var(--glow-gold);
  position: relative; z-index: 2;
}
.step:nth-child(even) .step-num { background: var(--blue); color: #04121f; box-shadow: 0 0 0 1px var(--border-blue), var(--glow-blue); }
.step i { font-size: 22px; color: var(--ink-3); margin-bottom: 10px; display: block; }
.step h3 { font-size: 17px; margin-bottom: 9px; }
.step p { font-size: 13.5px; color: var(--ink-2); }

/* ============================================================
   TECH STACK
   ============================================================ */
.tech { background: var(--bg-2); padding: 70px 0; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.tech-head { text-align: center; margin-bottom: 38px; }
.tech-head .eyebrow { margin: 0 auto; }
.tech-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.tech-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border-radius: 100px;
  background: var(--panel);
  border: 1px solid var(--border-soft);
  font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--ink);
  transition: border-color .2s, color .2s, box-shadow .2s, transform .2s;
}
.tech-pill i { font-size: 18px; color: var(--blue); }
.tech-pill:hover { border-color: var(--border-blue); box-shadow: var(--glow-blue); transform: translateY(-2px); }

/* ============================================================
   PARA QUIÉN ES
   ============================================================ */
.who { background: var(--bg); }
.who-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.who-card {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 38px 32px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.who-card:hover { transform: translateY(-5px); border-color: var(--border); box-shadow: 0 16px 40px rgba(0,0,0,0.4), var(--glow-gold); }
.who-ico {
  width: 60px; height: 60px; border-radius: 16px; margin-bottom: 22px;
  display: grid; place-items: center; font-size: 30px;
  color: #1a1505; background: var(--gold); box-shadow: var(--glow-gold);
}
.who-card h3 { font-size: 21px; margin-bottom: 12px; }
.who-card p { font-size: 15px; color: var(--ink-2); }

/* ============================================================
   COMPANY / DEV PARTNER
   ============================================================ */
.partner {
  position: relative;
  background:
    radial-gradient(800px 500px at 50% 0%, rgba(0,180,255,0.12), transparent 60%),
    var(--bg-blue);
  padding: 120px 0;
  border-top: 1px solid var(--border-blue);
}
.partner-intro { max-width: 800px; margin: 0 auto 56px; text-align: center; }
.partner-intro h2 { font-size: clamp(30px, 4.4vw, 54px); margin: 22px 0 18px; }
.partner-intro .lead { font-size: 19px; color: var(--ink); }
.partner-body { max-width: 820px; margin: 0 auto 56px; }
.partner-body p { font-size: 16px; color: var(--ink-2); margin-bottom: 18px; }
.partner-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 60px; }
.partner-cta { text-align: center; }
.partner-cta .ct-line { font-family: var(--font-head); font-size: clamp(20px,2.4vw,26px); color: var(--ink); font-weight: 600; margin-bottom: 24px; }
.partner-cta .ct-line .free { color: var(--green); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { background: var(--bg); }
.testi-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testi-card {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  position: relative;
}
.testi-card .quote { font-size: 40px; font-family: var(--font-head); color: var(--gold); line-height: 0.6; opacity: 0.5; }
.testi-card p { font-size: 15.5px; color: var(--ink); margin: 16px 0 24px; }
.stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 18px; }
.testi-who { display: flex; align-items: center; gap: 13px; }
.testi-av {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700;
  background: rgba(0,180,255,0.12); color: var(--blue); border: 1px solid var(--border-blue);
}
.testi-who .nm { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 15px; }
.testi-who .rl { font-size: 13px; color: var(--ink-3); }

/* ============================================================
   PRODUCT SHOWCASE
   ============================================================ */
.showcase { background: var(--bg-2); }
.show-tabs {
  margin: 50px auto 26px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.show-tab {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 14.5px;
  color: var(--ink-2);
  padding: 11px 18px; border-radius: 100px;
  background: var(--panel); border: 1px solid var(--border-soft);
  cursor: pointer; transition: color .2s, border-color .2s, background .2s, box-shadow .2s;
}
.show-tab i { font-size: 16px; color: var(--ink-3); transition: color .2s; }
.show-tab:hover { color: var(--ink); border-color: var(--border-soft); background: rgba(255,255,255,0.06); }
.show-tab.is-active {
  color: #1a1505; background: var(--gold); border-color: var(--gold);
  box-shadow: var(--glow-gold);
}
.show-tab.is-active i { color: #1a1505; }

.show-frame {
  max-width: 1080px; margin: 0 auto;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border-blue);
  background: #0a1120;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 60px rgba(0,180,255,0.12);
}
.show-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 16px;
  background: #0a1120; border-bottom: 1px solid var(--border-soft);
}
.show-dots { display: flex; gap: 7px; }
.show-dots span { width: 11px; height: 11px; border-radius: 50%; background: #2a3350; }
.show-dots span:nth-child(1) { background: #ff5f57; }
.show-dots span:nth-child(2) { background: #febc2e; }
.show-dots span:nth-child(3) { background: #28c840; }
.show-url {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-3);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-soft);
  padding: 6px 16px; border-radius: 8px; flex: 1; max-width: 320px;
}
.show-url i { font-size: 11px; color: var(--green); }
.show-stage { position: relative; aspect-ratio: 2532 / 1294; background: #0d1426; }
.show-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  opacity: 0; transition: opacity .4s ease; pointer-events: none;
}
.show-img.is-active { opacity: 1; pointer-events: auto; }
.show-caption {
  text-align: center; max-width: 620px; margin: 26px auto 0;
  font-size: 15.5px; color: var(--ink-2);
}
.show-caption b { color: var(--gold); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--bg); position: relative; }
.price-grid {
  margin: 56px auto 0;
  max-width: 940px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 34px 32px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(255,193,7,0.06), rgba(255,255,255,0.03));
  box-shadow: 0 22px 60px rgba(0,0,0,0.5), var(--glow-gold);
}
.price-ribbon {
  position: absolute; top: 22px; right: 0;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: 0.06em;
  color: #1a1505; background: var(--gold);
  padding: 8px 16px 8px 14px;
  border-radius: 100px 0 0 100px;
  box-shadow: var(--glow-gold);
}
.price-ribbon i { font-size: 12px; }
.price-tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--ink);
}
.price-tag i { color: var(--gold); font-size: 22px; }
.featured .price-tag i { color: var(--gold); }
.price-desc { font-size: 14.5px; color: var(--ink-2); margin: 12px 0 22px; min-height: 44px; }
.price-amount { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.price-amount .from { font-size: 14px; color: var(--ink-3); font-family: var(--font-head); }
.price-amount .num { font-family: var(--font-head); font-weight: 700; font-size: 42px; color: var(--ink); letter-spacing: -0.02em; }
.featured .price-amount .num { color: var(--gold); }
.price-amount .per { font-size: 15px; color: var(--ink-3); }
.price-note { font-size: 13px; color: var(--ink-3); margin: 10px 0 0; display: flex; align-items: center; gap: 6px; }

.price-hook {
  display: flex; align-items: center; gap: 14px;
  margin: 20px 0 4px;
  padding: 15px 18px;
  border-radius: 14px;
  background: rgba(0,180,255,0.08);
  border: 1px dashed var(--border-blue);
}
.price-hook i { font-size: 28px; color: var(--blue); flex: none; }
.price-hook strong { display: block; font-family: var(--font-head); font-size: 17px; color: var(--ink); }
.price-hook span { display: block; font-size: 13px; color: var(--ink-2); margin-top: 2px; }
.price-hook s { color: var(--ink-3); }

.price-feats { list-style: none; margin: 24px 0 28px; padding: 0; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.price-feats li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--ink-2); }
.price-feats li i { color: var(--green); font-size: 17px; flex: none; margin-top: 1px; }
.price-feats b { color: var(--ink); }
.price-card .btn { width: 100%; }

.price-banner {
  margin: 30px auto 0;
  max-width: 940px;
  display: flex; align-items: center; gap: 22px;
  padding: 24px 30px;
  border-radius: var(--r-lg);
  background:
    radial-gradient(600px 200px at 0% 50%, rgba(255,193,7,0.08), transparent 70%),
    var(--panel);
  border: 1px solid var(--border);
}
.pb-ico {
  width: 56px; height: 56px; border-radius: 14px; flex: none;
  display: grid; place-items: center; font-size: 28px;
  color: var(--gold); background: rgba(255,193,7,0.08); border: 1px solid var(--border);
}
.pb-text { flex: 1; font-size: 17px; color: var(--ink-2); }
.pb-text strong { color: var(--ink); font-family: var(--font-head); }
.price-banner .btn { flex: none; }

/* ============================================================
   ADD-ON MODULE — plate reading (cameras + AI)
   ============================================================ */
.addon { padding: 40px 0 90px; background: var(--bg); }
.addon-card {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center;
  padding: 46px;
  border-radius: var(--r-lg);
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(0,180,255,0.12), transparent 60%),
    var(--bg-blue);
  border: 1px solid var(--border-blue);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.addon-copy h2 { font-size: clamp(28px, 3.6vw, 44px); margin: 20px 0 16px; }
.addon-lead { font-size: 17px; color: var(--ink-2); margin-bottom: 24px; }
.addon-feats { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 14px; }
.addon-feats li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: var(--ink); }
.addon-feats li i { color: var(--blue); font-size: 18px; flex: none; margin-top: 1px; }
.addon-note { font-size: 13px; color: var(--ink-3); margin-top: 16px; display: flex; align-items: flex-start; gap: 7px; max-width: 50ch; }

/* ANPR mock visual */
.addon-visual { display: grid; place-items: center; }
.anpr {
  width: 100%; max-width: 420px;
  border-radius: 16px; overflow: hidden;
  background: #0a1120;
  border: 1px solid var(--border-blue);
  box-shadow: 0 0 50px rgba(0,180,255,0.18);
}
.anpr-head, .anpr-foot {
  display: flex; align-items: center; gap: 9px;
  padding: 12px 16px; font-family: var(--font-head); font-size: 12.5px; letter-spacing: 0.12em;
  color: var(--blue-soft); background: rgba(0,180,255,0.06);
}
.anpr-foot { color: var(--ink-2); letter-spacing: 0.02em; border-top: 1px solid var(--border-soft); background: rgba(255,255,255,0.02); }
.anpr-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.anpr-stage {
  position: relative; aspect-ratio: 16/10;
  display: grid; place-items: center;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 10px, transparent 10px 20px),
    #0d1426;
}
.anpr-stage::after {
  content: attr(data-ph);
  position: absolute; top: 12px; left: 14px;
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.06em;
  color: var(--ink-3); text-transform: uppercase;
}
.anpr-plate {
  font-family: var(--font-head); font-weight: 700; font-size: 34px; letter-spacing: 0.16em;
  color: #1a1505; background: #FFF6D6;
  padding: 12px 22px; border-radius: 8px;
  border: 2px solid #d8c98a;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  z-index: 2;
}
.anpr-box {
  position: absolute; left: 24%; top: 30%; width: 52%; height: 40%;
  border: 2px solid var(--blue);
  border-radius: 6px;
  box-shadow: 0 0 18px rgba(0,180,255,0.5), inset 0 0 12px rgba(0,180,255,0.18);
}
.anpr-box::before, .anpr-box::after {
  content: ""; position: absolute; width: 14px; height: 14px; border: 3px solid var(--gold);
}
.anpr-box::before { left: -3px; top: -3px; border-right: 0; border-bottom: 0; }
.anpr-box::after { right: -3px; bottom: -3px; border-left: 0; border-top: 0; }
.anpr-scan {
  position: absolute; left: 0; right: 0; height: 3px; top: 0;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  box-shadow: 0 0 16px var(--blue);
  animation: anpr-scan 2.6s ease-in-out infinite;
}
@keyframes anpr-scan { 0%,100% { top: 8%; } 50% { top: 90%; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-2); }
.faq-list { max-width: 860px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.faq-item[open] { border-color: var(--border); box-shadow: var(--glow-blue); background: rgba(255,255,255,0.05); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px;
  font-family: var(--font-head); font-weight: 600; font-size: 17.5px; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
  flex: none;
  font-size: 18px; color: var(--gold);
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-items: center;
  background: rgba(255,193,7,0.08); border: 1px solid var(--border);
  transition: transform .25s ease, background .25s;
}
.faq-item[open] summary i { transform: rotate(45deg); background: rgba(255,193,7,0.16); }
.faq-item summary:hover { color: #fff; }
.faq-a { padding: 0 26px 24px; }
.faq-a p { font-size: 15.5px; color: var(--ink-2); line-height: 1.65; margin: 0; max-width: 70ch; }

.faq-cta {
  display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap;
  margin-top: 44px;
}
.faq-cta span { font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--ink); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  position: relative; overflow: hidden;
  padding: 130px 0;
  text-align: center;
  background:
    radial-gradient(700px 500px at 50% 50%, rgba(255,193,7,0.12), transparent 62%),
    radial-gradient(900px 600px at 50% 120%, rgba(0,180,255,0.12), transparent 60%),
    var(--bg-2);
}
.final h2 { font-size: clamp(32px, 5vw, 58px); max-width: 880px; margin: 0 auto 20px; }
.final p { font-size: 19px; color: var(--ink-2); max-width: 620px; margin: 0 auto 38px; }
.final-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg); border-top: 1px solid var(--border-soft); padding: 60px 0 34px; }
.foot-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 38px; border-bottom: 1px solid var(--border-soft); }
.foot-brand { max-width: 320px; }
.foot-brand p { font-size: 14.5px; color: var(--ink-3); margin-top: 16px; }
.foot-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.foot-col h4 { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px; font-family: var(--font-head); }
.foot-col a { display: block; font-size: 14.5px; color: var(--ink-2); margin-bottom: 11px; transition: color .2s; }
.foot-col a:hover { color: var(--gold); }
.foot-col a i { color: var(--green); margin-right: 7px; }
.foot-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; font-size: 13.5px; color: var(--ink-3); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 200;
  display: flex; align-items: center; gap: 0;
}
.wa-btn {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--green);
  display: grid; place-items: center;
  color: #fff; font-size: 32px;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  position: relative;
  transition: transform .2s;
}
.wa-btn:hover { transform: scale(1.07); }
.wa-btn::before, .wa-btn::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--green);
  animation: wa-pulse 2.4s ease-out infinite;
}
.wa-btn::after { animation-delay: 1.2s; }
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.9); opacity: 0; }
}
.wa-tip {
  position: absolute; right: 74px; top: 50%; transform: translateY(-50%) translateX(8px);
  background: #0a1120; color: var(--ink); border: 1px solid var(--border-soft);
  padding: 9px 15px; border-radius: 10px; font-size: 14px; font-weight: 600; font-family: var(--font-head);
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.wa-float:hover .wa-tip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
/* Content is always visible. Entrance motion is intentionally avoided here:
   the preview/iframe environment treats the page as "hidden", which freezes
   CSS animations/transitions at their start frame — any opacity:0 start would
   render blank in captures, print, and hidden tabs. Visibility wins. */
.reveal { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .wa-btn::before, .wa-btn::after { animation: none; }
  .anpr-scan { animation: none; top: 50%; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   NEON CURSOR (fine pointers only; added by JS)
   ============================================================ */
.cursor-dot, .cursor-glow {
  position: fixed; top: 0; left: 0; z-index: 9999;
  border-radius: 50%; pointer-events: none;
  mix-blend-mode: screen; will-change: transform;
}
.cursor-dot {
  width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px;
  background: #FFE27A;
  box-shadow: 0 0 8px #FFC107, 0 0 16px #FFC107, 0 0 28px rgba(255,193,7,0.7);
}
.cursor-glow {
  width: 34px; height: 34px; margin: -17px 0 0 -17px;
  border: 1.5px solid rgba(255,193,7,0.75);
  box-shadow: 0 0 18px rgba(255,193,7,0.5), inset 0 0 14px rgba(255,193,7,0.25);
  transition: width .22s ease, height .22s ease, margin .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.cursor-glow.big {
  width: 64px; height: 64px; margin: -32px 0 0 -32px;
  border-color: rgba(255,193,7,0.9);
  box-shadow: 0 0 30px rgba(255,193,7,0.6), inset 0 0 20px rgba(255,193,7,0.3);
}
.cursor-glow.press { width: 22px; height: 22px; margin: -11px 0 0 -11px; }
@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-glow { display: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero-mock { max-width: 560px; }
  .mock-frame { transform: none; }
  .hero-mock:hover .mock-frame { transform: none; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .steps::before { display: none; }
  .who-grid, .partner-grid, .testi-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 480px; }
  .price-card.featured { order: -1; }
  .price-banner { flex-direction: column; text-align: center; }
  .addon-card { grid-template-columns: 1fr; gap: 36px; padding: 36px 28px; }
  .addon-visual { order: -1; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .section-pad, .partner, .final { padding: 72px 0; }
  .feat-grid { grid-template-columns: 1fr; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); gap: 28px 14px; }
  .steps { grid-template-columns: 1fr; }
  .nav-cta .btn span { display: none; }
  .mock-chip.a { left: -8px; top: -16px; }
  .mock-chip.b { right: -6px; }
  .foot-top { flex-direction: column; gap: 32px; }
}
