/* ============ publicame ============ */
:root {
  --bg: #ffffff;
  --bg-soft: #f3f4f1;
  --ink: #0c1813;
  --ink-2: #1c2622;
  --ink-3: #5a6661;
  --ink-4: #8a948f;
  --line: #e6e6e1;
  --line-strong: #d2d2cb;

  --dark: #0b1410;
  --dark-2: #11201a;
  --dark-line: #1f2c25;
  --on-dark: #ffffff;
  --on-dark-2: #b6bdb8;

  --green: #1fd17a;
  --green-2: #00bd66;
  --green-soft: #d9efe2;
  --green-ink: #032a18;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.5;
}
button, input, textarea { font-family: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-2);
}
.eyebrow .bar { width: 36px; height: 2px; background: currentColor; opacity: 0.65; }
.eyebrow.both .bar:first-child { display: inline-block; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--green);
  color: #04221a;
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 8px 20px -10px rgba(31,209,122,0.6);
}
.btn-primary:hover { background: var(--green-2); }
.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--on-dark); }
.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.45);
  color: var(--on-dark);
}
.btn-outline-light:hover { border-color: var(--on-dark); }
.btn-arrow svg { transition: transform .2s ease; }
.btn:hover .btn-arrow-i { transform: translateX(3px); }

/* ---------- nav ---------- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.logo {
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.035em;
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
}
.logo .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  margin-left: 2px;
  transform: translateY(1px);
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-size: 15px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--ink-2);
  transition: color .15s, background .15s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-link:hover { color: var(--ink); background: var(--bg-soft); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}
.mobile-nav {
  display: none;
}

/* ---------- hero ---------- */
.hero {
  background: var(--dark);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  min-height: 620px;
  align-items: center;
  position: relative;
}
.hero-text {
  padding: 100px 64px 100px 0;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(54px, 5.8vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 28px 0 32px;
}
.hero h1 .line { display: block; }
.hero h1 .accent { color: var(--green); }
.hero-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--on-dark-2);
  max-width: 480px;
  margin: 0 0 44px;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 760px;
}
.pillar { display: flex; gap: 14px; align-items: flex-start; }
.pillar-icon {
  width: 28px; height: 28px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}
.pillar-title { font-size: 16px; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.01em; }
.pillar-body { font-size: 13.5px; color: var(--on-dark-2); line-height: 1.45; }

/* hero image (right side, bleed) — atmospheric editorial scene */
.hero-image {
  position: relative;
  align-self: stretch;
  min-height: 620px;
  margin-right: -56px;       /* bleed to viewport edge */
  background:
    linear-gradient(90deg, var(--dark) 0%, transparent 14%),
    radial-gradient(ellipse 60% 70% at 60% 50%, rgba(31,209,122,0.10), transparent 70%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(0,0,0,0.5), transparent 70%),
    linear-gradient(180deg, #0f1a16 0%, #050a08 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* very subtle ambient grain / lines */
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 160px, rgba(255,255,255,0.018) 160px 161px),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.025), transparent 50%);
  pointer-events: none;
}

/* soft vertical light bands — implies motion/ascent without depicting it */
.light-band {
  position: absolute;
  top: -10%;
  bottom: -10%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.06) 30%, rgba(255,255,255,0.10) 50%, rgba(255,255,255,0.06) 70%, transparent 100%);
  filter: blur(0.5px);
}
.light-band.b1 { left: 18%; }
.light-band.b2 { left: 32%; opacity: 0.6; }
.light-band.b3 { right: 22%; }
.light-band.b4 { right: 8%; opacity: 0.5; }

/* the central screen — vertical DOOH format */
.dooh-screen {
  position: relative;
  width: 320px;
  max-width: 38%;
  aspect-ratio: 9 / 16;
  background: linear-gradient(165deg, #0a1814 0%, #04100c 60%, #02090a 100%);
  border-radius: 14px;
  border: 1px solid rgba(31,209,122,0.35);
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.015),
    0 0 0 7px rgba(0,0,0,0.4),
    0 0 120px 8px rgba(31,209,122,0.18),
    0 50px 100px -30px rgba(0,0,0,0.8);
  overflow: hidden;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.dooh-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(31,209,122,0.16), transparent 65%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 3px);
  pointer-events: none;
}
.dooh-screen::after {
  /* glossy reflection */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 50%; bottom: 30%;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent 60%);
  pointer-events: none;
}
.dooh-inner {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 22px;
  z-index: 1;
}

/* live tag at top */
.dooh-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark);
  align-self: flex-start;
}
.dooh-live::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 var(--green);
  animation: livePulse 1.8s infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(31,209,122,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(31,209,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,209,122,0); }
}

