/* =============================================================
   0. Fonts shorthand
   ============================================================= */
/* Sora (display) · Inter (body) · JetBrains Mono (accent) */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #07070d;
  --bg-2:      #0b0b15;
  --bg-3:      #11111d;
  --card:      rgba(255,255,255,0.035);
  --card-line: rgba(255,255,255,0.09);
  --ink:       #f3f4fb;
  --ink-soft:  rgba(243,244,251,0.74);
  --ink-mute:  rgba(243,244,251,0.46);
  --violet:    #7c5cff;
  --violet-2:  #9d7bff;
  --cyan:      #22d3ee;
  --accent:    var(--violet);
  --grad:      linear-gradient(120deg, #7c5cff 0%, #22d3ee 100%);
  --grad-soft: linear-gradient(120deg, rgba(124,92,255,.18), rgba(34,211,238,.14));
  --line:      rgba(255,255,255,0.08);

  --sans:  "Inter", system-ui, -apple-system, sans-serif;
  --disp:  "Sora", "Inter", sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, monospace;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --maxw: 1200px;
  --pad:  clamp(1.1rem, 5vw, 4rem);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, 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; }
p { text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; line-height: 1.04; letter-spacing: -0.025em; font-family: var(--disp); font-weight: 700; }
em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
::selection { background: rgba(124,92,255,.4); color: #fff; }
:focus-visible { outline: 2px solid var(--violet-2); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .6rem 1rem; background: var(--ink); color: var(--bg);
  border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Background layers
   ============================================================= */
#bg-canvas {
  position: fixed; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.bg-glow {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(50% 40% at 78% 12%, rgba(124,92,255,.22), transparent 70%),
    radial-gradient(46% 38% at 12% 78%, rgba(34,211,238,.14), transparent 70%);
}
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body > main, .nav, .footer, .marquee, .mobile-menu { position: relative; z-index: 2; }

/* =============================================================
   4. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 9000;
  display: grid; place-content: center; justify-items: center; gap: 1.4rem;
  background: var(--bg);
  transition: opacity .6s var(--ease-out), visibility .6s;
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes splashSafety { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.splash-mark { font-family: var(--disp); font-weight: 700; font-size: clamp(1.4rem, 5vw, 2rem); letter-spacing: -.03em; display: flex; align-items: center; gap: .55rem; }
.splash-suffix { color: var(--violet-2); }
.splash-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 24px rgba(124,92,255,.8); animation: pulse 1.4s var(--ease-soft) infinite; }
.splash-bar { width: 180px; height: 3px; border-radius: 3px; background: rgba(255,255,255,.08); overflow: hidden; }
.splash-bar i { display: block; height: 100%; width: 40%; border-radius: 3px; background: var(--grad); animation: load 1.3s var(--ease-soft) infinite; }
@keyframes load { 0% { transform: translateX(-120%); } 100% { transform: translateX(360%); } }
@keyframes pulse { 50% { transform: scale(1.35); opacity: .65; } }

/* =============================================================
   5. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.4rem; border-radius: 100px;
  font-weight: 600; font-size: .95rem; letter-spacing: -.01em;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s, border-color .35s;
  will-change: transform;
}
.btn-lg { padding: 1rem 1.7rem; font-size: 1.02rem; }
.btn-primary {
  background: var(--grad); color: #0a0a14; font-weight: 700;
  box-shadow: 0 10px 30px -8px rgba(124,92,255,.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 44px -10px rgba(124,92,255,.7); }
.btn-ghost {
  border: 1px solid var(--card-line); color: var(--ink); background: rgba(255,255,255,.02);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.06); }
.btn-ia {
  background: rgba(34,211,238,.12); color: var(--cyan); border: 1px solid rgba(34,211,238,.45);
}
.btn-ia:hover { transform: translateY(-3px); background: rgba(34,211,238,.2); box-shadow: 0 16px 40px -12px rgba(34,211,238,.5); }

/* =============================================================
   6. Kicker / headings utilities
   ============================================================= */
.kicker {
  font-family: var(--mono); font-size: .76rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-mute); display: inline-flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem;
}
.kicker-line { width: 26px; height: 1px; background: var(--grad); display: inline-block; }
.section { padding: clamp(4.5rem, 11vw, 9rem) var(--pad); max-width: var(--maxw); margin-inline: auto; }
.section-head { max-width: 760px; margin-bottom: clamp(2.4rem, 6vw, 4rem); }
.section-head h2 { font-size: clamp(2rem, 6vw, 3.6rem); }
.section-lead { color: var(--ink-soft); font-size: 1.08rem; margin-top: 1.2rem; max-width: 60ch; }

/* =============================================================
   7. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1rem var(--pad);
  transition: background .4s var(--ease-out), backdrop-filter .4s, border-color .4s, padding .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(7,7,13,.72); backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line); padding-block: .7rem;
}
.nav-brand { display: flex; align-items: center; gap: .5rem; font-family: var(--disp); font-weight: 700; letter-spacing: -.03em; font-size: 1.12rem; margin-right: auto; }
.nav-suffix { color: var(--violet-2); }
.nav-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 14px rgba(124,92,255,.8); }
.nav-links { display: flex; gap: 1.7rem; }
.nav-links a { color: var(--ink-soft); font-size: .95rem; font-weight: 500; position: relative; transition: color .3s; }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-5px; width:0; height:1.5px; background: var(--grad); transition: width .35s var(--ease-out); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-burger { display: none; flex-direction: column; gap: 5px; width: 30px; }
.nav-burger span { height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease-out), opacity .3s; }
.nav-burger.is-open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0 0 auto 0; top: 0; z-index: 90;
  display: flex; flex-direction: column; gap: .4rem;
  padding: 5.5rem var(--pad) 2rem;
  background: rgba(8,8,16,.96); backdrop-filter: blur(18px);
  transform: translateY(-110%); transition: transform .5s var(--ease-out);
  border-bottom: 1px solid var(--line);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a { padding: .9rem 0; font-size: 1.4rem; font-family: var(--disp); font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 1.2rem; justify-content: center; }

/* =============================================================
   8. Hero
   ============================================================= */
.hero { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: 7rem var(--pad) 3rem; max-width: var(--maxw); margin-inline: auto; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.hero-title { font-size: clamp(2.5rem, 7.2vw, 5.2rem); letter-spacing: -.035em; margin-bottom: 1.5rem; }
.hero-sub { color: var(--ink-soft); font-size: clamp(1.02rem, 1.4vw, 1.22rem); max-width: 46ch; margin-bottom: 2rem; }
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.6rem; }
.hero-trust { display: flex; gap: clamp(1.2rem, 3vw, 2.4rem); list-style: none; }
.hero-trust li { display: flex; flex-direction: column; }
.hero-trust b { font-family: var(--disp); font-size: 1.7rem; font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.hero-trust span { font-size: .82rem; color: var(--ink-mute); }

/* hero figure */
.hero-figure { position: relative; aspect-ratio: 3/4; display: grid; place-items: center; }
.hero-figure-glow { position: absolute; inset: -8% -6%; background: radial-gradient(50% 55% at 55% 45%, rgba(124,92,255,.5), rgba(34,211,238,.18) 55%, transparent 75%); filter: blur(50px); z-index: 0; }
.hero-ring { position: absolute; inset: 4%; border-radius: 50%; border: 1px solid rgba(255,255,255,.08); background: radial-gradient(closest-side, rgba(255,255,255,.04), transparent); z-index: 0; }
.hero-ring::before { content:""; position:absolute; inset:-1px; border-radius:50%; border:1px solid transparent; background: conic-gradient(from 0deg, transparent, rgba(124,92,255,.6), transparent 40%) border-box; -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: spin 14s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-photo { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; object-position: bottom center; filter: drop-shadow(0 30px 60px rgba(0,0,0,.6)); }
.hero-badge {
  position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem .85rem; border-radius: 100px; font-size: .8rem; font-weight: 600;
  background: rgba(13,13,24,.78); backdrop-filter: blur(12px); border: 1px solid var(--card-line);
  box-shadow: 0 12px 30px -10px rgba(0,0,0,.6);
}
.hero-badge-1 { top: 12%; left: -4%; }
.hero-badge-2 { bottom: 14%; right: -4%; }
.hero-badge-2 b { color: var(--cyan); font-family: var(--mono); }
.hb-dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 10px #34d399; }

.hero-scroll { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 1px solid var(--card-line); border-radius: 100px; display: grid; justify-items: center; padding-top: 7px; }
.hero-scroll span { width: 4px; height: 8px; border-radius: 4px; background: var(--grad); animation: scrolldot 1.7s var(--ease-soft) infinite; }
@keyframes scrolldot { 0%{ transform: translateY(0); opacity:1 } 70%{ transform: translateY(14px); opacity:0 } 100%{opacity:0} }

/* =============================================================
   9. Marquee
   ============================================================= */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 1.1rem 0; background: rgba(255,255,255,.015); }
.marquee-track { display: flex; gap: 2rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track span { font-family: var(--disp); font-weight: 600; font-size: clamp(1.1rem,2.4vw,1.5rem); color: var(--ink-soft); white-space: nowrap; }
.marquee-track i { color: var(--violet); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =============================================================
   10. Packages
   ============================================================= */
.packages { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.1rem, 2.5vw, 1.8rem); }
.package {
  position: relative; padding: clamp(1.6rem, 3vw, 2.4rem); border-radius: 26px;
  background: var(--card); border: 1px solid var(--card-line); overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .5s, box-shadow .5s;
}
.package::before { content:""; position:absolute; inset:0; background: var(--grad-soft); opacity:0; transition: opacity .5s; pointer-events:none; }
.package:hover { transform: translateY(-7px); border-color: rgba(124,92,255,.4); box-shadow: 0 28px 60px -22px rgba(124,92,255,.4); }
.package:hover::before { opacity: .5; }
.package.is-highlight { border-color: rgba(124,92,255,.45); box-shadow: 0 22px 60px -26px rgba(124,92,255,.5); }
.package.is-highlight::before { opacity: .35; }
.pkg-badge { position: absolute; top: 1.3rem; right: 1.3rem; font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; padding: .35rem .7rem; border-radius: 100px; background: var(--grad); color: #0a0a14; font-weight: 700; }
.pkg-tag { font-family: var(--mono); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute); }
.pkg-name { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin: .6rem 0 .3rem; position: relative; }
.pkg-price { font-family: var(--disp); font-weight: 600; font-size: 1.15rem; color: var(--violet-2); margin-bottom: 1rem; position: relative; }
.pkg-pitch { color: var(--ink-soft); margin-bottom: 1.5rem; position: relative; }
.pkg-features { list-style: none; display: grid; gap: .7rem; margin-bottom: 1.8rem; position: relative; }
.pkg-features li { display: flex; gap: .65rem; align-items: flex-start; color: var(--ink-soft); font-size: .96rem; }
.pkg-features li::before { content:""; flex: 0 0 18px; height: 18px; margin-top: 2px; border-radius: 50%; background: var(--grad-soft); border: 1px solid rgba(124,92,255,.5); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239d7bff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 11px; }
.package .btn { width: 100%; justify-content: center; position: relative; }

/* Extra mensual opcional (add-on) */
.addon { margin-top: clamp(1.1rem, 2.5vw, 1.8rem); }
.addon-card {
  position: relative; display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3vw, 2.4rem); align-items: center;
  padding: clamp(1.5rem, 3vw, 2.2rem); border-radius: 26px;
  background: var(--card); border: 1px solid var(--card-line); overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .5s;
}
.addon-card::before { content:""; position:absolute; left:0; top:0; bottom:0; width:3px; background: var(--grad); opacity:.8; }
.addon-card:hover { transform: translateY(-5px); border-color: rgba(34,211,238,.35); }
.addon-name { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: .5rem 0 .25rem; }
.addon-price { font-family: var(--disp); font-weight: 600; font-size: 1.1rem; color: var(--cyan); margin-bottom: .9rem; }
.addon-desc { color: var(--ink-soft); margin-bottom: 1.4rem; }
.addon-main .btn { width: 100%; justify-content: center; }
.addon-features { margin-bottom: 0; }

/* =============================================================
   11. Proceso
   ============================================================= */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.4rem); }
