/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Light SaaS palette */
  --bg:        #ffffff;   /* page background */
  --bg-soft:   #f7f8fb;   /* alt section background */
  --bg-softer: #eef1f7;   /* deeper alt background */
  --surface:   #ffffff;   /* cards */

  --ink:       #0f172a;   /* headlines / strong text */
  --ink-soft:  #334155;   /* body strong */
  --gray:      #64748b;   /* muted text */
  --gray2:     #e2e8f0;   /* borders / hairlines */
  --gray3:     #f1f5f9;   /* subtle fills */

  --accent:    #FF6958;   /* corporativo teal */
  --accent-d:  #e0503e;   /* teal hover */
  --accent2:   #FF6958;
  --violet:    #ff8b7e;   /* teal claro (gradientes) */
  --gold:      #FF6958;    /* eyebrow color */
  --green:     #16a34a;
  --green-bg:  #ecfdf5;

  /* legacy aliases kept so older rules still resolve sensibly */
  --black:     #ffffff;
  --white:     #0f172a;

  /* gradients & shadows */
  --grad: linear-gradient(135deg, #FF6958 0%, #ff8b7e 100%);
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.06), 0 1px 3px rgba(15,23,42,0.04);
  --shadow:    0 4px 10px rgba(15,23,42,0.05), 0 12px 28px rgba(15,23,42,0.07);
  --shadow-lg: 0 10px 24px rgba(255,105,88,0.18), 0 20px 48px rgba(15,23,42,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── TYPOGRAPHY ───────────────────────────────────────────── */
.display {
  font-size: clamp(3.2rem, 9vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.0;
}
.headline {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.05;
  color: var(--ink);
}
.title-1 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.title-2 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.body-large {
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.7;
  color: var(--gray);
  font-weight: 400;
}
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.caption {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ─── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 58px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--gray2);
}
.nav-logo {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta a {
  color: #fff;
  background: var(--accent);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 980px;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, transform 0.2s;
}
.nav-cta a:hover { background: var(--accent-d); transform: translateY(-1px); }

/* ─── NAV LOGO ─────────────────────────────────────────────── */
.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.9;
}

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  padding-top: 58px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

/* Contenido — izquierda */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6%;
  max-width: 64vw;
  width: 100%;
}

.hero-eyebrow {
  margin-bottom: 1.4rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s 0.2s cubic-bezier(0.16,1,0.3,1) forwards;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.35s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero-accent {
  color: var(--accent);
  position: relative;
  white-space: nowrap;
}
.hero-accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -0.06em;
  height: 0.08em;
  background: var(--grad);
  border-radius: 2px;
  opacity: 0.85;
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.8s 0.55s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s 0.75s cubic-bezier(0.16,1,0.3,1) forwards;
}

.link-primary {
  color: var(--accent);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: opacity 0.2s;
}
.link-primary::after { content: ' ›'; }
.link-primary:hover { opacity: 0.7; }

.btn-hero {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.7rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 980px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: background 0.2s, transform 0.2s;
}
.btn-hero:hover { background: var(--accent-d); transform: translateY(-2px); }

.hero-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gray2);
  z-index: 3;
}

/* ─── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--bg-soft);
  border-top: 1px solid var(--gray2);
  border-bottom: 1px solid var(--gray2);
}
.stat-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid var(--gray2);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s, transform 0.7s;
}
.stat-item:last-child { border-right: none; }
.stat-item.visible { opacity: 1; transform: translateY(0); }
.stat-number {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
  color: var(--ink);
}
.stat-unit {
  color: var(--accent);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray);
}

/* ─── INTRO STATEMENT ──────────────────────────────────────── */
.intro-section {
  padding: 9rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.intro-section .headline {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.intro-section .headline.visible { opacity: 1; transform: translateY(0); }
.intro-section .headline span { color: var(--gray); }
.ignite-text {
  position: relative;
  display: inline-block;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent);
}

/* ─── SERVICES — LIST STYLE ────────────────────────────────── */
.services-section {
  padding: 8rem 6%;
  max-width: 1200px;
  margin: 0 auto;
}
.services-top {
  margin-bottom: 5rem;
}
.services-top .eyebrow { display: block; margin-bottom: 1rem; }

.services-list {
  list-style: none;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--gray2);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.service-row.visible { opacity: 1; transform: translateY(0); }
.service-row:last-child { border-bottom: 1px solid var(--gray2); }
.service-name { font-size: 1.1rem; font-weight: 700; padding-top: 0.1rem; color: var(--ink); }
.service-desc { font-size: 0.95rem; color: var(--gray); line-height: 1.65; }
.service-tag {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--green);
  background: var(--green-bg);
  padding: 0.25rem 0.75rem;
  border-radius: 980px;
  border: 1px solid rgba(22,163,74,0.20);
}