.dooh-center {
  text-align: center;
  margin: auto 0;
}
.dooh-logo {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--on-dark);
  line-height: 1;
  margin-bottom: 14px;
}
.dooh-logo .dot {
  width: 8px; height: 8px; background: var(--green);
  border-radius: 50%; display: inline-block; transform: translateY(2px); margin-left: 2px;
}
.dooh-tagline {
  font-size: 13px;
  font-weight: 500;
  color: var(--on-dark-2);
  letter-spacing: 0.02em;
  line-height: 1.4;
  max-width: 220px;
  margin: 0 auto;
}
.dooh-tagline .hi { color: var(--green); }

.dooh-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.dooh-bottom .num {
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--on-dark);
  display: block;
  margin-bottom: 2px;
}

/* floating metric badges, off the screen */
.metric-badge {
  position: absolute;
  background: rgba(16,28,24,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--on-dark);
  z-index: 3;
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.6);
}
.metric-badge .l {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-2);
  margin-bottom: 4px;
}
.metric-badge .v {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.metric-badge .v .delta {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  margin-left: 6px;
  letter-spacing: 0;
}
.metric-badge.top   { top: 22%; right: 10%; }
.metric-badge.left  { top: 32%; left: 10%; }
.metric-badge.bot   { bottom: 18%; right: 14%; }

/* ground reflection ribbon */
.ground-glow {
  position: absolute;
  bottom: 8%;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31,209,122,0.25) 30%, rgba(31,209,122,0.35) 50%, rgba(31,209,122,0.25) 70%, transparent);
  filter: blur(0.5px);
  z-index: 1;
}
.ground-glow::after {
  content: "";
  position: absolute;
  bottom: -120px; left: 20%; right: 20%; height: 120px;
  background: radial-gradient(ellipse at top, rgba(31,209,122,0.10), transparent 70%);
}

/* ---------- how it works ---------- */
.how {
  background: var(--bg-soft);
  padding: 110px 0 130px;
}
.how-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 80px;
}
.how-head .eyebrow.both .bar { width: 36px; height: 2px; background: currentColor; opacity: 0.65; }
.how-head h2 {
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0;
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
}
.step {
  text-align: center;
  padding: 0 14px;
}
.step-circle {
  position: relative;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.step-circle svg { width: 52px; height: 52px; }
.step-num {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-2);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--bg-soft);
}
.step-title { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 12px; }
.step-body { font-size: 15px; line-height: 1.55; color: var(--ink-3); margin: 0; max-width: 280px; margin: 0 auto; }
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-4);
  padding-top: 50px;
}
.step-arrow svg { width: 26px; height: 26px; }

/* ---------- bottom rocket bar ---------- */
.rocket-bar {
  background: var(--dark);
  color: var(--on-dark);
  padding: 36px 56px;
  border-radius: 16px;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 36px;
  align-items: center;
}
.rocket-bar-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.rocket-bar-icon svg { width: 36px; height: 36px; }
.rocket-bar-text .t1 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.rocket-bar-text .t2 {
  font-size: 14.5px;
  color: var(--on-dark-2);
}
.rocket-bar-side {
  text-align: right;
}
.rocket-bar-side .l1 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.rocket-bar-side .l2 { font-size: 13.5px; color: var(--on-dark-2); }

.rocket-wrap {
  background: var(--bg-soft);
  padding: 0 0 80px;
}

