/* ============================================================
   MORAC DISTRIBUTION — style.css  v3.5.1
   Dark Futuristic Neon Tech
   REGLA: CERO filter:blur  CERO backdrop-filter
   Brillo neon = box-shadow + text-shadow + CSS gradients
   ============================================================ */

/* ── VARIABLES ────────────────────────────────────────────── */
:root {
  --p:     #8B5CF6;
  --p2:    #A78BFA;
  --p3:    #7C3AED;
  --pink:  #EC4899;
  --cyan:  #22D3EE;
  --green: #10B981;

  --bg:    #030310;
  --bg1:   #07071A;
  --bg2:   #0D0D26;
  --bg3:   #111130;

  --glass:  rgba(255,255,255,0.03);
  --glass2: rgba(255,255,255,0.06);
  --b:      rgba(139,92,246,0.18);
  --b2:     rgba(139,92,246,0.4);

  --text:   #F1F5F9;
  --muted:  #8892A4;
  --faint:  #3D4A5C;

  --grad:      linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
  --grad-rev:  linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);

  /* Glow shadows — NI filter NI backdrop, solo box-shadow */
  --glow-p:   0 0 30px rgba(139,92,246,0.35);
  --glow-pk:  0 0 30px rgba(236,72,153,0.35);
  --glow-sm:  0 0 15px rgba(139,92,246,0.2);

  --font:  'Inter', system-ui, sans-serif;
  --fontd: 'Space Grotesk', 'Inter', sans-serif;

  --nav-h: 72px;
  --maxw:  1200px;
  --pad:   clamp(1rem, 5vw, 2rem);

  --r:    0.75rem;
  --r2:   1.25rem;
  --r3:   2rem;
  --pill: 9999px;

  --t:  220ms ease;
  --tf: 140ms ease;
}

/* ── RESET ────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { overflow-x: hidden; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body  {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul,ol  { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--fontd); font-weight: 700; line-height: 1.15; }
:focus-visible { outline: 2px solid var(--p2); outline-offset: 3px; border-radius: 4px; }
::selection { background: rgba(139,92,246,0.4); color: #fff; }

/* ── LAYOUT ───────────────────────────────────────────────── */
.wrap, .container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.sec    { padding: 6rem 0; }
.sec--sm{ padding: 3.5rem 0; }

/* ── TEXTO ────────────────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--p2);
  background: rgba(139,92,246,.1);
  border: 1px solid var(--b);
  border-radius: var(--pill);
  padding: .35rem .9rem;
  margin-bottom: 1rem;
}

.h2 {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  text-shadow: none; /* gradient text no puede tener text-shadow */
  margin-bottom: .9rem;
}

/* Versión con brillo de texto (para textos blancos no-gradient) */
.h2--glow {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 40px rgba(139,92,246,.5), 0 0 80px rgba(139,92,246,.2);
  margin-bottom: .9rem;
}

.sub {
  font-size: 1.05rem; color: var(--muted); line-height: 1.8;
}

.sec-head { text-align: center; max-width: 660px; margin: 0 auto 3.5rem; }

/* Línea separadora neón */
.neon-line {
  width: 60px; height: 2px;
  background: var(--grad);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(139,92,246,.8);
  margin: 1rem auto 0;
}

/* ── BOTONES ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--fontd); font-weight: 600; white-space: nowrap;
  border-radius: var(--pill); border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t);
  position: relative; overflow: hidden;
}

.btn--sm { font-size: .875rem; padding: .45rem 1.1rem; }
.btn--md { font-size: 1rem;    padding: .65rem 1.5rem; }
.btn--lg { font-size: 1.1rem;  padding: .9rem 2.2rem; }
.btn--xl { font-size: 1.2rem;  padding: 1rem 2.8rem; }

/* Neón primario */
.btn--neon {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 0 25px rgba(139,92,246,.45), 0 4px 20px rgba(0,0,0,.4);
}
.btn--neon:hover  { transform: translateY(-2px); box-shadow: 0 0 40px rgba(139,92,246,.65), 0 8px 30px rgba(0,0,0,.5); }
.btn--neon:active { transform: translateY(0); }

/* Contorno neón */
.btn--outline {
  background: transparent;
  color: var(--p2);
  border-color: var(--p);
  box-shadow: 0 0 12px rgba(139,92,246,.15);
}
.btn--outline:hover {
  background: rgba(139,92,246,.1);
  border-color: var(--p2);
  box-shadow: 0 0 25px rgba(139,92,246,.3);
  transform: translateY(-2px);
}

/* Ghost */
.btn--ghost {
  background: transparent; color: var(--muted); border-color: var(--b);
}
.btn--ghost:hover { color: var(--text); border-color: var(--b2); background: var(--glass); }

/* Blanco */
.btn--white {
  background: #fff; color: var(--p3); font-weight: 800;
  box-shadow: 0 0 30px rgba(255,255,255,.25), 0 4px 20px rgba(0,0,0,.3);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(255,255,255,.4), 0 8px 30px rgba(0,0,0,.4); }

/* ── NAVEGACIÓN ───────────────────────────────────────────── */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  height: var(--nav-h); z-index: 1000;
  transition: background var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(3,3,16,.95);
  border-color: var(--b);
  box-shadow: 0 1px 0 var(--b);
}