/* ─── TIMELINE ─────────────────────────────────────────────── */
.process-section {
  background: var(--bg-soft);
  padding: 8rem 6%;
  position: relative;
  overflow: hidden;
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.process-header { margin-bottom: 5rem; }
.process-header .eyebrow { display: block; margin-bottom: 1rem; }

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 11px;
  left: calc(10% + 11px);
  right: calc(10% + 11px);
  height: 2px;
  background: var(--gray2);
}
.tl-item {
  padding: 0 1rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.tl-item.visible { opacity: 1; transform: translateY(0); }
.tl-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--gray2);
  background: var(--surface);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tl-dot::after {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray2);
}
.tl-item.active .tl-dot::after { background: var(--accent); }
.tl-item.active .tl-dot { border-color: var(--accent); }
.tl-week { font-size: 0.72rem; color: var(--gray); margin-bottom: 0.5rem; }
.tl-name { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--ink); }
.tl-desc { font-size: 0.78rem; color: var(--gray); line-height: 1.55; }

/* ─── PRICING ──────────────────────────────────────────────── */
.pricing-section {
  padding: 8rem 6%;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}
.pricing-header .eyebrow { display: block; margin-bottom: 1rem; }

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.plan-card {
  background: var(--surface);
  border: 1px solid var(--gray2);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.plan-card--featured {
  border: 1.5px solid var(--accent);
  box-shadow: var(--shadow-lg);
}
.plan-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse 80% 45% at 50% 0%, rgba(255,105,88,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.plan-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  background: var(--grad);
  padding: 0.3rem 0.85rem;
  border-radius: 980px;
  margin-bottom: 1.2rem;
  align-self: flex-start;
  box-shadow: var(--shadow-sm);
}
.plan-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.plan-name {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.8rem;
  color: var(--ink);
}
.plan-desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 0.15rem;
  margin-bottom: 0.3rem;
}
.plan-curr {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gray);
  margin-top: 0.6rem;
}
.plan-amount {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.plan-note {
  display: block;
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 2rem;
}
.plan-per-mes {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--gray);
  letter-spacing: -0.01em;
  align-self: flex-end;
  padding-bottom: 0.35em;
}

.plan-features {
  list-style: none;
  border-top: 1px solid var(--gray2);
  margin-bottom: 1.5rem;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray2);
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.check-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.62rem;
  color: var(--green);
  font-weight: 700;
}

.plan-addon-box {
  background: var(--gray3);
  border: 1px solid var(--gray2);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
}
.plan-addon-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  gap: 1rem;
}
.addon-price-tag { color: var(--accent); font-size: 0.82rem; flex-shrink: 0; }

.cta-pricing {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.9rem 1.5rem;
  border: 1px solid var(--gray2);
  color: var(--ink);
  text-decoration: none;
  border-radius: 980px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  text-align: center;
}
.cta-pricing:hover { border-color: var(--accent); background: var(--gray3); }
.cta-pricing--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-pricing--accent:hover { background: var(--accent-d); border-color: var(--accent-d); transform: translateY(-2px); }

/* Disclaimer importante */
.pricing-disclaimer {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: #fff1ef;
  border: 1px solid rgba(255,105,88,0.25);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  margin-top: 1rem;
}
.disclaimer-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--accent);
}
.pricing-disclaimer strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.pricing-disclaimer p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.7;
}