/* ---------- buildings ---------- */
.buildings { background: var(--bg); padding: 120px 0; }
.section-head-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
.section-head-center h2 {
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0;
  max-width: 720px;
}
.section-head-center .lead {
  font-size: 17px;
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 580px;
  margin: 0;
}
.buildings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bcard {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.bcard:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 48px -28px rgba(10,20,16,0.18);
}
.bcard-img {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(160deg, rgba(31,209,122,0.06), transparent 60%),
    repeating-linear-gradient(45deg, #e6e6e1 0 2px, #efeee9 2px 14px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bcard-img .ph {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.75);
  padding: 6px 10px;
  border-radius: 4px;
}
.bcard-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  background: var(--ink);
  color: var(--bg);
  padding: 5px 10px;
  border-radius: 4px;
}
.bcard-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.bcard-name { font-size: 19px; font-weight: 700; letter-spacing: -0.015em; margin: 0; }
.bcard-loc { font-size: 13.5px; color: var(--ink-4); margin: 4px 0 18px; }
.bcard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.bcard-stat .l { font-size: 11px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; font-weight: 500; }
.bcard-stat .v { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.see-all-row {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

/* ---------- pricing ---------- */
.pricing { background: var(--bg-soft); padding: 120px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
}
.pcard {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pcard.featured {
  background: var(--dark);
  color: var(--on-dark);
  border-color: var(--dark);
  box-shadow: 0 30px 60px -28px rgba(0,0,0,0.25);
}
.pcard-name {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 600;
  margin-bottom: 24px;
}
.pcard.featured .pcard-name { color: var(--green); }
.pcard-price {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.pcard-price .pre { font-size: 22px; font-weight: 500; color: var(--ink-3); margin-right: 6px; vertical-align: top; }
.pcard.featured .pcard-price .pre { color: var(--on-dark-2); }
.pcard-price .suf { font-size: 15px; font-weight: 500; color: var(--ink-4); margin-left: 4px; }
.pcard.featured .pcard-price .suf { color: var(--on-dark-2); }
.pcard-desc { font-size: 14.5px; line-height: 1.55; color: var(--ink-3); margin: 12px 0 28px; }
.pcard.featured .pcard-desc { color: var(--on-dark-2); }
.pcard-feats { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.pcard-feat { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-2); line-height: 1.45; }
.pcard.featured .pcard-feat { color: var(--on-dark); }
.pcard-feat svg { flex-shrink: 0; color: var(--green-2); margin-top: 2px; }
.pcard.featured .pcard-feat svg { color: var(--green); }
.pcard-cta { margin-top: auto; width: 100%; justify-content: center; }
.pcard-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green);
  background: rgba(31,209,122,0.16);
  padding: 5px 9px;
  border-radius: 4px;
}

/* ---------- testimonios ---------- */
.testimonials { background: var(--bg); padding: 120px 0; }
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
}
.tcard {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
.tcard.lead {
  grid-column: span 2;
  background: var(--dark);
  color: var(--on-dark);
  border-color: var(--dark);
}
.tcard-quote {
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin: 0 0 32px;
}
.tcard.lead .tcard-quote { font-size: 26px; line-height: 1.35; }
.tcard-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.tcard-ava {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-soft); color: var(--green-ink); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; letter-spacing: -0.01em;
}
.tcard.lead .tcard-ava { background: rgba(31,209,122,0.2); color: var(--green); }
.tcard-name { font-size: 14.5px; font-weight: 600; line-height: 1.2; }
.tcard-role { font-size: 13px; color: var(--ink-4); margin-top: 2px; }
.tcard.lead .tcard-role { color: var(--on-dark-2); }
.tcard-kpi { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--dark-line); display: flex; gap: 32px; }
.tcard-kpi-num { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; color: var(--green); line-height: 1; }
.tcard-kpi-l { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--on-dark-2); margin-top: 8px; font-weight: 500; }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-soft); padding: 120px 0; scroll-margin-top: 90px; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
}
.faq-left h2 {
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 20px 0 24px;
}
.faq-left p { font-size: 16px; color: var(--ink-3); line-height: 1.6; max-width: 360px; margin: 0; }
.faq-left a { color: var(--green-2); text-decoration: underline; }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line-strong); cursor: pointer; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  font-size: 18px; font-weight: 600; letter-spacing: -0.01em;
  user-select: none;
}
.faq-q .plus { font-size: 26px; color: var(--ink-3); transition: transform .2s, color .2s; line-height: 1; }
.faq-item.open .plus { transform: rotate(45deg); color: var(--green-2); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; font-size: 15.5px; line-height: 1.65; color: var(--ink-3); }
.faq-item.open .faq-a { max-height: 280px; }
.faq-a-inner { padding: 0 0 24px; max-width: 640px; }

/* ---------- final CTA ---------- */
.cta-final { background: var(--bg); padding: 120px 0; }
.cta-card {
  background: var(--dark);
  color: var(--on-dark);
  border-radius: 20px;
  padding: 88px 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
  max-width: 1240px;
  margin: 0 auto;
}
.cta-card::after {
  content: "";
  position: absolute;
  top: -40%; left: 50%; transform: translateX(-50%);
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(31,209,122,0.12), transparent 60%);
  pointer-events: none;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 {
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0;
  max-width: 880px;
}
.cta-card h2 .accent { color: var(--green); }
.cta-card .lead {
  font-size: 18px; line-height: 1.55; color: var(--on-dark-2);
  margin: 0; max-width: 640px;
}
.cta-actions { display: flex; gap: 12px; margin-top: 8px; }

/* ---------- footer ---------- */
.footer {
  background: var(--dark);
  color: var(--on-dark);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--dark-line);
}
.footer-tag { font-size: 14px; color: var(--on-dark-2); line-height: 1.55; margin: 16px 0 0; max-width: 280px; }
.footer-col h4 {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--on-dark-2); font-weight: 600; margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: var(--on-dark); opacity: 0.85; transition: opacity .15s; }
.footer-col a:hover { opacity: 1; color: var(--green); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-size: 13px; color: var(--on-dark-2); letter-spacing: 0.02em;
}
.footer-bottom-links { display: flex; gap: 24px; }