.nav {
  display: flex; align-items: center; gap: 2rem; height: 100%;
}

.nav__logo {
  display: flex; align-items: center; gap: .7rem; flex-shrink: 0;
}
.nav__logo-text { font-family: var(--fontd); font-size: 1.1rem; font-weight: 400; }
.nav__logo-text strong { font-weight: 800; }

.nav__links {
  display: flex; align-items: center; gap: .2rem; margin-left: auto;
}
.nav__link {
  font-size: .875rem; font-weight: 500; color: var(--muted);
  padding: .4rem .9rem; border-radius: var(--pill);
  transition: color var(--tf), background var(--tf);
}
.nav__link:hover,
.nav__link.is-active { color: var(--text); background: var(--glass); }

.nav__actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }

/* Lang switcher */
.lang-switcher { position: relative; }
.lang-switcher__btn {
  display: flex; align-items: center; gap: .4rem;
  font-size: .875rem; font-weight: 500; color: var(--muted);
  padding: .4rem .8rem; border-radius: var(--pill);
  border: 1px solid var(--b); background: var(--glass);
  transition: color var(--tf), border-color var(--tf);
}
.lang-switcher__btn:hover { color: var(--text); border-color: var(--b2); }
.lang-switcher__arrow { transition: transform var(--tf); }
.lang-switcher.is-open .lang-switcher__arrow { transform: rotate(180deg); }

.lang-switcher__dropdown {
  display: none; position: absolute; top: calc(100% + .5rem); right: 0;
  min-width: 148px;
  background: var(--bg2); border: 1px solid var(--b);
  border-radius: var(--r); overflow: hidden; z-index: 200;
  box-shadow: 0 8px 30px rgba(0,0,0,.5), var(--glow-sm);
}
.lang-switcher.is-open .lang-switcher__dropdown { display: block; }
.lang-switcher__option {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1rem; font-size: .875rem; color: var(--muted);
  transition: background var(--tf), color var(--tf);
}
.lang-switcher__option:hover { background: var(--glass2); color: var(--text); }

/* Hamburger */
.nav__hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 40px; height: 40px; border-radius: var(--r);
  border: 1px solid var(--b); background: var(--glass); margin-left: auto;
}
.nav__hamburger-bar {
  display: block; width: 20px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all var(--tf);
}
.nav__hamburger.is-open .nav__hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open .nav__hamburger-bar:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open .nav__hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile-only items — ocultos en desktop */
.nav__mobile-cta { display: none; }

/* ── HERO ─────────────────────────────────────────────────── */
/* Fondo = rejilla CSS + gradiente radial — CERO filter */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 50% at 50% -5%, rgba(139,92,246,.22) 0%, transparent 60%),
    linear-gradient(rgba(139,92,246,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,.04) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 55px 55px, 55px 55px;
}

/* Borde inferior que se desvanece */
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, var(--bg1) 0%, transparent 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative; z-index: 1;
  text-align: center;
  padding: 4rem 0 5rem;
  max-width: 860px; margin: 0 auto;
}

/* Badge animado */
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--p2);
  background: rgba(139,92,246,.1);
  border: 1px solid var(--b);
  border-radius: var(--pill); padding: .4rem 1.1rem;
  margin-bottom: 1.8rem;
  box-shadow: var(--glow-sm);
}
.hero__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--p2); flex-shrink: 0;
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .3; }
}

/* Título principal */
.hero__h1 {
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -.04em;
  margin-bottom: 1.5rem;
}
.hero__h1 .line1 {
  display: block;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__h1 .line2 {
  display: block; color: #fff;
  text-shadow: 0 0 60px rgba(139,92,246,.4);
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--muted); line-height: 1.8; max-width: 600px; margin: 0 auto 2.5rem;
}

.hero__cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1rem; margin-bottom: 3.5rem;
}

/* Stats inline bajo el hero */
.hero__stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0;
  border: 1px solid var(--b);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--glow-sm);
}
.hero__stat {
  padding: 1.25rem .75rem;
  text-align: center;
  border-right: 1px solid var(--b);
  background: var(--glass);
}
.hero__stat:last-child { border-right: none; }
.hero__stat-num {
  font-family: var(--fontd); font-size: clamp(1.4rem,3vw,2rem); font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: .25rem;
}
.hero__stat-lbl { font-size: .75rem; font-weight: 500; color: var(--muted); }

/* ── CÓMO FUNCIONA ────────────────────────────────────────── */
.process { background: var(--bg1); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
}

/* Línea conectora */
.process__steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(12.5% + .5rem);
  right: calc(12.5% + .5rem);
  height: 1px;
  background: linear-gradient(90deg, var(--p) 0%, var(--pink) 100%);
  box-shadow: 0 0 8px rgba(139,92,246,.6);
  z-index: 0;
}

.process__step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}
.process__num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bg1);
  border: 2px solid var(--p);
  box-shadow: var(--glow-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fontd); font-size: 1rem; font-weight: 800;
  color: var(--p2);
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.process__icon {
  width: 48px; height: 48px;
  background: rgba(139,92,246,.12);
  border: 1px solid var(--b);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--p2);
  margin-bottom: 1rem;
}
.process__title { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--text); }
.process__body  { font-size: .875rem; color: var(--muted); line-height: 1.7; }

