/* ===== Tokens ===== */
:root {
  --bg: #0a0a0c;
  --bg-2: #111114;
  --bg-3: #17171c;
  --surface: #1a1a20;
  --surface-2: #22222a;
  --line: #2a2a33;
  --line-2: #353541;
  --ink: #ffffff;
  --ink-2: #d6d6dc;
  --ink-3: #9a9aa6;
  --ink-4: #6a6a76;

  --orange: #ff6b1f;
  --orange-2: #ff8a3d;
  --orange-soft: rgba(255, 107, 31, 0.12);
  --lime: #c6ff3d;
  --lime-2: #a8e02b;
  --green: #25D366;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --shell: 1240px;
  --pad-x: 32px;

  --font-display: "Inter Tight", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-num: "Fraunces", "Inter Tight", serif;
}

/* ===== Reset ===== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

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

/* ===== Type ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(44px, 6.8vw, 96px); line-height: 0.98; letter-spacing: -0.035em; }
h2 { font-size: clamp(34px, 4.4vw, 64px); line-height: 1.02; letter-spacing: -0.03em; }
h3 { font-size: clamp(22px, 1.8vw, 28px); line-height: 1.15; }
h4 { font-size: 18px; line-height: 1.3; font-weight: 600; }
p { margin: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow.muted { color: var(--ink-3); }
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(198,255,61,0.18);
}
.lede { color: var(--ink-2); font-size: clamp(17px, 1.25vw, 21px); line-height: 1.55; max-width: 60ch; }
.num {
  font-family: var(--font-num);
  font-feature-settings: "ss01", "lnum";
  font-weight: 600;
  letter-spacing: -0.04em;
}

.text-orange { color: var(--orange); }
.text-lime { color: var(--lime); }
.text-muted { color: var(--ink-3); }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10,10,12,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; letter-spacing: -0.01em;
}
.brand .mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange) 0%, #ff3d00 100%);
  display: grid; place-items: center;
  position: relative;
  box-shadow: 0 6px 22px -6px rgba(255,107,31,0.6);
}
.brand .mark svg { width: 20px; height: 20px; color: #fff; }
.brand .name {
  font-size: 14px; font-weight: 700; line-height: 1.1;
}
.brand .name small { display: block; font-size: 11px; font-weight: 500; color: var(--ink-3); letter-spacing: 0.04em; }
.nav-links {
  display: flex; gap: 36px;
  font-size: 15px; color: var(--ink-2);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange);
  color: #1a0d00;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  box-shadow: 0 8px 24px -10px rgba(255,107,31,0.7);
}
.nav-cta:hover { background: var(--orange-2); transform: translateY(-1px); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
}
.btn-primary {
  background: var(--orange); color: #1a0d00;
  box-shadow: 0 14px 38px -14px rgba(255,107,31,0.7);
}
.btn-primary:hover { background: var(--orange-2); transform: translateY(-1px); }
.btn-lime {
  background: var(--lime); color: #1a2400;
  box-shadow: 0 14px 38px -14px rgba(198,255,61,0.55);
}
.btn-lime:hover { background: var(--lime-2); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--line-2);
}
.btn-ghost:hover { border-color: var(--ink-3); }
.btn-wa {
  background: var(--green); color: #062c14;
  box-shadow: 0 14px 38px -14px rgba(37,211,102,0.55);
}
.btn-wa:hover { background: #1fbe5b; transform: translateY(-1px); }

.arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translate(2px, 0); }

/* ===== Sections ===== */
section { padding: 120px 0; position: relative; }
.section-head { display: flex; flex-direction: column; gap: 18px; margin-bottom: 64px; max-width: 820px; }
.section-head .eyebrow + h2 { margin-top: -4px; }

