/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:           #090912;
  --bg-2:         #0f0f1c;
  --bg-3:         #141428;
  --bg-card:      rgba(14, 14, 34, 0.75);
  --text:         #e8eeff;
  --text-soft:    rgba(232, 238, 255, 0.65);
  --text-mute:    rgba(232, 238, 255, 0.35);
  --accent:       #00c8ff;
  --accent-2:     #a855f7;
  --accent-3:     #0080ff;
  --glow-blue:    rgba(0, 200, 255, 0.22);
  --glow-purple:  rgba(168, 85, 247, 0.18);
  --line:         rgba(0, 200, 255, 0.12);
  --line-soft:    rgba(255, 255, 255, 0.06);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --sans:         'Inter', system-ui, -apple-system, sans-serif;
  --mono:         'JetBrains Mono', 'Fira Code', monospace;
  --nav-h:        72px;
  --container:    1200px;
  --radius:       16px;
  --radius-lg:    24px;
  --mx: 50%;
  --my: 40%;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  text-wrap: balance;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
}
em { font-style: italic; }
::selection { background: var(--accent); color: var(--bg); }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--accent); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* =============================================================
   4. Typography
   ============================================================= */
.section-kicker {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
  display: block;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2rem;
}
.section-title em {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

/* =============================================================
   5. Components
   ============================================================= */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .2s, border-color .2s;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .2s;
  border-radius: inherit;
}
.btn:hover::after { background: rgba(255,255,255,0.06); }
.btn-lg { padding: .9rem 1.8rem; font-size: 1rem; }
.btn-xl { padding: 1.1rem 2.2rem; font-size: 1.1rem; border-radius: 14px; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-3) 100%);
  color: #fff;
  box-shadow: 0 0 0 0 var(--glow-blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--glow-blue), 0 0 0 1px var(--accent);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Glass card */
.glass-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
}
@supports (backdrop-filter: blur(20px)) {
  .glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(0, 200, 255, 0.1);
  }
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  padding: .35rem .85rem;
  border-radius: 50px;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--accent);
  border: 1px solid var(--line);
  background: rgba(0, 200, 255, 0.06);
}

/* Reveal base — content MUST be visible without JS */
.reveal[data-split] { opacity: 1; transform: none; }

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal]:nth-child(2) { transition-delay: .10s; }
[data-reveal]:nth-child(3) { transition-delay: .20s; }
[data-reveal]:nth-child(4) { transition-delay: .30s; }
[data-reveal]:nth-child(5) { transition-delay: .40s; }
[data-reveal]:nth-child(6) { transition-delay: .50s; }

/* Grid-specific stagger — cards animate in sequence */
.pillars-grid [data-reveal]:nth-child(1) { transition-delay: .00s; }
.pillars-grid [data-reveal]:nth-child(2) { transition-delay: .10s; }
.pillars-grid [data-reveal]:nth-child(3) { transition-delay: .20s; }
.pillars-grid [data-reveal]:nth-child(4) { transition-delay: .30s; }
.pillars-grid [data-reveal]:nth-child(5) { transition-delay: .40s; }
.pillars-grid [data-reveal]:nth-child(6) { transition-delay: .50s; }

.testimonials-grid [data-reveal]:nth-child(1) { transition-delay: .00s; }
.testimonials-grid [data-reveal]:nth-child(2) { transition-delay: .10s; }
.testimonials-grid [data-reveal]:nth-child(3) { transition-delay: .20s; }
.testimonials-grid [data-reveal]:nth-child(4) { transition-delay: .30s; }
.testimonials-grid [data-reveal]:nth-child(5) { transition-delay: .40s; }
.testimonials-grid [data-reveal]:nth-child(6) { transition-delay: .50s; }

.plans-grid [data-reveal]:nth-child(1) { transition-delay: .00s; }
.plans-grid [data-reveal]:nth-child(2) { transition-delay: .18s; }
.plans-grid [data-reveal]:nth-child(3) { transition-delay: .36s; }

/* =============================================================
   6. NAV
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background .4s var(--ease-soft), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(9, 9, 18, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo-fallback {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text);
}
.nav-logo-fallback span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .3s var(--ease-out);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { margin-left: 1rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: .5rem;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem clamp(1.25rem, 5vw, 3rem) 2rem;
  background: rgba(9, 9, 18, 0.97);
  border-top: 1px solid var(--line-soft);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile ul { display: flex; flex-direction: column; gap: .25rem; }
.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  padding: .6rem 0;
  color: var(--text-soft);
  transition: color .2s;
  border-bottom: 1px solid var(--line-soft);
}
.nav-mobile a:hover { color: var(--accent); }

/* =============================================================
   7. HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  padding-top: var(--nav-h);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: .55;
}

.hero-gradient {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(circle 800px at var(--mx) var(--my), rgba(0,200,255,.14) 0%, transparent 60%),
    radial-gradient(circle 600px at calc(var(--mx) + 30%) calc(var(--my) + 15%), rgba(168,85,247,.1) 0%, transparent 55%);
  pointer-events: none;
  transition: background .6s ease;
}

/* Hero uses a wider container for editorial feel */
.hero .container {
  max-width: 1380px;
}