.process__cta { text-align: center; margin-top: 3rem; }

/* ── PLATAFORMAS ──────────────────────────────────────────── */
.platforms { background: var(--bg); }

/* Ticker */
.ticker-outer { overflow: hidden; margin-bottom: 3rem; }
.ticker-track {
  display: flex; gap: .75rem; width: max-content;
  will-change: transform;
  animation: ticker 45s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-pill {
  display: inline-flex; align-items: center;
  font-size: .75rem; font-weight: 600;
  color: var(--muted); background: var(--glass);
  border: 1px solid var(--b);
  border-radius: var(--pill); padding: .35rem 1rem; white-space: nowrap;
}

/* Grid de plataformas */
.platforms__grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: .75rem;
}
.p-card {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  background: var(--glass);
  border: 1px solid var(--b);
  border-radius: var(--r2); padding: 1.5rem .75rem;
  text-align: center;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  cursor: default;
}
.p-card:hover {
  transform: translateY(-4px);
  border-color: var(--pc, var(--b2));
  box-shadow: 0 0 20px color-mix(in srgb, var(--pc, #8B5CF6) 40%, transparent);
}
.p-card__logo { line-height: 0; }
.p-card__dot  { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; }
.p-card__name { font-size: .72rem; font-weight: 600; color: var(--muted); }

.platforms__note {
  text-align: center; margin-top: 2.5rem;
  font-size: .9rem; color: var(--faint);
  border-top: 1px solid var(--b); padding-top: 1.5rem;
}

/* ── CARACTERÍSTICAS / BENTO GRID ─────────────────────────── */
.features { background: var(--bg1); }

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  gap: .85rem;
}

/* Tarjeta base */
.b-card {
  background: var(--glass);
  border: 1px solid var(--b);
  border-radius: var(--r2);
  padding: 1.75rem;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  overflow: hidden;
  position: relative;
}
.b-card:hover {
  border-color: var(--b2);
  box-shadow: 0 0 30px rgba(139,92,246,.12), 0 8px 40px rgba(0,0,0,.4);
  transform: translateY(-3px);
}

/* Posiciones en el bento */
.b-card--1 { grid-column: 1 / 4; grid-row: 1; }  /* Gratis — grande */
.b-card--2 { grid-column: 4 / 7; grid-row: 1; }  /* Regalías — grande */
.b-card--3 { grid-column: 1 / 3; grid-row: 2; }  /* Ilimitado */
.b-card--4 { grid-column: 3 / 5; grid-row: 2; }  /* Velocidad */
.b-card--5 { grid-column: 5 / 7; grid-row: 2; }  /* Control */
.b-card--6 { grid-column: 1 / 4; grid-row: 3; }  /* Reportes */
.b-card--7 { grid-column: 4 / 7; grid-row: 3; }  /* Premium */

.b-card__tag { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--p2); margin-bottom: .6rem; }
.b-card__icon { color: var(--p2); margin-bottom: .75rem; }