/* ============ LEGAL PAGES ============ */
.legal-page {
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
}
.legal-page .nav-light {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.legal-page .logo { color: var(--ink); }
.legal-page .nav-link { color: var(--ink-2); }
.legal-page .nav-link:hover { color: var(--ink); background: var(--bg-soft); }
.legal-page .btn-outline { border-color: var(--ink); color: var(--ink); }

.legal-hero {
  background: var(--bg-soft);
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--line);
}
.legal-hero-inner { max-width: 800px; }
.legal-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-2);
  gap: 12px;
  margin-bottom: 20px;
}
.legal-eyebrow .pipe {
  width: 2px;
  height: 16px;
  background: currentColor;
  display: inline-block;
}
.legal-title {
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 0;
  max-width: 720px;
}

.legal-body { padding: 80px 0 120px; }
.legal-content {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
}
.legal-content > * + * { margin-top: 22px; }
.legal-content h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 56px 0 4px;
  color: var(--ink);
  padding-top: 8px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.legal-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.legal-content h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 36px 0 4px;
  color: var(--ink);
}
.legal-content p {
  margin: 16px 0 0;
}
.legal-content ul, .legal-content ol {
  padding-left: 22px;
  margin: 14px 0 0;
}
.legal-content li { margin: 8px 0; }
.legal-content li strong, .legal-content p strong { color: var(--ink); font-weight: 600; }
.legal-content a { color: var(--green-2); text-decoration: underline; }
.legal-content a:hover { color: var(--green-ink); }
.legal-content code, .legal-content .ph {
  font-family: ui-monospace, monospace;
  font-size: 0.92em;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--ink-3);
}

.legal-meta {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 24px;
  font-size: 14.5px;
  margin: 0 0 16px;
}
.legal-meta .k {
  font-weight: 600;
  color: var(--ink);
}
.legal-meta .v { color: var(--ink-3); }

.legal-callout {
  background: linear-gradient(180deg, rgba(31,209,122,0.05), rgba(31,209,122,0.02));
  border: 1px solid rgba(31,209,122,0.3);
  border-left: 3px solid var(--green-2);
  padding: 20px 22px;
  border-radius: 8px;
  margin: 24px 0;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.6;
}
.legal-callout strong { color: var(--ink); }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14.5px;
}
.legal-table th, .legal-table td {
  border: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}
.legal-table th {
  background: var(--bg-soft);
  font-weight: 600;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.legal-table td { color: var(--ink-2); }

@media (max-width: 640px) {
  .legal-meta { grid-template-columns: 1fr; gap: 4px; }
  .legal-meta .k { margin-top: 8px; }
  .legal-table th, .legal-table td { padding: 10px 8px; font-size: 13px; }
}

/* ============ WHATSAPP FLOAT ============ */
.wa-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.wa-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow:
    0 8px 24px -6px rgba(37,211,102,0.55),
    0 2px 6px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, box-shadow .18s ease;
}
.wa-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 14px 32px -6px rgba(37,211,102,0.6),
    0 2px 6px rgba(0,0,0,0.2);
}
.wa-btn:active { transform: translateY(0) scale(0.98); }
.wa-btn::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.5;
  animation: waPing 2s ease-out infinite;
}
@keyframes waPing {
  0%   { transform: scale(0.95); opacity: 0.5; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

.wa-tip {
  background: var(--bg);
  color: var(--ink);
  border-radius: 14px;
  padding: 16px 18px 18px;
  width: 260px;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.3), 0 2px 6px rgba(0,0,0,0.06);
  animation: qmRise .22s ease-out;
}
.wa-tip-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.wa-tip-head strong { font-size: 15.5px; letter-spacing: -0.01em; }
.wa-tip-close {
  background: transparent;
  border: none;
  color: var(--ink-3);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  border-radius: 4px;
}
.wa-tip-close:hover { background: var(--bg-soft); color: var(--ink); }
.wa-tip p {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.5;
  margin: 0 0 14px;
}
.wa-tip-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #052e16;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s;
}
.wa-tip-cta:hover { background: #1bbd57; }

@media (max-width: 640px) {
  .wa-wrap { bottom: 16px; right: 16px; }
  .wa-tip { width: 240px; }
}

/* ============ PRODUCT PAGE ============ */
.product-page {
  background: var(--dark);
  color: var(--on-dark);
  min-height: 100vh;
}
.product-page .nav-wrap {
  background: rgba(11,20,16,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.product-page .nav-link {
  color: var(--on-dark-2);
}
.product-page .nav-link:hover { color: var(--on-dark); background: rgba(255,255,255,0.04); }
.product-page .logo { color: var(--on-dark); }
.product-page .btn-outline { border-color: rgba(255,255,255,0.45); color: var(--on-dark); }
.product-page .btn-outline:hover { background: var(--on-dark); color: var(--ink); }

.product-main {
  padding: 80px 0 60px;
}
.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 96px;
  align-items: start;
}

.p-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  gap: 12px;
  margin-bottom: 24px;
}
.p-eyebrow .pipe {
  width: 2px;
  height: 18px;
  background: currentColor;
  display: inline-block;
}

.product-headline {
  font-size: clamp(44px, 4.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0 0 24px;
  max-width: 600px;
}
.product-headline .accent { color: var(--green); }

.product-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--on-dark-2);
  max-width: 520px;
  margin: 0 0 48px;
}