/* Chips de plataformas */
.platforms-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.platform-chip {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.7rem;
  border-radius: 980px;
  border: 1px solid var(--gray2);
  color: var(--gray);
}
.platform-li  { border-color: rgba(10,102,194,0.4);  color: #0a66c2; background: rgba(10,102,194,0.08); }
.platform-ig  { border-color: rgba(225,48,108,0.4);  color: #e1306c; background: rgba(225,48,108,0.08); }
.platform-yt  { border-color: rgba(255,0,0,0.3);     color: #ff4444; background: rgba(255,0,0,0.06); }
.platform-gmb { border-color: rgba(66,133,244,0.3);  color: #4285f4; background: rgba(66,133,244,0.06); }
.platform-fb  { border-color: rgba(24,119,242,0.4);  color: #1877f2; background: rgba(24,119,242,0.08); }
.platform-tt  { border-color: rgba(15,23,42,0.2);    color: #0f172a; background: rgba(15,23,42,0.04); }

@media (max-width: 900px) {
  .pricing-cards { grid-template-columns: 1fr; }
}

/* ─── INSTRUCCIONES A SEGUIR ──────────────────────────────── */
.instructions-section {
  padding: 8rem 6%;
  max-width: 1100px;
  margin: 0 auto;
}
.instructions-header {
  text-align: center;
  margin-bottom: 4.5rem;
}
.instructions-header .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.instr-block {
  margin-bottom: 4.5rem;
}
.instr-block:last-child { margin-bottom: 0; }

.instr-block-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray2);
}
.instr-step-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
  background: var(--grad);
  border-radius: 980px;
  padding: 0.35rem 0.9rem;
  flex-shrink: 0;
  line-height: 1;
}
.instr-block-titles .eyebrow {
  display: block;
  margin-bottom: 0.4rem;
}
.instr-block-title {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.2;
  color: var(--ink);
}

/* Pagos — tarjetas */
.payment-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.payment-card {
  background: var(--surface);
  border: 1px solid var(--gray2);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow);
}
.payment-card--accent {
  border: 1.5px solid var(--accent);
  box-shadow: var(--shadow-lg);
}
.payment-card--accent::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse 80% 45% at 50% 0%, rgba(255,105,88,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.payment-card > * { position: relative; z-index: 1; }
.payment-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.payment-amount {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.2rem;
  color: var(--ink);
}
.payment-card--accent .payment-amount {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.payment-pct {
  font-size: 0.55em;
  font-weight: 700;
  color: var(--gray);
  vertical-align: top;
  margin-left: 0.05em;
}
.payment-card--accent .payment-pct { color: var(--accent); -webkit-text-fill-color: var(--accent); }
.payment-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}
.payment-connector { display: none; }

/* Roadmap */
.roadmap {
  list-style: none;
  margin: 0;
  padding: 0;
}
.roadmap-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2rem;
  padding: 1.8rem 0;
  border-top: 1px solid var(--gray2);
  align-items: flex-start;
}
.roadmap-row:last-child { border-bottom: 1px solid var(--gray2); }
.rm-week {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  padding-top: 0.15rem;
}
.rm-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.rm-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}
.rm-tag {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: #fff1ef;
  padding: 0.3rem 0.8rem;
  border-radius: 980px;
  border: 1px solid rgba(255,105,88,0.30);
}
.roadmap-row--highlight {
  position: relative;
  background: #fff4f2;
  border-top-color: rgba(255,105,88,0.25);
  border-radius: 0 12px 12px 0;
}
.roadmap-row--highlight + .roadmap-row { border-top-color: rgba(255,105,88,0.25); }
.roadmap-row--highlight::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--grad);
  border-radius: 3px;
}
.roadmap-row--highlight .rm-week { color: var(--accent); }

/* Responsive — Instrucciones */
@media (max-width: 760px) {
  .payment-cards { grid-template-columns: 1fr; }
  .roadmap-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 1.4rem 0;
  }
  .roadmap-row--highlight {
    padding-left: 1rem;
  }
}
@media (max-width: 600px) {
  .instructions-section { padding: 4rem 1.2rem; }
  .instr-block { margin-bottom: 3.5rem; }
  .payment-card { padding: 1.8rem; }
  .instr-block-header {
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
  }
}

/* ─── CTA FINAL ────────────────────────────────────────────── */
.cta-section {
  padding: 11rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff1ef 100%);
  border-top: 1px solid var(--gray2);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,105,88,0.10) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255,138,125,0.10) 0%, transparent 45%);
  z-index: 0;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section .headline { margin-bottom: 1.2rem; }
.cta-section .body-large { max-width: 520px; margin: 0 auto 3rem; }
.cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  background: var(--surface);
  border: 1px solid rgba(22,163,74,0.35);
  color: var(--green);
  text-decoration: none;
  border-radius: 980px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, transform 0.2s;
}
.btn-whatsapp svg { width: 18px; height: 18px; }
.btn-whatsapp:hover { background: #f0fdf4; transform: translateY(-2px); }

.trust-line {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray);
}
.trust-sep { color: var(--gray2); }