.hero-grain {
  position: absolute; inset: 0; z-index: 2;
  opacity: .04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.hero-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
  padding-top: 3rem;
  padding-bottom: 0;
}

.hero-content {
  padding-bottom: clamp(3rem, 6vh, 5rem);
}

.hero-kicker {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: block;
}

.hero-title {
  font-size: clamp(2.6rem, 5.8vw, 5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.038em;
  color: var(--text);
  margin-bottom: 1.5rem;
  max-width: 16ch;
}
.hero-title em {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-metric { display: flex; flex-direction: column; gap: .15rem; }
.hero-metric-val {
  font-family: var(--mono);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.hero-metric-label {
  font-size: .72rem;
  color: var(--text-mute);
  letter-spacing: .03em;
}
.hero-metric-sep {
  width: 1px;
  height: 36px;
  background: var(--line);
  flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-photo {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 0;
  position: relative;
  z-index: 2;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}
.hero-photo-glow {
  position: absolute;
  inset: 10% -15% -5%;
  background: radial-gradient(ellipse at 50% 80%, var(--glow-blue) 0%, transparent 65%);
  filter: blur(55px);
  z-index: 1;
  pointer-events: none;
}
.hero-visual.no-photo { display: none; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 10;
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .15em;
  color: var(--text-mute);
  text-transform: uppercase;
  animation: scrollHintPulse 2.5s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
@keyframes scrollHintPulse {
  0%, 100% { opacity: .4; transform: translateX(-50%) translateY(0); }
  50%       { opacity: .8; transform: translateX(-50%) translateY(5px); }
}

/* =============================================================
   8. COMPARE
   ============================================================= */
.compare {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-2);
  position: relative;
}
.compare::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.compare .section-title { text-align: center; }
.compare .section-kicker { text-align: center; }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.compare-col { padding: 2rem; }
.compare-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.compare-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
}
.compare-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.compare-icon--bad { background: rgba(255, 80, 80, .15); color: #ff5050; }
.compare-icon--good { background: rgba(0, 200, 255, .15); color: var(--accent); }

.compare-list { display: flex; flex-direction: column; gap: .75rem; }
.compare-list li {
  padding: .65rem .75rem .65rem 2rem;
  position: relative;
  font-size: .9rem;
  line-height: 1.5;
  border-radius: 8px;
  transition: background .2s;
}
.compare-list li::before {
  content: '';
  position: absolute;
  left: .6rem; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
}
.compare-list--bad li { color: var(--text-soft); }
.compare-list--bad li::before { background: #ff5050; }
.compare-list--bad li:hover { background: rgba(255,80,80,.05); }
.compare-list--good li { color: var(--text); }
.compare-list--good li::before { background: var(--accent); box-shadow: 0 0 8px var(--glow-blue); }
.compare-list--good li:hover { background: rgba(0,200,255,.05); }

/* =============================================================
   9. PILARES / SERVICIOS
   ============================================================= */
.pillars {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.pillars .section-title,
.pillars .section-kicker { text-align: center; }

/* Shared background visual — used in pillars and process sections */
.pillars-bg-visual,
.section-bg-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  will-change: opacity;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.pillars-bg-visual img,
.section-bg-visual img {
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  flex-shrink: 0;
}
.pillars-bg-overlay,
.section-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, transparent 30%, rgba(9,9,18,.40) 60%, var(--bg) 95%),
    linear-gradient(to bottom, var(--bg) 0%, transparent 18%, transparent 82%, var(--bg) 100%),
    linear-gradient(to right,  var(--bg) 0%, transparent 12%, transparent 88%, var(--bg) 100%);
}

.pillars .container,
.process .container { position: relative; z-index: 1; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.pillar-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s;
}
.pillar-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 28px 70px rgba(0,0,0,.5), 0 0 0 1px rgba(0,200,255,.3), 0 0 50px rgba(0,200,255,.07);
  border-color: rgba(0,200,255,.32);
}
.pillar-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: .25rem;
  display: inline-block;
  transition: transform .3s var(--ease-bounce);
}
.pillar-card.is-visible .pillar-icon {
  animation: pillarIconFloat 4s ease-in-out infinite;
}
@keyframes pillarIconFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-5px) scale(1.1); }
}
.pillar-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.pillar-card p {
  font-size: .88rem;
  color: var(--text-soft);
  line-height: 1.6;
  flex: 1;
}
.pillar-stat {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: .08em;
  border-top: 1px solid var(--line);
  padding-top: .75rem;
  margin-top: auto;
}

