/* ─────────────────────────────────────────────────────────────────────────────
   DisIsMusik — landing principal
   Design system: fondo #0A0A0F, acentos #1e90ff / #a78bfa, glass cards
──────────────────────────────────────────────────────────────────────────── */

:root {
  --bg:        #0A0A0F;
  --blue:      #1e90ff;
  --purple:    #a78bfa;
  --text:      rgba(255, 255, 255, 0.92);
  --text-dim:  rgba(255, 255, 255, 0.55);
  --text-faint:rgba(255, 255, 255, 0.35);
  --glass-bg:  rgba(255, 255, 255, 0.06);
  --glass-line:rgba(255, 255, 255, 0.1);
  --radius:    18px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --grad-btn:  linear-gradient(135deg, #1e90ff 0%, #7b5cff 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--bg);
  background-image: linear-gradient(135deg, #0a0a1a 0%, #0d0a2e 30%, #1a0a3a 60%, #0a1a2e 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── Accesibilidad: foco visible sólo con teclado ──────────────────────────── */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible {
  outline-offset: 4px;
}
/* Salta el estilo de foco en clics de ratón */
:focus:not(:focus-visible) { outline: none; }

/* Respeta la preferencia de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}
.container--narrow { width: min(820px, 92%); }

/* ── Barra de progreso de scroll ────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #1e90ff, #a78bfa);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 200;
  pointer-events: none;
}

/* ── Glass base ─────────────────────────────────────────────────────────── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius);
}

/* ── Ambient orbs ───────────────────────────────────────────────────────── */
.orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
/* El wrapper recibe el parallax de GSAP; el orbe interno conserva orbFloat */
.orb-wrap { position: absolute; }
.orb-wrap--purple { top: -120px; right: -100px; }
.orb-wrap--cyan   { bottom: -160px; left: -140px; }
.orb-wrap--pink   { top: 45%; left: 38%; }
.orb {
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.5;
}
.orb--purple {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(167,139,250,0.55), transparent 70%);
  animation: orbFloat 14s ease-in-out infinite;
}
.orb--cyan {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(30,144,255,0.45), transparent 70%);
  animation: orbFloat 18s ease-in-out infinite reverse;
}
.orb--pink {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(236,72,153,0.3), transparent 70%);
  animation: orbFloat 22s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, -30px) scale(1.08); }
}

main, .footer { position: relative; z-index: 1; }

/* ── Botones ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn--sm   { padding: 8px 18px;  font-size: 13.5px; }
.btn--lg   { padding: 15px 34px; font-size: 15.5px; }
.btn--full { width: 100%; padding: 14px 0; font-size: 15px; }
.btn:not(.btn--sm):not(.btn--lg):not(.btn--full) { padding: 11px 26px; font-size: 14px; }

.btn--primary {
  background: var(--grad-btn);
  color: #fff;
  border: none;
  box-shadow: 0 6px 24px rgba(30, 144, 255, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(30, 144, 255, 0.5);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(30, 144, 255, 0.6);
}
.btn--outline:hover {
  background: rgba(30, 144, 255, 0.12);
  border-color: var(--blue);
}
.btn--glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--text);
  border: 1px solid var(--glass-line);
}
.btn--glass:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* ── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10, 10, 20, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--glass-line);
  padding: 10px 0;
}
.navbar__inner {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar__logo img { height: 38px; width: auto; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.navbar__links > a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.15s ease;
}
.navbar__links > a:hover { color: #fff; }

.navbar__actions { display: flex; gap: 10px; align-items: center; }
.navbar__actions--mobile { display: none; }

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.navbar__burger span {
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.navbar.nav-open .navbar__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar.nav-open .navbar__burger span:nth-child(2) { opacity: 0; }
.navbar.nav-open .navbar__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 0 0;
  position: relative;
  overflow: hidden;
}
/* Grid overlay sutil */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}
/* Gradiente cónico rotatorio */
.hero__conic {
  position: absolute;
  inset: -35%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0%, rgba(30,144,255,0.10) 22%, transparent 46%,
    rgba(167,139,250,0.10) 68%, transparent 92%
  );
  filter: blur(40px);
  animation: conicSpin 26s linear infinite;
  pointer-events: none;
}
@keyframes conicSpin { to { transform: rotate(360deg); } }