/* dashboard mockup */
.dashboard-window {
  background: linear-gradient(180deg, #11201a 0%, #0a1813 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 50px 100px -40px rgba(0,0,0,0.8),
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 0 80px -10px rgba(31,209,122,0.08);
}
.dash-chrome {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.025);
  gap: 14px;
}
.dash-dots { display: flex; gap: 7px; }
.dash-dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.dash-url {
  flex: 1;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  font-family: ui-monospace, monospace;
  letter-spacing: 0.02em;
}

.dash-body {
  display: grid;
  grid-template-columns: 195px 1fr;
  min-height: 380px;
}
.dash-sidebar {
  padding: 22px 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.dash-side-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 26px;
  display: inline-flex;
  align-items: baseline;
  color: var(--on-dark);
}
.dash-side-logo .dot {
  width: 5px; height: 5px;
  background: var(--green); border-radius: 50%;
  display: inline-block; margin-left: 2px; transform: translateY(1px);
}
.dash-nav { display: flex; flex-direction: column; gap: 3px; }
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  border-radius: 6px;
  border: 1px solid transparent;
}
.dash-nav-item svg { opacity: 0.85; flex-shrink: 0; }
.dash-nav-item.active {
  background: rgba(31,209,122,0.07);
  border-color: rgba(31,209,122,0.4);
  color: var(--green);
}

.dash-main {
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 12px;
  grid-template-rows: auto auto;
}
.dash-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 16px;
}
.dash-card-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.dash-card-value {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--green);
  line-height: 1;
}
.dash-card-delta {
  font-size: 11px;
  color: var(--green);
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.dash-card-num {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--green);
  line-height: 1;
}
.dash-card-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

/* chart */
.dash-chart { height: 90px; position: relative; padding: 6px 0; }
.dash-chart svg { width: 100%; height: 100%; }

/* map */
.dash-map-card { grid-column: span 1; padding-bottom: 12px; }
.dash-map {
  position: relative;
  height: 150px;
  margin-top: 4px;
  border-radius: 6px;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(31,209,122,0.06), transparent 40%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 18px);
}
.dash-pin {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(31,209,122,0.16), 0 0 10px rgba(31,209,122,0.6);
}

.dash-side-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ---------- features list (right column) ---------- */
.features-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-2);
}
.features-eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(31,209,122,0.4);
}

.product-features {
  display: flex;
  flex-direction: column;
}

.feature-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.feature-item:first-of-type { border-top: none; padding-top: 8px; }
.feature-icon-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1.5px solid rgba(31,209,122,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.feature-title { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 8px; }
.feature-body { font-size: 14.5px; color: var(--on-dark-2); line-height: 1.55; margin: 0; }

/* ---------- product steps (bottom) ---------- */
.p-steps-section {
  padding: 100px 0 80px;
}
.p-steps-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}
.p-steps-head::before,
.p-steps-head::after {
  content: "";
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: rgba(31,209,122,0.4);
}
.p-steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.p-step { text-align: center; padding: 0 14px; }
.p-step-circle {
  position: relative;
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 1.5px solid rgba(31,209,122,0.5);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.p-step-num {
  position: absolute;
  top: -4px; right: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-2);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--dark);
}
.p-step-title { font-size: 18px; font-weight: 700; margin: 0 0 8px; letter-spacing: -0.015em; }
.p-step-body { font-size: 14px; color: var(--on-dark-2); line-height: 1.5; margin: 0; max-width: 240px; margin-left: auto; margin-right: auto; }
.p-step-arrow {
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3);
  padding-top: 36px;
}

/* product footer above keep */

/* the .how section inherits dark text from .product-page; reset it */
.product-page .how,
.product-page .how h2,
.product-page .how .step-title { color: var(--ink); }
.product-page .how .step-body { color: var(--ink-3); }
.product-page .rocket-wrap { color: var(--ink); }

/* ============ AUDIENCE PAGES (Edificios, Anunciantes) ============ */
.audience-page {
  background: var(--dark);
  color: var(--on-dark);
  min-height: 100vh;
}
.audience-page .nav-wrap {
  background: rgba(11,20,16,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.audience-page .nav-link { color: var(--on-dark-2); }
.audience-page .nav-link:hover { color: var(--on-dark); background: rgba(255,255,255,0.04); }
.audience-page .logo { color: var(--on-dark); }
.audience-page .btn-outline { border-color: rgba(255,255,255,0.45); color: var(--on-dark); }
.audience-page .btn-outline:hover { background: var(--on-dark); color: var(--ink); }

.audience-hero {
  padding: 100px 0 120px;
}
.audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 96px;
  align-items: center;
}

.au-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  gap: 12px;
  margin-bottom: 24px;
}
.au-eyebrow .pipe {
  width: 2px;
  height: 18px;
  background: currentColor;
  display: inline-block;
}