/* =============================================================
   10. PLANES
   ============================================================= */
.plans {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-2);
  position: relative;
}
.plans .section-title,
.plans .section-kicker { text-align: center; }
.plans-badges {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.plan-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.plan-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}

.plan-card--featured {
  border: 1px solid transparent;
  background-clip: padding-box;
}
.plan-card--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent));
  background-size: 200% 200%;
  animation: gradientBorder 3.5s ease infinite;
  z-index: -1;
}

.plan-badge-popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text);
}
.plan-tagline {
  font-size: .85rem;
  color: var(--text-soft);
  margin-top: .15rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: .35rem;
}
.plan-price-old {
  font-size: .9rem;
  color: var(--text-mute);
  text-decoration: line-through;
}
.plan-price-current {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--text);
}
.plan-card--featured .plan-price-current { color: var(--accent); }
.plan-price-period {
  font-size: .85rem;
  color: var(--text-soft);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.plan-features li {
  font-size: .9rem;
  color: var(--text-soft);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.plan-btn { width: 100%; justify-content: center; margin-top: auto; }

/* =============================================================
   11. PROCESO
   ============================================================= */
.process {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
}
.process .section-title,
.process .section-kicker { text-align: center; }

.process-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}
.process-track::before {
  content: '';
  position: absolute;
  left: 24px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2), transparent);
}

.process-step {
  display: flex;
  gap: 1.75rem;
  padding: 0 0 3rem 0;
  position: relative;
}
.process-step:last-child { padding-bottom: 0; }

.process-num {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--mono);
  font-size: .8rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(0,200,255,.1);
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.process-content { padding-top: .75rem; }
.process-day {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-2);
  display: block;
  margin-bottom: .4rem;
}
.process-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--text);
}
.process-content p {
  font-size: .9rem;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 52ch;
}

.process-connector { display: none; }

/* =============================================================
   12. ABOUT
   ============================================================= */
.about {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-2);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-photo {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  object-fit: cover;
}
.about-photo-glow {
  position: absolute;
  inset: 5% -15%;
  background: radial-gradient(ellipse at center, var(--glow-purple) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}
.about-content p {
  font-size: .95rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
  max-width: 52ch;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
}
.about-stat { display: flex; flex-direction: column; gap: .2rem; }
.about-stat-num {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--accent);
  line-height: 1;
}
.about-stat-label {
  font-size: .78rem;
  color: var(--text-mute);
  line-height: 1.4;
}

/* =============================================================
   13. TESTIMONIOS
   ============================================================= */
.testimonials {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg);
}
.testimonials .section-title,
.testimonials .section-kicker { text-align: center; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s;
}
.testimonial-card:hover {
  transform: translateY(-5px) scale(1.012);
  border-color: rgba(168,85,247,.35);
  box-shadow: 0 22px 55px rgba(0,0,0,.45), 0 0 35px rgba(168,85,247,.08);
}
.testimonial-quote {
  font-size: 3rem;
  line-height: .8;
  font-weight: 800;
  color: var(--accent-2);
  opacity: .5;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: .75rem;
  border-top: 1px solid var(--line-soft);
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 500;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
}
.testimonial-role {
  font-size: .78rem;
  color: var(--text-mute);
}

/* =============================================================
   14. GARANTÍA
   ============================================================= */
.guarantee {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.guarantee-glow {
  position: absolute;
  top: 20%; right: 30%;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse at center, var(--glow-blue) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.guarantee-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
  position: relative;
  z-index: 1;
}
.guarantee-content { max-width: 56ch; }
.guarantee-content .section-title { margin-bottom: 1rem; }
.guarantee-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}
.guarantee-sub {
  font-size: .9rem;
  color: var(--text-soft);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.guarantee-visual {
  display: flex;
  justify-content: center;
}
.guarantee-photo {
  max-height: 480px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 40px var(--glow-blue));
  animation: cutoutFloat 6s ease-in-out infinite;
}
@keyframes cutoutFloat {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 40px var(--glow-blue)); }
  50%       { transform: translateY(-14px); filter: drop-shadow(0 0 55px rgba(0,200,255,.45)); }
}

/* =============================================================
   15. CTA FINAL
   ============================================================= */