/* Emojis musicales — la deriva la anima GSAP (yoyo) */
.hero__notes { position: absolute; inset: 0; pointer-events: none; }
.hero__notes span {
  position: absolute;
  left: var(--x);
  top: var(--t, 60%);
  font-size: 26px;
  opacity: 0.3;
}

.hero__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-line);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(42px, 7.5vw, 80px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  background: linear-gradient(135deg, #fff 0%, #a78bfa 50%, #1e90ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 22px;
}
.hero__subtitle {
  max-width: 640px;
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-dim);
  margin-bottom: 38px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Social proof bajo los CTAs */
.hero__proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__avatars { display: flex; }
.hero__avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #0d0a2e;
  margin-left: -11px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.hero__avatars span:first-child { margin-left: 0; }
.hero__avatars span:nth-child(1) { background: linear-gradient(135deg, #1e90ff, #4cc9f0); }
.hero__avatars span:nth-child(2) { background: linear-gradient(135deg, #a78bfa, #7b5cff); }
.hero__avatars span:nth-child(3) { background: linear-gradient(135deg, #ec4899, #f472b6); }
.hero__avatars span:nth-child(4) { background: linear-gradient(135deg, #34d399, #10b981); }
.hero__proof-text { font-size: 14px; color: var(--text-dim); }
.hero__proof-text strong { color: var(--text); font-weight: 700; }

/* CTA principal con glow pulsante */
.btn--pulse { animation: pulse-glow 2.6s ease-in-out infinite; }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 6px 24px rgba(30, 144, 255, 0.35); }
  50%      { box-shadow: 0 6px 42px rgba(30, 144, 255, 0.75), 0 0 70px rgba(123, 92, 255, 0.35); }
}

/* Ecualizador animado bajo los CTAs */
.hero__eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 46px;
  width: min(620px, 80%);
  margin: 56px auto 0;
  opacity: 0.6;
}
.hero__eq i {
  flex: 1;
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(180deg, #a78bfa 0%, #1e90ff 100%);
  transform: scaleY(0.15);
  transform-origin: bottom;
  animation: eqBounce var(--s, 1s) ease-in-out var(--d, 0s) infinite alternate;
}
@keyframes eqBounce {
  from { transform: scaleY(0.12); }
  to   { transform: scaleY(1); }
}

/* Ticker de plataformas */
.ticker {
  margin-top: 70px;
  padding: 22px 0;
  border-top: 1px solid var(--glass-line);
  border-bottom: 1px solid var(--glass-line);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.ticker__track {
  display: flex;
  width: max-content;
  /* el desplazamiento infinito lo maneja GSAP */
}
.ticker__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ticker__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0 30px;
}
.ticker__item img,
.ticker__item svg {
  height: 32px;
  width: 32px;
  opacity: 0.75;
}
/* Logo de Amazon Music (gradiente de marca) forzado a blanco */
.ticker__amazon {
  filter: brightness(0) invert(1);
  width: 44px !important;
}
.ticker__item span {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  white-space: nowrap;
}

/* ── Secciones genéricas ────────────────────────────────────────────────── */
section { padding: 90px 0; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 34px;
}
.section-title--center { text-align: center; margin-bottom: 50px; }

/* ── Stats ──────────────────────────────────────────────────────────────── */
.stats { padding: 30px 0 90px; }
.stats__panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 46px 30px;
  text-align: center;
}
.stat { position: relative; }
/* Glow radial sutil detrás del número */
.stat::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 110px;
  background: radial-gradient(circle, rgba(30, 144, 255, 0.22), transparent 70%);
  filter: blur(14px);
  pointer-events: none;
}
.stat__icon {
  display: block;
  font-size: 24px;
  margin-bottom: 8px;
  position: relative;
}
.stat__number {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(36px, 4.6vw, 54px);
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #1e90ff 0%, #7bb8ff 60%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: relative;
}
.stat__label {
  display: block;
  margin-top: 6px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.stat__bar {
  display: block;
  width: 64%;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.stat__bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 2px;
  background: var(--grad-btn);
  transition: width 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.stats__panel.counted .stat__bar i { width: 100%; }

/* ── About / Misión ─────────────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: start;
}
.about__quote {
  padding: 26px 30px;
  font-style: italic;
  font-size: 16px;
  color: var(--text-dim);
  border-left: 3px solid var(--purple);
  margin-bottom: 36px;
}
.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feature {
  padding: 24px 22px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.feature:hover { transform: translateY(-4px); border-color: rgba(30,144,255,0.4); }
.feature__icon { font-size: 26px; display: block; margin-bottom: 12px; }
.feature h3 {
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
}
.feature p { font-size: 13px; color: var(--text-dim); line-height: 1.55; }

/* Mockup dashboard */
.about__right { position: sticky; top: 110px; }
.mockup {
  padding: 0;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.mockup__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--glass-line);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--r { background: #ff5f57; } .dot--y { background: #febc2e; } .dot--g { background: #28c840; }
.mockup__bar-title {
  margin-left: 10px;
  font-size: 11.5px;
  color: var(--text-faint);
  font-family: monospace;
}
.mockup__chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 18px 18px 6px;
}
.chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-line);
  border-radius: 12px;
  padding: 12px 14px;
}
.chip__label {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 5px;
}
.chip__value { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: #fff; }
.chip__value--blue  { color: var(--blue); }
.chip__value--green { color: #34d399; }

.mockup__chart { padding: 16px 18px 22px; }
.mockup__chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 130px;
}
.mockup__chart-bars i {
  flex: 1;
  height: var(--h);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #a78bfa 0%, #1e90ff 100%);
  opacity: 0.9;
}
.mockup__chart-bars i:nth-child(even) { opacity: 0.6; }
/* El crecimiento desde 0 lo anima GSAP al entrar en viewport */
.mockup__chart-labels {
  display: flex;
  gap: 9px;
  margin-top: 10px;
}
.mockup__chart-labels span {
  flex: 1;
  text-align: center;
  font-size: 9px;
  color: var(--text-faint);
}

/* ── Servicios ──────────────────────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  perspective: 900px;   /* para el tilt 3D de las cards */
}
.service {
  padding: 30px 26px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.service:hover {
  border-color: rgba(30, 144, 255, 0.45);
  box-shadow: 0 18px 40px rgba(10, 10, 30, 0.5);
}
.service__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.service__icon {
  font-size: 30px;
  line-height: 1;
}
.service__num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--blue);
  opacity: 0.7;
}
.service h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 9px;
}
.service p { font-size: 13.5px; color: var(--text-dim); }

/* ── Precios ────────────────────────────────────────────────────────────── */
.pricing__plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 430px));
  justify-content: center;
  gap: 24px;
  margin-bottom: 70px;
}
.plan {
  position: relative;
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
}
/* Borde degradado animado (conic-gradient rotatorio) */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.plan--featured {
  box-shadow: 0 20px 60px rgba(30, 144, 255, 0.18);
}
.plan--featured::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  padding: 2px;
  background: conic-gradient(from var(--angle), #1e90ff, #a78bfa, #1e90ff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: border-rotate 4s linear infinite;
  pointer-events: none;
}
@keyframes border-rotate { to { --angle: 360deg; } }
.plan__badge {
  position: absolute;
  top: -13px;
  right: 26px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--purple);
  color: #14082e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  box-shadow: 0 8px 24px rgba(167, 139, 250, 0.45);
  animation: badgeFloat 3s ease-in-out infinite;
  z-index: 1;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.plan__name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.plan__price {
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #fff;
  line-height: 1;
}
.plan__price span { font-size: 14px; font-weight: 500; letter-spacing: 0; color: var(--text-dim); }
.plan__commission {
  margin: 12px 0 22px;
  display: inline-block;
  align-self: flex-start;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(30, 144, 255, 0.14);
  border: 1px solid rgba(30, 144, 255, 0.35);
  color: #7bb8ff;
  font-size: 12.5px;
  font-weight: 700;
}
.plan__features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.plan__features li {
  padding: 9px 0 9px 28px;
  font-size: 14px;
  color: var(--text-dim);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
.plan__features li::before {
  content: '✓';
  position: absolute;
  left: 4px;
  color: #34d399;
  font-weight: 700;
}
.pricing__sub {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 28px;
}
.pricing__addons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.addon {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.addon:hover { transform: translateY(-3px); border-color: rgba(167, 139, 250, 0.45); }
.addon h4 { font-size: 14px; font-weight: 600; color: var(--text); }
.addon span {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--purple);
  white-space: nowrap;
}

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: border-color 0.25s ease;
}
.faq__item.open { border-left-color: #1e90ff; }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}
.faq__icon {
  position: relative;
  width: 14px; height: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  background: var(--blue);
  border-radius: 2px;
}
.faq__icon::before { top: 6px; left: 0; width: 14px; height: 2px; }
.faq__icon::after  { top: 0; left: 6px; width: 2px; height: 14px; }
/* + gira 45° y se convierte en × al abrir */
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.faq__a p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-dim);
}