/* Tarjeta grande — número enorme */
.b-card__big-num {
  font-family: var(--fontd); font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900; line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: .4rem;
}
.b-card__big-lbl { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* Tarjeta pequeña */
.b-card__title { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.b-card__body  { font-size: .875rem; color: var(--muted); line-height: 1.7; }

/* Decoración de esquina */
.b-card::before {
  content: '';
  position: absolute; top: -1px; right: -1px;
  width: 60px; height: 60px;
  background: linear-gradient(225deg, rgba(139,92,246,.15) 0%, transparent 70%);
  border-radius: 0 var(--r2) 0 0;
  pointer-events: none;
}

/* ── TESTIMONIOS ──────────────────────────────────────────── */
.testimonials { background: var(--bg); }

.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem;
}

.testi-card {
  background: var(--glass);
  border: 1px solid var(--b);
  border-radius: var(--r2); padding: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: var(--b2);
  box-shadow: var(--glow-sm), 0 8px 40px rgba(0,0,0,.4);
}

.testi-stars { display: flex; gap: .2rem; }
.testi-star  { color: #F59E0B; font-size: 1rem; text-shadow: 0 0 8px rgba(245,158,11,.6); }

.testi-quote {
  font-size: .95rem; color: var(--text); line-height: 1.8;
  flex: 1;
  position: relative; padding-left: 1rem;
}
.testi-quote::before {
  content: '"';
  position: absolute; left: 0; top: -.3rem;
  font-size: 2.5rem; font-family: var(--fontd); line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.testi-author { display: flex; align-items: center; gap: .85rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fontd); font-size: .9rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
  box-shadow: var(--glow-sm);
}
.testi-name { font-size: .9rem; font-weight: 700; }
.testi-role { font-size: .78rem; color: var(--muted); }

/* ── CLIENT WALL ─────────────────────────────────────────── */
.clients-wall { background: var(--bg1); }
.wall {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: baseline; gap: .5rem 1.4rem;
  margin: 3rem auto 0; max-width: 880px;
}
.wall__name {
  font-family: var(--fontd); font-weight: 700;
  letter-spacing: .01em; color: var(--text);
  white-space: nowrap; transition: color var(--tf), opacity var(--tf);
  cursor: default; line-height: 1.2;
}
.wall__name:hover { color: var(--p2); opacity: 1 !important; }
.wall__name--xl { font-size: clamp(2.4rem, 5.5vw, 4rem);   opacity: 1; }
.wall__name--lg { font-size: clamp(1.5rem, 3.2vw, 2.4rem); opacity: .82; }
.wall__name--md { font-size: clamp(1.05rem, 2.2vw, 1.6rem); opacity: .65; }
.wall__name--sm { font-size: clamp(.85rem, 1.6vw, 1.1rem);  opacity: .5; }
.wall__name--xs { font-size: clamp(.72rem, 1.1vw, .9rem);   opacity: .38; color: var(--muted); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { background: var(--bg1); }

.faq__list {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: .75rem;
}

.faq__item {
  background: var(--glass);
  border: 1px solid var(--b);
  border-radius: var(--r2);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq__item[open] {
  border-color: var(--b2);
  box-shadow: var(--glow-sm);
}

.faq__q {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-weight: 600; font-size: 1rem; cursor: pointer;
  transition: color var(--tf);
}
.faq__q:hover { color: var(--p2); }
.faq__q::-webkit-details-marker { display: none; }

.faq__icon { flex-shrink: 0; transition: transform var(--tf); color: var(--p2); }
.faq__item[open] .faq__icon { transform: rotate(180deg); }

.faq__a { padding: 0 1.5rem 1.25rem; color: var(--muted); font-size: .95rem; line-height: 1.8; }

/* ── CONTACTO ─────────────────────────────────────────────── */
.contact { background: var(--bg); }

.contact__grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start;
}

.contact__info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: .75rem; }
.contact__info p  { color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; }

.contact__links { display: flex; flex-direction: column; gap: .75rem; }
.contact__link  {
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 1.1rem;
  background: var(--glass); border: 1px solid var(--b); border-radius: var(--r);
  font-size: .875rem; color: var(--muted);
  transition: border-color var(--tf), color var(--tf);
}
.contact__link:hover { border-color: var(--b2); color: var(--text); }
.contact__link-icon { color: var(--p2); flex-shrink: 0; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-label { font-size: .8rem; font-weight: 600; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

.form-input,
.form-textarea,
.form-select {
  background: var(--glass); border: 1px solid var(--b);
  border-radius: var(--r); padding: .8rem 1rem;
  color: var(--text); font: inherit; font-size: .95rem; width: 100%;
  transition: border-color var(--tf), box-shadow var(--tf);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--p);
  box-shadow: 0 0 0 3px rgba(139,92,246,.15);
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--faint); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select option { background: var(--bg2); color: var(--text); }

/* ── CTA FINAL ────────────────────────────────────────────── */
.cta-final {
  padding: 6rem 0;
  border-top: 1px solid var(--b);
  /* SOLO gradiente CSS + rejilla — cero filter */
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(139,92,246,.18) 0%, transparent 65%),
    linear-gradient(rgba(139,92,246,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236,72,153,.03) 1px, transparent 1px),
    var(--bg1);
  background-size: auto, 55px 55px, 55px 55px;
  text-align: center;
}
.cta-final__title {
  font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 900;
  color: #fff; margin-bottom: 1.25rem;
  text-shadow: 0 0 60px rgba(139,92,246,.5);
}
.cta-final__title span {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-final__sub  { font-size: 1.1rem; color: var(--muted); line-height: 1.8; max-width: 580px; margin: 0 auto 2.5rem; }
.cta-final__note { margin-top: 1.25rem; font-size: .85rem; color: var(--faint); }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--b);
  padding: 4rem 0 2rem;
}
.footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem;
}
.footer__logo {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--fontd); font-size: 1rem; margin-bottom: .75rem;
}
.footer__logo strong { font-weight: 800; }
.footer__tagline { font-size: .875rem; color: var(--muted); line-height: 1.7; max-width: 280px; margin-bottom: 1.25rem; }
.footer__social  { display: flex; gap: .7rem; }
.footer__social-link {
  width: 36px; height: 36px; border-radius: var(--r);
  background: var(--glass); border: 1px solid var(--b);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: color var(--tf), border-color var(--tf), box-shadow var(--tf);
}
.footer__social-link:hover { color: var(--text); border-color: var(--b2); box-shadow: var(--glow-sm); }
.footer__col-title { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.footer__links { display: flex; flex-direction: column; gap: .6rem; }
.footer__links a { font-size: .875rem; color: var(--faint); transition: color var(--tf); }
.footer__links a:hover { color: var(--text); }
.footer__langs { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.25rem; }
.footer__lang-btn {
  font-size: .78rem; font-weight: 500; padding: .3rem .65rem;
  border-radius: var(--pill); border: 1px solid var(--b); color: var(--faint);
  transition: color var(--tf), border-color var(--tf);
}
.footer__lang-btn:hover,
.footer__lang-btn.is-active { color: var(--text); border-color: var(--b2); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  padding-top: 1.5rem; border-top: 1px solid var(--b);
  font-size: .85rem; color: var(--faint);
}

/* ── REVEAL ───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ── PÁGINAS INTERIORES ───────────────────────────────────── */
.hero--inner {
  min-height: 40svh;
  padding-bottom: 3rem;
}

/* ── PRICING ──────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 820px; margin: 0 auto; }
.p-plan { background: var(--glass); border: 1px solid var(--b); border-radius: var(--r3); padding: 2.25rem; position: relative; transition: box-shadow var(--t); }
.p-plan--feat { border-color: var(--p); box-shadow: var(--glow-sm); }
.p-plan__badge { position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%); font-size: .72rem; font-weight: 800; background: var(--grad); color: #fff; border-radius: var(--pill); padding: .28rem .9rem; white-space: nowrap; }
.p-plan__name   { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: .65rem; }
.p-plan__price  { font-family: var(--fontd); font-size: 3rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.p-plan__period { font-size: .85rem; color: var(--faint); margin-bottom: .9rem; }
.p-plan__desc   { font-size: .9rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.5rem; }
.p-plan__feats  { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.p-plan__feat   { display: flex; align-items: center; gap: .55rem; font-size: .875rem; color: var(--muted); }
.p-plan__check  { width: 18px; height: 18px; border-radius: 50%; background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green); }

/* ── HOW-WORKS PAGE ───────────────────────────────────────── */
.hw-steps { display: flex; flex-direction: column; gap: 4rem; }
.hw-step  { display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: start; }
.hw-step__num { width: 60px; height: 60px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-family: var(--fontd); font-size: 1.3rem; font-weight: 900; color: #fff; flex-shrink: 0; box-shadow: var(--glow-sm); }
.hw-step__content h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: .6rem; }
.hw-step__content p  { color: var(--muted); line-height: 1.8; }

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.value-card  { background: var(--glass); border: 1px solid var(--b); border-radius: var(--r2); padding: 2rem; }
.value-card__title { font-size: 1.1rem; font-weight: 700; margin-bottom: .7rem; color: var(--p2); }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
/* ya definido arriba en .contact */

/* ── 404 ──────────────────────────────────────────────────── */
.e404 { text-align: center; padding: 6rem 0; }
.e404__code { font-family: var(--fontd); font-size: clamp(5rem,20vw,10rem); font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-shadow: none; }
.e404__title { font-size: 1.5rem; font-weight: 700; margin: 1rem 0 .5rem; }
.e404__sub   { color: var(--muted); margin-bottom: 2rem; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .b-card--1,.b-card--2,.b-card--6,.b-card--7 { grid-column: span 2; }
  .b-card--3,.b-card--4,.b-card--5 { grid-column: span 1; }
  .platforms__grid { grid-template-columns: repeat(4,1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .sec { padding: 3.5rem 0; }

  /* Nav móvil */
  .nav__links {
    display: none; position: fixed; inset: var(--nav-h) 0 0 0;
    flex-direction: column; justify-content: flex-start;
    background: rgba(3,3,16,.98);
    padding: 2rem 1.5rem; gap: .5rem; z-index: 999; overflow-y: auto;
  }
  .nav__links.is-open { display: flex; }
  .nav__link { font-size: 1.1rem; padding: .75rem 1rem; width: 100%; }
  .nav__actions { display: none; }
  .nav__hamburger { display: flex; }

  /* Botones CTA en menú móvil */
  .nav__mobile-cta { display: flex; width: 100%; margin-top: .25rem; }
  .nav__mobile-cta .btn { width: 100%; justify-content: center; }

  /* Hero */
  .hero__h1 { font-size: clamp(2.2rem,10vw,3.5rem); }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__stats { grid-template-columns: repeat(2,1fr); }
  .hero__stat:nth-child(2) { border-right: none; }
  .hero__stat:nth-child(3) { border-right: 1px solid var(--b); border-top: 1px solid var(--b); }
  .hero__stat:nth-child(4) { border-right: none; border-top: 1px solid var(--b); }

  /* Proceso */
  .process__steps { grid-template-columns: 1fr; gap: 2rem; }
  .process__steps::before { display: none; }

  /* Plataformas */
  .platforms__grid { grid-template-columns: repeat(3,1fr); }

  /* Bento */
  .bento { grid-template-columns: 1fr; }
  .b-card--1,.b-card--2,.b-card--3,.b-card--4,.b-card--5,.b-card--6,.b-card--7 { grid-column: 1 !important; grid-row: auto !important; }

  /* Muro de artistas */
  .wall { gap: .3rem .8rem; }

  /* Formulario */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .hw-step { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .platforms__grid { grid-template-columns: repeat(2,1fr); }
}

/* ── INNER PAGE HERO ──────────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 3.5rem);
  padding-bottom: 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(139,92,246,.18) 0%, transparent 60%),
    linear-gradient(rgba(139,92,246,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,.04) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 55px 55px, 55px 55px;
  border-bottom: 1px solid var(--b);
}
.page-hero__h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 1rem;
}
.page-hero__sub {
  font-size: 1.1rem; color: var(--muted); max-width: 600px;
  margin: 0 auto; line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb { margin-bottom: 1.5rem; }
.breadcrumb ol {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  flex-wrap: wrap; list-style: none;
  font-size: .8rem; color: var(--muted);
}
.breadcrumb ol li + li::before { content: '/'; opacity: .4; margin-right: .5rem; }
.breadcrumb ol a { color: var(--p2); transition: color var(--tf); }
.breadcrumb ol a:hover { color: var(--text); }
.breadcrumb ol li[aria-current] { color: var(--text); }

/* ── HOW-WORKS STEPS (página interior) ────────────────────── */
.hw-steps-v { display: flex; flex-direction: column; gap: 2rem; }

.hw-step-v {
  display: grid; grid-template-columns: 72px 1fr; gap: 2rem; align-items: start;
  background: var(--glass);
  border: 1px solid var(--b);
  border-radius: var(--r2); padding: 2rem;
  transition: border-color var(--t), box-shadow var(--t);
}
.hw-step-v:hover { border-color: var(--b2); box-shadow: var(--glow-sm); }

.hw-step-v__num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fontd); font-size: 1.25rem; font-weight: 900;
  color: #fff; flex-shrink: 0;
  box-shadow: var(--glow-sm);
}
.hw-step-v__icon {
  width: 38px; height: 38px; border-radius: var(--r);
  background: rgba(139,92,246,.12); border: 1px solid var(--b);
  display: flex; align-items: center; justify-content: center;
  color: var(--p2); margin-bottom: .75rem;
}
.hw-step-v__title  { font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; }
.hw-step-v__body   { color: var(--muted); font-size: .95rem; line-height: 1.8; margin-bottom: .75rem; }
.hw-step-v__detail {
  font-size: .85rem; color: var(--faint); line-height: 1.75;
  border-left: 2px solid var(--b); padding-left: .85rem;
}

/* Chips de requisitos técnicos */
.hw-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.hw-chip  {
  font-size: .72rem; font-weight: 600;
  background: rgba(139,92,246,.1); border: 1px solid var(--b);
  border-radius: var(--pill); padding: .25rem .7rem;
  color: var(--p2);
}

@media (max-width: 600px) {
  .hw-step-v { grid-template-columns: 1fr; gap: 1rem; }
}

/* ── PRICING ──────────────────────────────────────────────── */
/* (estilos de .pricing-grid y .p-plan ya en el CSS) */
.pricing-header { text-align: center; margin-bottom: 3.5rem; }
.pricing-header .h2 { margin-bottom: .75rem; }

.p-plan__feats li { display: flex; align-items: center; gap: .55rem; font-size: .9rem; color: var(--muted); margin-bottom: .55rem; }
.p-plan__check { width: 18px; height: 18px; min-width: 18px; border-radius: 50%; background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.3); display: flex; align-items: center; justify-content: center; color: var(--green); }

.pricing-guarantee {
  display: flex; align-items: center; gap: 1.25rem;
  background: var(--glass); border: 1px solid var(--b);
  border-radius: var(--r2); padding: 1.5rem 2rem;
  max-width: 820px; margin: 2.5rem auto 0;
}
.pricing-guarantee__icon { font-size: 2rem; flex-shrink: 0; }
.pricing-guarantee strong { display: block; font-size: 1rem; margin-bottom: .25rem; }
.pricing-guarantee p { font-size: .9rem; color: var(--muted); margin: 0; }

.pricing-faq-head { text-align: center; margin: 4rem 0 2rem; }
.pricing-faq-head .h2 { font-size: clamp(1.5rem,3vw,2.2rem); }

/* ── ABOUT ────────────────────────────────────────────────── */
.about-body-text {
  font-size: 1.05rem; color: var(--muted); line-height: 1.9; margin-bottom: 1.25rem;
}
.about-body-text:first-child { font-size: 1.15rem; color: var(--text); }

.about-values { display: flex; flex-direction: column; gap: 1rem; }

.value-card-v {
  background: var(--glass); border: 1px solid var(--b);
  border-radius: var(--r2); padding: 1.75rem;
  transition: border-color var(--t), box-shadow var(--t);
}
.value-card-v:hover { border-color: var(--b2); box-shadow: var(--glow-sm); }
.value-card-v__icon { font-size: 1.75rem; margin-bottom: .75rem; color: var(--p); }
.value-card-v__title { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--p2); }
.value-card-v__body  { font-size: .9rem; color: var(--muted); line-height: 1.75; }