/* ===== Hero ===== */
.hero { padding: 64px 0 96px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: end;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 13px; color: var(--ink-2);
  margin-bottom: 28px;
}
.hero-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(198,255,61,0.18);
}
.hero h1 .alt { color: var(--orange); display: inline; }
.hero-lede { margin-top: 24px; max-width: 56ch; }
.hero-ctas {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.hero-trust {
  margin-top: 36px;
  display: flex; align-items: center; gap: 18px;
  color: var(--ink-3); font-size: 13px;
}
.hero-trust .avatars { display: flex; }
.hero-trust .avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #ff8a3d, #ff3d00);
  border: 2px solid var(--bg);
  margin-left: -10px;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700; color: #fff;
}
.hero-trust .avatars span:first-child { margin-left: 0; background: linear-gradient(135deg, #c6ff3d, #6fb800); color: #1a2400; }
.hero-trust .avatars span:nth-child(3) { background: linear-gradient(135deg, #5b8def, #2a4fbf); }
.hero-trust .avatars span:nth-child(4) { background: linear-gradient(135deg, #ffd166, #f48c06); color: #2a1500; }

.stats-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border-radius: var(--radius-lg);
  padding: 44px 36px 36px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.stats-card::before {
  content: "";
  position: absolute; top: 0; left: 24px; right: 24px; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--lime));
  border-radius: 2px;
}
.stats-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-3);
  text-align: center; margin-bottom: 8px;
}
.stats-big {
  text-align: center;
  font-family: var(--font-num);
  font-size: clamp(72px, 9vw, 132px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 35%, var(--lime) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stats-caption {
  text-align: center; color: var(--ink-2); font-size: 14px;
  margin-top: 8px;
}
.stats-grid {
  margin-top: 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.stat-tile {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
}
.stat-tile .stars { color: var(--orange); font-size: 14px; margin-bottom: 8px; letter-spacing: 2px; }
.stat-tile .value {
  font-family: var(--font-num);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--orange);
  line-height: 1;
}
.stat-tile .label { font-size: 13px; color: var(--ink-3); margin-top: 8px; }

/* ===== Búsquedas band ===== */
.searches {
  padding: 72px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(180deg, transparent, rgba(255,107,31,0.03), transparent);
}
.searches-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center;
}
.searches .big-num {
  font-family: var(--font-num);
  font-size: clamp(96px, 14vw, 200px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: var(--lime);
}
.searches .sub { color: var(--ink-2); font-size: 14px; margin-top: 12px; letter-spacing: 0.04em; }
.search-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.search-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 14px; color: var(--ink-2);
}
.search-chip svg { width: 14px; height: 14px; color: var(--ink-3); }
.search-chip strong { color: var(--ink); font-weight: 600; }
.search-chip .vol { color: var(--orange); font-weight: 600; font-family: var(--font-num); }

/* ===== Problema ===== */
.problem-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 32px; align-items: start;
}
.problem-cards { display: grid; gap: 16px; }
.problem-card {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .15s ease, transform .15s ease;
}
.problem-card:hover { border-color: var(--line-2); transform: translateY(-2px); }
.problem-card .ic {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--orange-soft);
  color: var(--orange);
}
.problem-card .ic svg { width: 26px; height: 26px; }
.problem-card h4 { color: var(--ink); margin-bottom: 6px; }
.problem-card p { color: var(--ink-3); font-size: 15px; line-height: 1.5; }

.story-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.story-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.story-tab {
  padding: 8px 16px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line-2);
  font-size: 13px; font-weight: 600;
  color: var(--ink-2);
  transition: all .15s ease;
}
.story-tab.active {
  background: var(--orange);
  color: #1a0d00;
  border-color: var(--orange);
}
.story-tab:not(.active):hover { color: var(--ink); border-color: var(--ink-4); }
.story-text {
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.story-text .name { color: var(--orange); font-weight: 600; }
.story-text strong { color: var(--orange); font-weight: 600; }
.story-foot {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.story-foot .stars { color: var(--orange); font-size: 14px; letter-spacing: 2px; }
.story-foot .name-foot { font-size: 14px; color: var(--ink-2); }
.story-foot .name-foot strong { color: var(--ink); }

/* ===== Solución ===== */
.solution-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.sol-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .15s ease, background .15s ease;
}
.sol-card:hover { border-color: var(--orange); background: var(--surface-2); }
.sol-card .ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--orange-soft);
  color: var(--orange);
  margin-bottom: 22px;
}
.sol-card .ic svg { width: 22px; height: 22px; }
.sol-card h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.sol-card p { font-size: 14px; color: var(--ink-3); line-height: 1.5; }

/* ===== Mockup phone ===== */
.mockup-section {
  padding: 96px 0 120px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.mockup-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.mockup-bullets { display: grid; gap: 20px; margin-top: 36px; }
.mockup-bullet { display: flex; gap: 14px; align-items: flex-start; }
.mockup-bullet .check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--lime);
  color: #1a2400;
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.mockup-bullet .check svg { width: 12px; height: 12px; stroke-width: 3; }
.mockup-bullet h4 { margin-bottom: 4px; font-size: 17px; }
.mockup-bullet p { color: var(--ink-3); font-size: 15px; }