.cta-final {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bg);
  position: relative;
  text-align: center;
  overflow: hidden;
}
.cta-final-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(0,200,255,.09) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(168,85,247,.07) 0%, transparent 60%);
  pointer-events: none;
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final-title {
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.05;
  max-width: 18ch;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.cta-final-sub {
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  color: var(--text-soft);
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.cta-final-note {
  margin-top: 1.25rem;
  font-size: .85rem;
  color: var(--text-mute);
}
.cta-final-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-final-note a:hover { text-decoration: none; }

/* =============================================================
   16. FAQ
   ============================================================= */
.faq {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-2);
}
.faq .section-title,
.faq .section-kicker { text-align: center; }
.faq-list {
  max-width: 720px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.faq-item { border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: color .2s, border-color .2s, background .2s;
}
.faq-question:hover { border-color: var(--line); color: var(--accent); }
.faq-question[aria-expanded="true"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-color: var(--line);
  color: var(--accent);
  background: rgba(0,200,255,.05);
}

.faq-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid currentColor;
  flex-shrink: 0;
  position: relative;
  transition: transform .3s var(--ease-out);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s;
}
.faq-icon::before {
  width: 8px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1.5px; height: 8px;
  transform: translate(-50%, -50%);
}
.faq-question[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease-out), padding .3s var(--ease-out);
  background: rgba(0,200,255,.03);
  border: 1px solid var(--line);
  border-top: 0;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
.faq-answer.is-open { max-height: 300px; padding: 1.25rem 1.5rem; }
.faq-answer p { font-size: .9rem; color: var(--text-soft); line-height: 1.7; }

/* =============================================================
   17. FOOTER
   ============================================================= */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
  padding: 3rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer-circuit {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, transparent 40%, black 100%);
  pointer-events: none;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 1.5rem;
}
.footer-logo { height: 36px; width: auto; margin-bottom: .5rem; }
.footer-tagline {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .15em;
  color: var(--accent);
  text-transform: uppercase;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-nav a {
  font-size: .9rem;
  color: var(--text-soft);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--accent); }
.footer-contact { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact p {
  font-size: .85rem;
  color: var(--text-soft);
}
.footer-email {
  font-size: .85rem;
  color: var(--accent);
  transition: opacity .2s;
}
.footer-email:hover { opacity: .75; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.footer-copy { font-size: .78rem; color: var(--text-mute); }
.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: .78rem;
  color: var(--text-mute);
  transition: color .2s;
}
.footer-legal a:hover { color: var(--accent); }

/* =============================================================
   18. EFFECTS & ANIMATIONS
   ============================================================= */
@keyframes circuitPulse {
  0%, 100% { opacity: .08; }
  50%       { opacity: .18; }
}
@keyframes glowPulse {
  0%, 100% { opacity: .6; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.05); }
}
@keyframes gradientBorder {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* =============================================================
   19. RESPONSIVE (mobile-first → up)
   ============================================================= */
@media (min-width: 540px) {
  .compare-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 720px) {
  .hero-inner {
    grid-template-columns: 1.15fr 1fr;
    gap: 1.5rem;
    padding-top: 5rem;
    padding-bottom: 0;
    align-items: end;
    min-height: calc(100vh - var(--nav-h));
  }
  .hero-title { max-width: none; }
  .hero-visual { justify-content: flex-end; align-self: flex-end; }
  .hero-photo { max-width: 100%; max-height: 94vh; object-fit: contain; object-position: bottom right; }

  .plans-grid { grid-template-columns: repeat(3, 1fr); }
  .process-track { flex-direction: row; align-items: flex-start; }
  .process-track::before { display: none; }
  .process-step { flex-direction: column; flex: 1; padding: 0; }
  .process-connector {
    display: flex;
    align-self: flex-start;
    margin-top: 24px;
    flex: 0 0 3rem;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
  }
  .process-content { padding-top: 1.25rem; }

  .about-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }

  .guarantee-inner { grid-template-columns: 1fr auto; gap: 3rem; }
  .guarantee-photo { max-height: 560px; }

  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; gap: 1rem 2rem; }
}

@media (min-width: 960px) {
  .nav-hamburger { display: none; }
  .nav-mobile { display: none !important; }
  .hero-photo { border-radius: var(--radius-lg); }
  .about-content { padding-left: 1rem; }
}

@media (min-width: 1280px) {
  .hero-inner { gap: 2rem; }
  .hero-photo { max-height: 94vh; }
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================================
   20. Reduced motion (ONLY intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-canvas { display: none; }
  .hero-scroll-hint { animation: none; }
  .plan-card--featured::before { animation: none; }
  html { scroll-behavior: auto; }
}