.step { padding: 1.7rem; border-radius: 20px; background: var(--card); border: 1px solid var(--card-line); transition: transform .5s var(--ease-out), border-color .5s; }
.step:hover { transform: translateY(-6px); border-color: rgba(124,92,255,.35); }
.step-n { font-family: var(--mono); font-size: .9rem; color: var(--violet-2); margin-bottom: 1.2rem; display: inline-block; padding: .3rem .6rem; border: 1px solid var(--card-line); border-radius: 8px; }
.step h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.step p { color: var(--ink-soft); font-size: .93rem; }

/* =============================================================
   12. Stats
   ============================================================= */
.stats-section { padding-block: clamp(2rem, 5vw, 3.5rem); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: clamp(1.8rem,4vw,2.6rem); border-radius: 26px; background: var(--card); border: 1px solid var(--card-line); position: relative; overflow: hidden; }
.stats::before { content:""; position:absolute; inset:0; background: var(--grad-soft); opacity:.4; }
.stat { text-align: center; position: relative; }
.stat b { font-family: var(--disp); font-weight: 800; font-size: clamp(2.2rem, 6vw, 3.6rem); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; display: block; }
.stat span { color: var(--ink-soft); font-size: .92rem; margin-top: .5rem; display: block; }

/* =============================================================
   13. Testimonios
   ============================================================= */