.about-stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem;
  margin-top: 3.5rem; padding-top: 3.5rem;
  border-top: 1px solid var(--b);
}
.about-stat-card {
  text-align: center; padding: 1.5rem 1rem;
  background: var(--glass); border: 1px solid var(--b);
  border-radius: var(--r2);
}
.about-stat-num {
  font-family: var(--fontd); font-size: clamp(1.8rem,3.5vw,2.5rem); font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: .4rem;
}
.about-stat-lbl { font-size: .8rem; font-weight: 500; color: var(--muted); }

.about-cta { text-align: center; margin-top: 3rem; }

@media (max-width: 768px) {
  .about-stats-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── CONTACT ──────────────────────────────────────────────── */
/* (el grid y form ya están) */
.contact-info-list { display: flex; flex-direction: column; gap: .85rem; margin-top: 1.5rem; }

.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--glass); border: 1px solid var(--b);
  border-radius: var(--r2); padding: 1.1rem 1.25rem;
  transition: border-color var(--t);
}
.contact-info-item:hover { border-color: var(--b2); }
.contact-info-item__icon {
  width: 38px; height: 38px; min-width: 38px;
  border-radius: var(--r); background: rgba(139,92,246,.12);
  border: 1px solid var(--b);
  display: flex; align-items: center; justify-content: center;
  color: var(--p2);
}
.contact-info-item__label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .2rem; }
.contact-info-item__value { font-size: .9rem; color: var(--text); }
.contact-info-item__value a { color: var(--p2); transition: color var(--tf); }
.contact-info-item__value a:hover { color: var(--text); }