.phone {
  width: 360px;
  height: 720px;
  margin: 0 auto;
  background: #1c1c22;
  border-radius: 48px;
  border: 8px solid #2a2a33;
  box-shadow: 0 60px 120px -40px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
  position: relative;
}
.phone::before {
  content: "";
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 28px;
  background: #000;
  border-radius: 99px;
  z-index: 5;
}
.phone-screen {
  width: 100%; height: 100%;
  background: #fff;
  color: #202124;
  font-family: "Roboto", "Inter", system-ui, sans-serif;
  font-size: 13px;
  display: flex; flex-direction: column;
}
.phone-screen .gbar {
  padding: 56px 18px 14px;
  background: #fff;
  border-bottom: 1px solid #ebebeb;
}
.phone-screen .gsearch {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: #f1f3f4;
  border-radius: 999px;
  font-size: 14px;
}
.phone-screen .gsearch svg { width: 16px; height: 16px; color: #5f6368; }
.phone-screen .gmap {
  height: 220px;
  position: relative;
  background:
    radial-gradient(circle at 30% 40%, #c8e6c9 0 12px, transparent 13px),
    radial-gradient(circle at 70% 60%, #c8e6c9 0 8px, transparent 9px),
    linear-gradient(120deg, #e8f0e6 0%, #e3eef1 50%, #f1ece2 100%);
  overflow: hidden;
}
.phone-screen .gmap::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(75deg, transparent 38%, #fff 38.4%, #fff 39%, transparent 39.4%),
    linear-gradient(15deg, transparent 58%, #fff 58.4%, #fff 59%, transparent 59.4%),
    linear-gradient(110deg, transparent 22%, #fff 22.4%, #fff 23%, transparent 23.4%);
  opacity: 0.85;
}
.phone-screen .gmap .pin {
  position: absolute;
  width: 40px; height: 40px;
  border-radius: 50% 50% 50% 0;
  background: var(--orange);
  border: 3px solid #fff;
  transform: rotate(-45deg);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 2;
}
.phone-screen .gmap .pin.main { left: 48%; top: 38%; transform: rotate(-45deg) scale(1.15); }
.phone-screen .gmap .pin.alt { background: #ea4335; width: 28px; height: 28px; }
.phone-screen .gmap .pin.alt.a { left: 22%; top: 22%; }
.phone-screen .gmap .pin.alt.b { left: 75%; top: 60%; }
.phone-screen .gmap .pin.alt.c { left: 30%; top: 70%; }

.phone-listing {
  padding: 16px;
  background: #fff;
  flex: 1;
  overflow: hidden;
}
.phone-listing .biz {
  padding: 14px 0;
  border-bottom: 1px solid #ebebeb;
}
.phone-listing .biz.featured {
  background: #fff8f1;
  border-radius: 10px;
  padding: 14px;
  border: 1px solid #ffd9bd;
  margin-bottom: 8px;
  position: relative;
}
.phone-listing .biz.featured::before {
  content: "ANUNCIO";
  position: absolute; top: 10px; right: 10px;
  font-size: 9px; font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
}
.phone-listing .biz h5 {
  margin: 0 0 4px;
  font-size: 15px; font-weight: 600;
  color: #202124;
  font-family: "Roboto", system-ui, sans-serif;
}
.phone-listing .biz .meta {
  font-size: 12px; color: #5f6368;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.phone-listing .biz .meta .rating { color: #fb8c00; font-weight: 600; }
.phone-listing .biz .meta .stars { color: #fb8c00; letter-spacing: 1px; font-size: 11px; }
.phone-listing .biz .desc { font-size: 12px; color: #5f6368; margin-top: 4px; }
.phone-listing .biz.featured .desc { color: #3c4043; }

/* ===== Proceso ===== */
.process { background: var(--bg-2); }
.process-list {
  display: grid; gap: 0;
  border-top: 1px solid var(--line);
}
.process-step {
  display: grid; grid-template-columns: 120px 1fr 360px; gap: 32px; align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.process-step .num-big {
  font-family: var(--font-num);
  font-size: 80px; font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--orange);
  line-height: 0.85;
}
.process-step h3 { font-size: 24px; margin-bottom: 8px; }
.process-step p { color: var(--ink-3); font-size: 15px; line-height: 1.55; }
.process-step .meta {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px;
  color: var(--ink-3);
}
.process-step .meta span {
  display: inline-flex; align-items: center; gap: 8px;
}
.process-step .meta svg { width: 14px; height: 14px; color: var(--lime); }
.process-step .meta strong { color: var(--ink-2); font-weight: 500; }

/* ===== Resultados ===== */
.results-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 16px;
}
.result-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.result-tile.lead {
  background: linear-gradient(180deg, #1f1f26 0%, #15151a 100%);
  border-color: var(--line-2);
  display: flex; flex-direction: column; justify-content: space-between;
}
.result-tile .label { font-size: 13px; color: var(--ink-3); margin-bottom: 16px; letter-spacing: 0.04em; }
.result-tile .value {
  font-family: var(--font-num);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--lime);
  line-height: 0.95;
}
.result-tile .value .tail { color: var(--ink-3); font-size: 0.4em; font-family: var(--font-body); font-weight: 500; letter-spacing: 0; margin-left: 6px; }
.result-tile .desc { color: var(--ink-3); font-size: 14px; margin-top: 14px; }
.result-tile.lead .quote {
  font-family: var(--font-display);
  font-size: 22px; line-height: 1.35; font-weight: 500;
  color: var(--ink); letter-spacing: -0.01em;
}
.result-tile.lead .quote .hl { color: var(--orange); }
.result-tile.lead .who {
  margin-top: 24px;
  display: flex; align-items: center; gap: 14px;
}
.result-tile.lead .who .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #ff3d00);
  display: grid; place-items: center;
  font-weight: 700; color: #fff;
}
.result-tile.lead .who .who-name { font-size: 14px; }
.result-tile.lead .who .who-name strong { display: block; color: var(--ink); }
.result-tile.lead .who .who-name span { color: var(--ink-3); font-size: 13px; }

/* ===== Planes ===== */
.plans { padding: 120px 0; }
.plans-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 56px;
}
.plan-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  display: flex; flex-direction: column;
}
.plan-card.featured {
  background: linear-gradient(180deg, #1c1c23 0%, #141418 100%);
  border-color: rgba(255,107,31,0.25);
  box-shadow: 0 40px 100px -40px rgba(255,107,31,0.25);
}
.plan-card .plan-tag {
  display: inline-flex; align-self: flex-start;
  padding: 6px 12px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 24px;
}
.plan-card .plan-name {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.plan-card .plan-desc { color: var(--ink-3); font-size: 15px; }
.plan-feats {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: grid; gap: 12px;
}
.plan-feats li {
  display: grid; grid-template-columns: 22px 1fr; gap: 12px;
  font-size: 14px; color: var(--ink-2); line-height: 1.45;
}
.plan-feats li .check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(198,255,61,0.15);
  color: var(--lime);
  display: grid; place-items: center;
  margin-top: 2px;
}
.plan-feats li .check svg { width: 11px; height: 11px; stroke-width: 3; }
.plan-feats li .feat-key { color: var(--ink); font-weight: 500; }
.plan-foot { margin-top: auto; padding-top: 32px; }
.plan-price {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.plan-price .strike {
  color: var(--ink-4);
  font-size: 22px;
  text-decoration: line-through;
  font-family: var(--font-num);
}
.plan-price .now {
  font-family: var(--font-num);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--lime);
  line-height: 1;
}
.plan-card.featured .plan-price .now { color: var(--orange); }
.plan-price .per { color: var(--ink-3); font-size: 14px; }
.plan-cta { margin-top: 24px; width: 100%; justify-content: center; }

/* ===== Exclusividad ===== */
.exclusivity {
  padding: 120px 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,107,31,0.08), transparent 60%),
    var(--bg);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-align: center;
}
.exclusivity .availability {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px; color: var(--ink-2);
  margin-bottom: 28px;
}
.exclusivity .availability .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,107,31,0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,107,31,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(255,107,31,0.05); }
}
.exclusivity h2 { max-width: 18ch; margin: 0 auto; }
.exclusivity .lede { margin: 24px auto 0; text-align: left; max-width: 56ch; }
.exclusivity .lede { text-align: center; }
.exclusivity-grid {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  text-align: left;
}
.excl-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.excl-tile .num-big {
  font-family: var(--font-num);
  font-size: 64px; font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--orange);
  line-height: 0.9;
  margin-bottom: 8px;
}
.excl-tile h4 { font-size: 18px; margin-bottom: 6px; }
.excl-tile p { color: var(--ink-3); font-size: 14px; line-height: 1.5; }

/* ===== FAQ ===== */
.faq-list {
  display: grid; gap: 10px;
  max-width: 880px; margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .15s ease;
}
.faq-item.open { border-color: var(--line-2); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; text-align: left;
  padding: 22px 26px;
  font-size: 17px; font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-2);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background .15s ease, transform .2s ease;
}
.faq-icon svg { width: 14px; height: 14px; transition: transform .2s ease; }
.faq-item.open .faq-icon { background: var(--orange); color: #1a0d00; }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 26px;
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.6;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 26px 24px;
}

/* ===== CTA + Form ===== */
.cta-section {
  padding: 120px 0 96px;
}
.cta-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: stretch;
}
.cta-side h2 { font-size: clamp(40px, 5vw, 72px); }
.cta-side .lede { margin-top: 24px; }
.cta-side .perks { margin-top: 36px; display: grid; gap: 14px; }
.cta-side .perk {
  display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: center;
  font-size: 15px; color: var(--ink-2);
}
.cta-side .perk .check {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--orange-soft); color: var(--orange);
  display: grid; place-items: center;
}
.cta-side .perk svg { width: 14px; height: 14px; stroke-width: 3; }
.cta-side .wa-card {
  margin-top: 36px;
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.cta-side .wa-card .ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--green);
  display: grid; place-items: center;
  color: #062c14;
}
.cta-side .wa-card .ic svg { width: 22px; height: 22px; }
.cta-side .wa-card .label { font-size: 13px; color: var(--ink-3); }
.cta-side .wa-card .num-tel {
  font-family: var(--font-num);
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em;
}