.testi-grid { columns: 3; column-gap: clamp(1rem, 2vw, 1.5rem); }
.testi { break-inside: avoid; margin-bottom: clamp(1rem,2vw,1.5rem); padding: 1.7rem; border-radius: 20px; background: var(--card); border: 1px solid var(--card-line); transition: transform .5s var(--ease-out), border-color .5s; }
.testi:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.2); }
.testi-stars { color: #ffce4d; font-size: .95rem; letter-spacing: .12em; margin-bottom: .9rem; }
.testi-text { color: var(--ink-soft); font-size: .98rem; line-height: 1.65; margin-bottom: 1.3rem; }
.testi-who { display: flex; align-items: center; gap: .8rem; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-family: var(--disp); font-weight: 700; color: #0a0a14; background: var(--grad); flex: 0 0 auto; }
.testi-name { font-weight: 600; font-size: .95rem; }
.testi-role { color: var(--ink-mute); font-size: .82rem; }

/* =============================================================
   14. Bio
   ============================================================= */
.bio-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(1.8rem, 5vw, 4rem); align-items: center; }
.bio-photo { position: relative; aspect-ratio: 4/5; border-radius: 26px; overflow: hidden; border: 1px solid var(--card-line); background: var(--bg-3); }
.bio-photo-glow { position: absolute; inset: 0; background: radial-gradient(60% 50% at 50% 30%, rgba(124,92,255,.35), transparent 70%); z-index: 0; }
.bio-photo img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.bio-copy h2 { font-size: clamp(1.8rem, 4.6vw, 3rem); margin-bottom: 1.3rem; }
.bio-text p { color: var(--ink-soft); margin-bottom: 1rem; font-size: 1.05rem; }
.bio-stats { display: flex; gap: 2.5rem; margin: 1.8rem 0; }
.bio-stats b { font-family: var(--disp); font-weight: 700; font-size: 2.2rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; line-height: 1; }
.bio-stats span { color: var(--ink-mute); font-size: .88rem; }
.bio-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

/* =============================================================
   15. FAQ
   ============================================================= */
.faq-list { display: grid; gap: .8rem; max-width: 820px; }
.faq-item { border: 1px solid var(--card-line); border-radius: 16px; background: var(--card); overflow: hidden; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.3rem 1.5rem; text-align: left; font-family: var(--disp); font-weight: 600; font-size: 1.08rem; }
.faq-q i { flex: 0 0 auto; width: 22px; height: 22px; position: relative; transition: transform .4s var(--ease-out); }
.faq-q i::before, .faq-q i::after { content:""; position:absolute; inset:0; margin:auto; background: var(--violet-2); border-radius: 2px; }
.faq-q i::before { width: 14px; height: 2px; }
.faq-q i::after { width: 2px; height: 14px; transition: transform .4s var(--ease-out); }
.faq-item.is-open .faq-q i::after { transform: rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease-out); }
.faq-a p { padding: 0 1.5rem 1.4rem; color: var(--ink-soft); }