/* Mensaje de éxito */
.alert-success {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.3);
  border-radius: var(--r2); padding: 1.5rem 2rem;
  color: var(--green);
}
.alert-success__icon { font-size: 1.5rem; flex-shrink: 0; }
.alert-success__title { font-weight: 700; margin-bottom: .25rem; }
.alert-success__sub   { font-size: .9rem; opacity: .8; }

/* Error en campos */
.form-group.has-error .form-input,
.form-group.has-error .form-textarea { border-color: #EF4444; box-shadow: 0 0 0 3px rgba(239,68,68,.15); }
.form-error-msg { font-size: .78rem; color: #EF4444; margin-top: .25rem; }

/* Social links contacto */
.contact-socials { display: flex; gap: .6rem; margin-top: 1.5rem; flex-wrap: wrap; }
.contact-social-btn {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600;
  padding: .5rem .85rem; border-radius: var(--pill);
  background: var(--glass); border: 1px solid var(--b); color: var(--muted);
  transition: color var(--tf), border-color var(--tf), box-shadow var(--tf);
}
.contact-social-btn:hover { color: var(--text); border-color: var(--b2); box-shadow: var(--glow-sm); }

/* ── Distributor Plans ─────────────────────────────────────── */
.distrib-plans { margin-top: 3rem; }
.distrib-plans__header { text-align: center; margin-bottom: 2rem; }
.distrib-plans__header p { color: var(--muted); max-width: 480px; margin: .75rem auto 0; }
.distrib-plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.distrib-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--b);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: border-color var(--tf), box-shadow var(--tf);
}
.distrib-card:hover { border-color: var(--b2); box-shadow: var(--glow-sm); }
.distrib-card--feat {
  border-color: var(--p);
  box-shadow: 0 0 28px rgba(139,92,246,.2);
}
.distrib-card__badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .2rem .8rem; border-radius: var(--pill);
}
.distrib-card__songs {
  font-size: 3rem; font-weight: 900; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.distrib-card__label { font-size: .8rem; color: var(--muted); margin-bottom: 1rem; }
.distrib-card__feats { list-style: none; color: var(--muted); font-size: .9rem; margin-bottom: 1.25rem; }
.distrib-card__price {
  font-size: 2rem; font-weight: 800; color: var(--text); margin-bottom: 1.25rem;
}
.distrib-card__price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
@media (max-width: 768px) {
  .distrib-plans__grid { grid-template-columns: 1fr; }
}

/* ── White Label Page ──────────────────────────────────────── */

/* Nav highlight */
.nav__link--highlight {
  color: var(--p) !important;
  font-weight: 600;
}
.nav__link--highlight:hover,
.nav__link--highlight.is-active { color: var(--pk) !important; }

/* Features grid */
.wl-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.wl-feat {
  background: var(--glass);
  border: 1px solid var(--b);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  transition: border-color var(--tf), box-shadow var(--tf);
}
.wl-feat:hover { border-color: var(--b2); box-shadow: var(--glow-sm); }
.wl-feat__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(139,92,246,.12);
  color: var(--p);
  margin-bottom: 1rem;
}
.wl-feat h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.wl-feat p  { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* Tools section */
.wl-tools-sec { background: rgba(139,92,246,.04); }
.wl-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.wl-tool {
  background: var(--glass);
  border: 1px solid var(--b);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: border-color var(--tf), box-shadow var(--tf);
}
.wl-tool:hover { border-color: var(--b2); box-shadow: var(--glow-sm); }
.wl-tool--more { border-color: var(--p); box-shadow: 0 0 24px rgba(139,92,246,.15); }
.wl-tool__icon { margin-bottom: 1rem; }
.wl-tool h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.wl-tool p  { font-size: .88rem; color: var(--muted); line-height: 1.6; }
.wl-tool__badge {
  display: inline-block;
  margin-top: .85rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .2rem .7rem; border-radius: var(--pill);
  background: rgba(139,92,246,.15); color: var(--p);
}
.wl-tool__badge--grad {
  background: var(--grad); color: #fff;
}

/* Pricing note */
.wl-pricing-grid { margin: 2rem auto 0; }
.wl-pricing-note {
  text-align: center; margin-top: 1.5rem;
  font-size: .9rem; color: var(--muted);
}
.wl-pricing-note .link { color: var(--p); text-decoration: underline; }

/* Mobile */
@media (max-width: 900px) {
  .wl-features-grid { grid-template-columns: repeat(2, 1fr); }
  .wl-tools-grid    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .wl-features-grid { grid-template-columns: 1fr; }
  .wl-tools-grid    { grid-template-columns: 1fr; }
}


/* ── Legal pages ─────────────────────────────────────────── */
.legal-wrap { max-width: 760px; }
.legal-block { margin-bottom: 2.5rem; }
.legal-block h2 { font-size: 1.25rem; font-weight: 700; color: var(--p); margin-bottom: .75rem; }
.legal-block h3 { font-size: 1rem; font-weight: 600; color: var(--fg); margin: 1.25rem 0 .5rem; }
.legal-block p { color: var(--muted); line-height: 1.8; margin-bottom: .75rem; }
.legal-block ul { color: var(--muted); line-height: 1.8; padding-left: 1.5rem; }
.legal-block ul li { margin-bottom: .4rem; list-style: disc; }
.legal-block a { color: var(--p); text-decoration: underline; }

/* ============================================================
   FORMULARIO DEMO — MARCA BLANCA
   ============================================================ */
.wl-demo-form {
  max-width: 680px;
  margin: 0 auto;
  background: var(--clr-surface, #111);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1.25rem;
  padding: 2.5rem;
}
.wl-demo-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 600px) {
  .wl-demo-form__grid { grid-template-columns: 1fr; }
  .wl-demo-form { padding: 1.5rem; }
}
.wl-demo-form__field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.wl-demo-form__field--full {
  grid-column: 1 / -1;
}
.wl-demo-form__field label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--clr-text-muted, #aaa);
  letter-spacing: .02em;
}
.wl-demo-form__field label span {
  color: var(--clr-neon, #39FF14);
}
.wl-demo-form__field input,
.wl-demo-form__field select {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .6rem;
  padding: .75rem 1rem;
  color: var(--clr-text, #fff);
  font-size: .95rem;
  font-family: inherit;
  transition: border-color .2s;
  width: 100%;
}
.wl-demo-form__field input:focus,
.wl-demo-form__field select:focus {
  outline: none;
  border-color: var(--clr-neon, #39FF14);
}
.wl-demo-form__field select option {
  background: #1a1a1a;
  color: #fff;
}
.wl-demo-form__footer {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.wl-demo-form__privacy {
  font-size: .78rem;
  color: var(--clr-text-muted, #888);
  text-align: center;
}

/* Página de gracias */
.page-gracias .page-hero {
  padding-block: 5rem;
}

/* ═══════════════════════════════════════
   FORMULARIO DEMO — MARCA BLANCA
═══════════════════════════════════════ */
.wrap--narrow { max-width: 560px; margin: 0 auto; }

/* Fondo de la sección para que se funda con la página */
.wl-form-section { background: var(--bg); }

/* Tarjeta del formulario con efecto Glassmorphism */
.wl-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--glass);
  border: 1px solid var(--b);
  border-radius: var(--r2);
  padding: 2.5rem;
  margin-top: 2.5rem;
  box-shadow: var(--glow-sm);
}

.wl-form__group { display: flex; flex-direction: column; gap: .5rem; }

.wl-form__label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .5rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.wl-form__badge {
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--pill);
  background: rgba(16,185,129,.15);
  color: var(--green);
  text-transform: none;
  letter-spacing: 0;
}

.wl-form__hint {
  font-size: .75rem;
  color: var(--faint);
  margin-top: -.2rem;
}

/* Campos de texto y selectores oscuros */
.wl-form__input,
.wl-form__select {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--b);
  border-radius: var(--r);
  font-size: .95rem;
  color: var(--text);
  background: var(--glass);
  transition: border-color var(--tf), box-shadow var(--tf);
  outline: none;
  appearance: none;
  font-family: inherit;
}

/* Color de fondo para las opciones del selector */
.wl-form__select option {
  background: var(--bg2);
  color: var(--text);
}

.wl-form__input:focus,
.wl-form__select:focus {
  border-color: var(--p);
  box-shadow: 0 0 0 3px rgba(139,92,246,.15);
}

.wl-form__submit { width: 100%; justify-content: center; margin-top: .5rem; }

.wl-form__privacy {
  font-size: .8rem;
  color: var(--faint);
  text-align: center;
  margin: 0;
}

/* Mensaje de éxito */
.wl-form-success {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.3);
  border-radius: var(--r2);
  padding: 1.5rem;
  color: var(--green);
  margin-top: 1.5rem;
  font-weight: 600;
}

/* ═══════════════════════════════════════
   PÁGINA DE GRACIAS
═══════════════════════════════════════ */
.gracias-hero { padding: 6rem 0; text-align: center; background: var(--bg); min-height: 80vh; display: flex; align-items: center; }
.gracias-hero__wrap { max-width: 600px; margin: 0 auto; }
.gracias-hero__icon { color: var(--green); margin-bottom: 1.5rem; }
.gracias-hero__h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 1rem; color: var(--text); }
.gracias-hero__sub { font-size: 1.1rem; color: var(--muted); line-height: 1.7; margin-bottom: 3rem; }
.gracias-steps { display: flex; flex-direction: column; gap: 1.25rem; text-align: left; }
.gracias-step { display: flex; align-items: flex-start; gap: 1rem; background: var(--glass); border: 1px solid var(--b); border-radius: var(--r2); padding: 1.25rem; }
.gracias-step__num { width: 32px; height: 32px; border-radius: 50%; background: var(--p); color: #fff; font-size: .875rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gracias-step p { margin: 0; font-size: .95rem; color: var(--muted); line-height: 1.6; padding-top: 4px; }