/* ─── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  padding: 3rem 6%;
  border-top: 1px solid var(--gray2);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer > .footer-inner > div > div { color: #fff; }
.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 0.6rem;
}
.footer p { font-size: 0.78rem; color: #94a3b8; margin-top: 0.2rem; }
.footer-link {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: #fff; }

/* ─── SECTION DIVIDERS ─────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--gray2);
}

/* ─── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ─── HAMBURGER NAV ────────────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 58px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-link {
  color: var(--ink);
  text-decoration: none;
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 0.7rem 2rem;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--gray2);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--accent); }
.mobile-link--accent {
  color: var(--accent);
  margin-top: 1rem;
  border-bottom: none;
}

/* ─── RESPONSIVE — TABLET (≤ 960px) ───────────────────────── */
@media (max-width: 960px) {

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { display: flex; }

  /* Hero — tablet/móvil: centrado */
  .hero { align-items: center; justify-content: center; }
  .hero-content { max-width: 88%; padding: 0 2rem; text-align: center; }
  .hero-title { font-size: clamp(2rem, 5vw, 3.5rem); }
  .hero-title br { display: none; }

  /* Intro */
  .intro-section { padding: 6rem 1.5rem; }

  /* Services */
  .services-section { padding: 5rem 5%; }
  .services-top { margin-bottom: 3rem; }
  .service-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 1.5rem 0;
  }

  /* Process */
  .process-section { padding: 5rem 5%; }
  .process-header { margin-bottom: 3rem; }
  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .timeline::before { display: none; }
  .tl-item {
    display: grid;
    grid-template-columns: 22px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray2);
    position: relative;
  }
  .tl-item:last-child { border-bottom: none; }
  .tl-dot { margin-bottom: 0; grid-column: 1; grid-row: 1 / 4; align-self: start; margin-top: 2px; }
  .tl-week { grid-column: 2; grid-row: 1; margin-bottom: 0.2rem; }
  .tl-name { grid-column: 2; grid-row: 2; margin-bottom: 0.3rem; }
  .tl-desc { grid-column: 2; grid-row: 3; }
  .tl-item:not(:last-child) .tl-dot::before {
    content: '';
    position: absolute;
    left: 10px; top: 30px; bottom: -1.5rem;
    width: 2px;
    background: var(--gray2);
  }

  /* Pricing */
  .pricing-section { padding: 5rem 5%; }
  .pricing-cards { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1.5rem; }
  .plan-card { padding: 1.8rem; }
  .pricing-header { margin-bottom: 3rem; }

  /* Disclaimer */
  .pricing-disclaimer { flex-direction: column; gap: 0.8rem; padding: 1.2rem 1.5rem; }

  /* CTA */
  .cta-section { padding: 6rem 1.5rem; }
  .trust-line { flex-direction: column; gap: 0.5rem; text-align: center; }
  .trust-sep { display: none; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ─── RESPONSIVE — MOBILE (≤ 600px) ───────────────────────── */
@media (max-width: 600px) {

  /* Hero — móvil */
  .hero { justify-content: flex-start; }
  .hero-content { max-width: 100%; padding: 0 2rem; text-align: left; }
  .hero-title { font-size: clamp(1.8rem, 7.5vw, 2.6rem); line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 1rem; }
  .hero-title br { display: inline; }
  .hero-sub { font-size: 0.95rem; line-height: 1.6; }
  .hero-sub br { display: none; }
  .hero-eyebrow { display: none; }

  /* Stats: 1 columna compacta */
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--gray2);
    padding: 1.8rem 1.5rem;
  }
  .stat-number { font-size: 3.5rem; }

  /* Intro */
  .intro-section { padding: 4rem 1.2rem; }

  /* Servicios */
  .services-section { padding: 4rem 1.2rem; }

  /* Process */
  .process-section { padding: 4rem 1.2rem; }

  /* Pricing */
  .pricing-section { padding: 4rem 1.2rem; }
  .plan-card { padding: 1.5rem; border-radius: 16px; }
  .plan-amount { font-size: 3.5rem; }
  .plan-curr { font-size: 1.3rem; }
  .plan-features li { font-size: 0.85rem; padding: 0.6rem 0; }

  /* Plataformas chips en móvil */
  .platforms-row { gap: 0.3rem; }
  .platform-chip { font-size: 0.62rem; padding: 0.2rem 0.5rem; }

  /* CTA */
  .cta-section { padding: 5rem 1.2rem; }
  .cta-actions { flex-direction: column; width: 100%; }
  .btn-hero[style] { width: 100%; justify-content: center; text-align: center; }
  .btn-whatsapp { justify-content: center; }

  /* Footer */
  .footer { padding: 2rem 1.2rem; }
}