/* =============================================================
   16. CTA final
   ============================================================= */
.cta-final { display: grid; place-items: center; }
.cta-card { position: relative; text-align: center; max-width: 720px; width: 100%; padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem,5vw,3.5rem); border-radius: 32px; background: var(--bg-2); border: 1px solid var(--card-line); overflow: hidden; }
.cta-card-glow { position: absolute; inset: -40% -10% auto -10%; height: 80%; background: radial-gradient(50% 60% at 50% 0%, rgba(124,92,255,.4), transparent 70%); }
.cta-card .kicker { justify-content: center; }
.cta-card h2 { font-size: clamp(2rem, 6vw, 3.4rem); margin-bottom: 1.1rem; position: relative; }
.cta-card > p { color: var(--ink-soft); max-width: 50ch; margin: 0 auto 2rem; position: relative; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; position: relative; }
.cta-meta { margin-top: 1.7rem; font-family: var(--mono); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); position: relative; }

/* =============================================================
   17. Footer
   ============================================================= */
.footer { max-width: var(--maxw); margin-inline: auto; padding: 3rem var(--pad) 3.5rem; display: grid; gap: .9rem; border-top: 1px solid var(--line); text-align: center; justify-items: center; }
.footer-brand { display: flex; align-items: center; gap: .5rem; font-family: var(--disp); font-weight: 700; font-size: 1.2rem; letter-spacing: -.03em; }
.footer-tag { color: var(--ink-soft); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.4rem; justify-content: center; margin-top: .4rem; }
.footer-links a { color: var(--ink-mute); font-size: .92rem; transition: color .3s; }
.footer-links a:hover { color: var(--ink); }
.footer-legal { color: var(--ink-mute); font-size: .82rem; margin-top: .6rem; }