.audience-page h1 {
  font-size: clamp(46px, 5vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0 0 24px;
  max-width: 620px;
}
.audience-page h1 .accent { color: var(--green); }

.au-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--on-dark-2);
  max-width: 540px;
  margin: 0 0 40px;
}

.au-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}
.au-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--on-dark);
}
.au-bullet-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.au-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.au-cta-note {
  font-size: 13.5px;
  color: var(--on-dark-2);
  margin-left: 8px;
}
.au-cta-note .sep { color: var(--green); margin: 0 8px; }

/* Audience hero VISUAL: vertical DOOH screen, but customizable content */
.au-visual {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.au-visual::before {
  content: "";
  position: absolute;
  inset: -10% -20% -10% -10%;
  background:
    radial-gradient(ellipse 60% 60% at 60% 50%, rgba(31,209,122,0.12), transparent 65%);
  pointer-events: none;
}
.au-screen {
  position: relative;
  width: 360px;
  aspect-ratio: 9 / 16;
  background: linear-gradient(165deg, #0a1814 0%, #04100c 60%, #02090a 100%);
  border-radius: 14px;
  border: 1px solid rgba(31,209,122,0.4);
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.015),
    0 0 0 7px rgba(0,0,0,0.4),
    0 0 120px 10px rgba(31,209,122,0.2),
    0 50px 100px -30px rgba(0,0,0,0.8);
  overflow: hidden;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.au-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(31,209,122,0.15), transparent 65%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 4px);
  pointer-events: none;
}
.au-screen::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 50%; bottom: 30%;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent 60%);
  pointer-events: none;
}
.au-screen-inner {
  position: relative;
  flex: 1;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.au-screen-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark);
}
.au-screen-tag::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 var(--green);
  animation: livePulse 1.8s infinite;
}
.au-screen-center { margin: auto 0; text-align: left; }
.au-screen-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.au-screen-h {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 10px;
  color: var(--on-dark);
}
.au-screen-sub {
  font-size: 14px;
  color: var(--on-dark-2);
  line-height: 1.4;
}
.au-screen-meta {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--on-dark-2);
  display: flex;
  justify-content: space-between;
}
.au-screen-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.au-screen-bottom .num {
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--on-dark);
  display: block;
  margin-bottom: 2px;
}

.au-screen-logo {
  text-align: center;
}
.au-screen-logo-text {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--on-dark);
}
.au-screen-logo-text .dot {
  width: 8px; height: 8px; background: var(--green);
  border-radius: 50%; display: inline-block; transform: translateY(2px); margin-left: 2px;
}
.au-screen-logo-tag {
  font-size: 13px;
  color: var(--on-dark-2);
  margin-top: 14px;
}
.au-screen-logo-tag .hi { color: var(--green); }

/* floating badge (e.g. expansion note) */
.au-badge {
  position: absolute;
  bottom: 6%;
  right: 4%;
  background: rgba(16,28,24,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--on-dark);
  font-size: 12px;
  z-index: 3;
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.6);
}
.au-badge .l {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-2);
  margin-bottom: 4px;
}
.au-badge .v {
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
}

@media (max-width: 1100px) {
  .audience-grid { grid-template-columns: 1fr; gap: 56px; }
  .au-visual { min-height: 460px; }
  .pa-strip { grid-template-columns: 1fr; gap: 24px; }
  .pa-strip-label::after { display: none; }
}

/* ---------- pantallas activas (strip + stats) ---------- */
.pantallas {
  background: var(--bg);
  padding: 110px 0;
  border-top: 1px solid var(--line);
}
.pa-strip {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.pa-strip-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
  display: flex;
  align-items: center;
  gap: 14px;
}
.pa-strip-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-strong);
}
.pa-strip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}
.pa-strip-item {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--ink-2);
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: border-color .15s, background .15s, color .15s;
}
.pa-strip-item:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}
.pa-strip-more {
  color: var(--green-2);
  border-color: var(--green-2);
  background: transparent;
}
.pa-strip-more:hover {
  background: var(--green-2);
  color: #fff;
}