.form-card {
  background: linear-gradient(180deg, #1c1c23 0%, #141418 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: ""; position: absolute; top: 0; left: 36px; right: 36px; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--lime));
}
.form-card h3 { font-size: 24px; margin-bottom: 6px; }
.form-card .lede-sm { color: var(--ink-3); font-size: 14px; margin-bottom: 28px; }
.form-row { display: grid; gap: 8px; margin-bottom: 16px; }
.form-row label { font-size: 13px; color: var(--ink-3); font-weight: 500; }
.form-row input, .form-row select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-size: 15px;
  transition: border-color .15s ease, background .15s ease;
}
.form-row input:focus, .form-row select:focus {
  outline: 0;
  border-color: var(--orange);
  background: var(--bg);
}
.form-row select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%239a9aa6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.form-submit {
  width: 100%; justify-content: center;
  margin-top: 8px;
}
.form-foot {
  text-align: center; font-size: 12px; color: var(--ink-4); margin-top: 16px;
}

/* ===== Footer ===== */
footer {
  padding: 64px 0 40px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.foot-row {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 56px;
}
.foot-row h5 { font-size: 13px; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.foot-row ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-row a { color: var(--ink-2); font-size: 14px; }
.foot-row a:hover { color: var(--ink); }
.foot-blurb { color: var(--ink-3); font-size: 14px; margin-top: 16px; max-width: 32ch; line-height: 1.55; }
.foot-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--ink-4); font-size: 13px;
}

/* ===== Floating WA ===== */
.float-wa {
  position: fixed; right: 24px; bottom: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green);
  color: #062c14;
  display: grid; place-items: center;
  box-shadow: 0 18px 48px -10px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.4);
  z-index: 80;
  transition: transform .15s ease;
}
.float-wa:hover { transform: scale(1.06); }
.float-wa svg { width: 30px; height: 30px; }
.float-wa::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--green);
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1; transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .searches-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .mockup-grid { grid-template-columns: 1fr; gap: 56px; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .exclusivity-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .foot-row { grid-template-columns: 1fr 1fr; }
  .process-step { grid-template-columns: 80px 1fr; }
  .process-step .meta { display: none; }
}
@media (max-width: 720px) {
  section { padding: 80px 0; }
  .nav-links { display: none; }
  .solution-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .foot-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 32px; }
  .plan-card { padding: 28px; }
  .form-card { padding: 24px; }
  .float-wa { width: 56px; height: 56px; right: 16px; bottom: 16px; }
}