/* =============================================================
   18. Form dialog (cuestionario)
   ============================================================= */
.form-dialog { width: min(620px, 94vw); max-height: 92vh; margin: auto; inset: 0; padding: 0; border: 1px solid var(--card-line); border-radius: 26px; background: var(--bg-2); color: var(--ink); overflow: hidden; }
.form-dialog::backdrop { background: rgba(4,4,9,.72); backdrop-filter: blur(6px); }
.form-dialog[open] { animation: dlgIn .45s var(--ease-out); }
@keyframes dlgIn { from { opacity: 0; transform: translateY(18px) scale(.98); } }
.lead-form { position: relative; padding: clamp(1.6rem, 4vw, 2.6rem); max-height: 92vh; overflow-y: auto; }
.form-close { position: absolute; top: 1.1rem; right: 1.2rem; z-index: 5; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid var(--card-line); font-size: .9rem; transition: background .3s; }
.form-close:hover { background: rgba(255,255,255,.14); }
.form-header h3 { font-size: clamp(1.6rem, 4.5vw, 2.2rem); margin: .2rem 0 .5rem; }
.form-intro { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.5rem; }
.form-steps { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.8rem; }
.form-step-pill { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--ink-mute); font-weight: 500; transition: color .35s; }
.form-step-pill b { font-family: var(--mono); display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; border: 1px solid var(--card-line); font-size: .75rem; transition: all .35s; }
.form-step-pill.is-active { color: var(--ink); }
.form-step-pill.is-active b { background: var(--grad); color: #0a0a14; border-color: transparent; }
.form-step-line { flex: 1; height: 1px; background: var(--card-line); position: relative; }
.form-step-line i { position: absolute; inset: 0 100% 0 0; background: var(--grad); transition: inset .5s var(--ease-out); }
.lead-form.at-step-2 .form-step-line i { inset: 0 0 0 0; }

.form-step { display: none; animation: stepIn .4s var(--ease-out); }
.form-step.is-active { display: grid; gap: 1.1rem; }
@keyframes stepIn { from { opacity: 0; transform: translateX(14px); } }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: .45rem; }
.field > span, .field-label { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }
.field > span i, .field-label i { text-transform: none; letter-spacing: 0; font-style: normal; color: var(--ink-mute); opacity: .7; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: 12px; color: var(--ink);
  background: rgba(255,255,255,.04); border: 1px solid var(--card-line); font-family: var(--sans); font-size: 1rem;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: rgba(124,92,255,.6); background: rgba(255,255,255,.06); box-shadow: 0 0 0 3px rgba(124,92,255,.15); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239d7bff' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; background-size: 16px; }
.field select option { background: var(--bg-2); color: var(--ink); }
.field input:user-invalid, .field textarea:user-invalid { border-color: rgba(255,90,90,.6); }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.choice-wide { grid-column: 1 / -1; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice-box { display: grid; gap: .2rem; padding: 1rem; border-radius: 14px; border: 1px solid var(--card-line); background: rgba(255,255,255,.03); cursor: pointer; transition: all .3s; height: 100%; }
.choice-box b { font-family: var(--disp); font-size: 1.05rem; }
.choice-box small { color: var(--ink-mute); font-size: .82rem; }
.choice input:checked + .choice-box { border-color: rgba(124,92,255,.7); background: var(--grad-soft); box-shadow: 0 0 0 3px rgba(124,92,255,.15); }

.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: .6rem; }
.form-nav .btn { min-width: 130px; justify-content: center; }

.form-success { display: none; text-align: center; padding: 1.5rem 0; }
.form-success.is-active { display: block; animation: stepIn .5s var(--ease-out); }
.success-check { width: 84px; height: 84px; margin: 0 auto 1.4rem; }
.success-check svg { width: 100%; height: 100%; }
.success-check circle { stroke: rgba(124,92,255,.4); stroke-width: 2; }
.success-check path { stroke: var(--violet-2); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 48; stroke-dashoffset: 48; animation: draw .6s .2s var(--ease-out) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.form-success h3 { font-size: 1.8rem; margin-bottom: .6rem; }
.form-success p { color: var(--ink-soft); max-width: 40ch; margin: 0 auto 1.6rem; }

/* =============================================================
   19. Reveal animations
   ============================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; } /* defensivo */
.split-word { display: inline-block; opacity: 0; transform: translateY(40%); }
.is-ready .split-word { transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.split-word.is-in { opacity: 1; transform: none; }

/* =============================================================
   20. Responsive
   ============================================================= */
@media (max-width: 1023px) {
  .testi-grid { columns: 2; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-figure { max-width: 340px; margin-inline: auto; margin-top: 2.6rem; order: -1; aspect-ratio: 4/5; }
  /* Badge "Disponible" centrado arriba (debajo del nombre de marca), sin tapar la cara */
  .hero-badge-1 { top: -2.4rem; left: 50%; right: auto; transform: translateX(-50%); white-space: nowrap; }
  .hero-badge-2 { right: 0; }
  .packages { grid-template-columns: 1fr; }
  .addon-card { grid-template-columns: 1fr; }
  .bio-grid { grid-template-columns: 1fr; }
  .bio-photo { max-width: 380px; }
}
@media (max-width: 560px) {
  .testi-grid { columns: 1; }
  .process-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 1.3rem; }
  .cta-actions, .hero-actions { flex-direction: column; }
  .cta-actions .btn, .hero-actions .btn { width: 100%; justify-content: center; }
}

/* =============================================================
   21. Reduced motion — solo lo intrusivo
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track, .hero-ring::before, .splash-bar i, .splash-dot, .hero-scroll span { animation: none; }
  #bg-canvas { display: none; }
}