.pa-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.pa-stat {
  padding: 8px 24px 8px 0;
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.pa-stat:first-child { border-left: none; padding-left: 0; }
.pa-stat-v {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pa-stat-arrow .pa-stat-v {
  color: var(--green-2);
}
.pa-arrow {
  font-size: 22px;
  color: var(--green);
  font-weight: 500;
  line-height: 1;
}
.pa-stat-l {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .pa-strip { grid-template-columns: 1fr; }
  .pa-stats { grid-template-columns: 1fr 1fr; }
  .pa-stat { border-left: none; border-top: 1px solid var(--line); padding: 20px 0; }
  .pa-stat:first-child, .pa-stat:nth-child(2) { border-top: none; padding-top: 8px; }
}

/* ============ QUOTE MODAL ============ */
.qm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 12, 10, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  animation: qmFade 0.18s ease-out;
}
@keyframes qmFade { from { opacity: 0; } to { opacity: 1; } }

.qm-card {
  background: var(--bg);
  color: var(--ink);
  border-radius: 18px;
  width: 100%;
  max-width: 620px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 44px 44px 36px;
  position: relative;
  box-shadow: 0 60px 120px -30px rgba(0,0,0,0.55);
  animation: qmRise 0.22s ease-out;
}
@keyframes qmRise { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.qm-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--ink-3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}
.qm-close:hover { background: var(--bg-soft); color: var(--ink); }

.qm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-2);
  margin-bottom: 18px;
}
.qm-eyebrow .pipe {
  width: 2px;
  height: 16px;
  background: currentColor;
  display: inline-block;
}
.qm-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 10px;
}
.qm-sub {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.5;
  margin: 0 0 28px;
}
.qm-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.qm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.qm-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.qm-field input,
.qm-field textarea,
.qm-field select {
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .15s, background .15s;
  resize: vertical;
  width: 100%;
}
.qm-field input::placeholder,
.qm-field textarea::placeholder {
  color: var(--ink-4);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.qm-field input:focus,
.qm-field textarea:focus,
.qm-field select:focus {
  border-color: var(--green-2);
  background: var(--bg);
  box-shadow: 0 0 0 4px rgba(31,209,122,0.12);
}
.qm-field select {
  appearance: none;
  cursor: pointer;
}
.qm-error {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #d04646;
}
.qm-status {
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.45;
}
.qm-status-error {
  background: rgba(208, 70, 70, 0.08);
  border: 1px solid rgba(208, 70, 70, 0.18);
  color: #9c2f2f;
}
.qm-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.qm-check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-3);
  cursor: pointer;
  user-select: none;
  margin: -4px 0 4px;
}
.qm-check-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--green-2);
  cursor: pointer;
}