/* ── Contacto ───────────────────────────────────────────────────────────── */
.contact__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
}
.contact__form { padding: 36px 34px; }
.form-row { margin-bottom: 18px; }
.form-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact__form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 7px;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-line);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.contact__form input::placeholder,
.contact__form textarea::placeholder { color: var(--text-faint); }
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  border-color: rgba(30, 144, 255, 0.6);
  background: rgba(30, 144, 255, 0.06);
}
.contact__form select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e90ff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}
.contact__form select option { background: #11112a; color: #fff; }
.contact__form textarea { resize: vertical; min-height: 100px; }
.hidden-field { display: none; }
.form-success {
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: 12px;
  background: rgba(52, 211, 153, 0.13);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: #34d399;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.info-card {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-line {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.15s ease;
}
.info-line svg { flex-shrink: 0; color: var(--blue); margin-top: 1px; }
a.info-line:hover { color: #fff; }
.info-social {
  display: flex;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--glass-line);
}
.info-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-line);
  color: var(--text-dim);
  transition: color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.info-social a:hover {
  color: #fff;
  border-color: rgba(30, 144, 255, 0.55);
  transform: translateY(-2px);
}

/* ── CTA final ──────────────────────────────────────────────────────────── */
.cta-band { padding: 30px 0 100px; }
.cta-band__card {
  text-align: center;
  padding: 72px 32px;
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.13) 0%, rgba(167, 139, 250, 0.13) 100%);
  border-color: rgba(30, 144, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.cta-band__card::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(30, 144, 255, 0.16), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
.cta-band__card h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
  background: linear-gradient(135deg, #fff 0%, #a78bfa 55%, #1e90ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 14px;
}
.cta-band__card p {
  font-size: 15.5px;
  color: var(--text-dim);
  margin-bottom: 32px;
}

/* ── Volver arriba ──────────────────────────────────────────────────────── */
.to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 40, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(30, 144, 255, 0.4);
  color: #7bb8ff;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.2s ease;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { border-color: var(--blue); color: #fff; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--glass-line);
  padding: 54px 0 28px;
  background: rgba(8, 8, 16, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.footer__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.footer__logo { height: 36px; width: auto; margin-bottom: 10px; }
.footer__tagline { font-size: 13.5px; color: var(--text-dim); }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer__links a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.15s ease;
}
.footer__links a:hover { color: #fff; }
.footer__actions { display: flex; gap: 10px; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 12.5px;
  color: var(--text-faint);
}
.footer__social a { color: var(--text-dim); }
.footer__social a:hover { color: #fff; }

/* ── Scroll reveal: gestionado por GSAP ScrollTrigger (js/script.js) ─────── */

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .navbar__links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10, 10, 20, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-line);
    padding: 8px 6vw 18px;
    display: none;
  }
  .navbar.nav-open .navbar__links { display: flex; }
  .navbar__links > a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .navbar__actions--desktop { display: none; }
  .navbar__actions--mobile { display: flex; margin-top: 16px; }
  .navbar__actions--mobile .btn { flex: 1; }
  .navbar__burger { display: flex; }

  .about__grid { grid-template-columns: 1fr; }
  .about__right { position: static; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__addons { grid-template-columns: repeat(2, 1fr); }
  .pricing__plans { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .contact__grid { grid-template-columns: 1fr; }
  .stats__panel { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .hero { padding-top: 120px; }
  .hero__title { font-size: 42px; letter-spacing: -1px; }
  .services__grid,
  .pricing__addons,
  .about__features,
  .form-row--2col { grid-template-columns: 1fr; }
  .stats__panel { grid-template-columns: repeat(2, 1fr); }
  .stat::before { width: 100px; height: 90px; }
  .footer__grid { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .ticker { margin-top: 50px; }
  .ticker__item { margin: 0 20px; }
}