.qm-foot {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.qm-note {
  font-size: 12.5px;
  color: var(--ink-4);
  letter-spacing: 0;
  text-transform: none;
}
.qm-submit { white-space: nowrap; }
.qm-submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.qm-sent { text-align: center; padding: 16px 0 8px; }
.qm-check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.qm-sent h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.qm-sent p {
  font-size: 15.5px;
  color: var(--ink-3);
  line-height: 1.5;
  max-width: 380px;
  margin: 0 auto 28px;
}

@media (max-width: 640px) {
  .qm-card { padding: 32px 24px 24px; border-radius: 14px; }
  .qm-row { grid-template-columns: 1fr; }
  .qm-foot { flex-direction: column; align-items: stretch; }
  .qm-submit { width: 100%; justify-content: center; }
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .nav {
    height: 78px;
  }
  .nav-links,
  .nav-actions {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .mobile-nav {
    display: block;
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .mobile-nav-inner {
    padding-top: 18px;
    padding-bottom: 24px;
  }
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .mobile-nav-link {
    display: block;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }
  .mobile-nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 18px;
  }
  .mobile-nav-actions.compact {
    grid-template-columns: 1fr;
  }
  .mobile-nav-btn {
    justify-content: center;
  }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 64px 0; }
  .hero-image { min-height: 420px; margin-right: -32px; margin-left: -32px; }
  .dooh-screen { width: min(320px, 62vw); max-width: none; }
  .metric-badge.top { top: 14%; right: 8%; }
  .metric-badge.left { top: 22%; left: 8%; }
  .metric-badge.bot { bottom: 12%; right: 10%; }
  .pillars { grid-template-columns: 1fr 1fr; gap: 24px; }
  .steps { grid-template-columns: 1fr; gap: 56px; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
  .rocket-bar { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .rocket-bar-side { text-align: center; }
  .buildings-grid, .pricing-grid, .t-grid { grid-template-columns: 1fr; }
  .tcard.lead { grid-column: span 1; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .product-grid { grid-template-columns: 1fr; gap: 56px; }
  .p-steps-grid { grid-template-columns: 1fr; gap: 56px; }
  .p-step-arrow { transform: rotate(90deg); padding: 0; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .logo { font-size: 22px; }
  .hero-text { padding: 48px 0 36px; }
  .hero h1 {
    font-size: clamp(42px, 14vw, 64px);
    margin: 22px 0 24px;
  }
  .hero-sub {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 100%;
  }
  .pillars {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 100%;
  }
  .hero-image {
    min-height: 340px;
    margin-left: -20px;
    margin-right: -20px;
  }
  .dooh-screen {
    width: min(270px, 72vw);
    border-radius: 12px;
  }
  .dooh-inner {
    padding: 22px 18px;
  }
  .dooh-logo {
    font-size: 32px;
  }
  .dooh-tagline {
    font-size: 12px;
    max-width: 190px;
  }
  .metric-badge {
    padding: 12px 12px;
  }
  .metric-badge .l { font-size: 9px; }
  .metric-badge .v { font-size: 18px; }
  .how {
    padding: 84px 0 96px;
  }
  .how-head {
    margin-bottom: 52px;
  }
  .how-head h2 {
    font-size: clamp(30px, 9vw, 40px);
  }
  .step-title {
    font-size: 20px;
  }
  .rocket-wrap {
    padding-bottom: 64px;
  }
  .rocket-bar {
    padding: 28px 24px;
    gap: 18px;
  }
  .rocket-bar .btn {
    width: 100%;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .product-main,
  .audience-hero,
  .pantallas,
  .buildings,
  .pricing,
  .testimonials,
  .faq,
  .cta-final,
  .legal-body {
    padding-top: 72px;
    padding-bottom: 84px;
  }
  .product-grid,
  .audience-grid {
    gap: 48px;
  }
  .product-headline,
  .audience-page h1 {
    font-size: clamp(34px, 10vw, 54px);
    max-width: 100%;
  }
  .product-sub,
  .au-sub,
  .section-head-center .lead,
  .faq-left p,
  .cta-card .lead {
    font-size: 15px;
    max-width: 100%;
  }
  .dashboard-window {
    border-radius: 12px;
  }
  .dash-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .dash-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 16px;
  }
  .dash-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .dash-nav-item {
    font-size: 10px;
    letter-spacing: 0.08em;
    padding: 10px 9px;
  }
  .dash-main {
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .dash-card-value,
  .dash-card-num {
    font-size: 32px;
  }
  .feature-item {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
    padding: 22px 0;
  }
  .feature-icon-circle {
    width: 68px;
    height: 68px;
  }
  .feature-title {
    font-size: 20px;
  }
  .au-bullets {
    gap: 14px;
    margin-bottom: 32px;
  }
  .au-bullet {
    font-size: 15px;
  }
  .au-visual {
    min-height: 360px;
  }
  .au-screen {
    width: min(320px, 78vw);
  }
  .au-screen-inner {
    padding: 22px 18px;
  }
  .au-screen-logo-text {
    font-size: 32px;
  }
  .au-screen-h {
    font-size: 24px;
  }
  .au-screen-sub,
  .au-screen-logo-tag {
    font-size: 13px;
  }
  .pa-strip-item {
    font-size: 16px;
  }
  .pa-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0 18px;
  }
  .bcard-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .pricing-grid {
    gap: 18px;
  }
  .pcard {
    padding: 28px 24px;
  }
  .pcard-price {
    font-size: 46px;
  }
  .tcard {
    padding: 24px;
  }
  .tcard.lead .tcard-quote {
    font-size: 22px;
  }
  .faq-q {
    font-size: 17px;
    gap: 16px;
  }
  .cta-card {
    padding: 56px 28px;
    border-radius: 16px;
  }
  .cta-card h2 {
    font-size: clamp(30px, 9vw, 44px);
  }
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .legal-content {
    font-size: 15px;
  }
  .legal-content h2 {
    font-size: 22px;
    margin-top: 40px;
    padding-top: 24px;
  }
}

@media (max-width: 480px) {
  .nav {
    height: 72px;
  }
  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }
  .mobile-nav-link {
    font-size: 17px;
    padding: 12px 0;
  }
  .mobile-nav-actions {
    grid-template-columns: 1fr;
  }
  .hero-image {
    min-height: 300px;
  }
  .metric-badge.left,
  .metric-badge.top,
  .metric-badge.bot {
    display: none;
  }
  .step-circle {
    width: 108px;
    height: 108px;
    margin-bottom: 22px;
  }
  .step-circle svg {
    width: 46px;
    height: 46px;
  }
  .rocket-bar-text .t1 {
    font-size: 17px;
  }
  .rocket-bar-text .t2,
  .rocket-bar-side .l2,
  .step-body {
    font-size: 14px;
  }
  .dash-nav {
    grid-template-columns: 1fr;
  }
  .dash-card-value,
  .dash-card-num {
    font-size: 28px;
  }
  .au-screen {
    width: min(270px, 84vw);
  }
  .au-badge {
    display: none;
  }
  .pa-stats {
    grid-template-columns: 1fr;
  }
  .tcard-kpi {
    gap: 18px;
    flex-direction: column;
  }
  .legal-hero {
    padding-top: 32px;
  }
  .legal-title {
    font-size: clamp(34px, 11vw, 46px);
  }
}
