/* ════════════════════════════════════════════
   LEADMATICAD — Luxury Dark Precision
   Design Direction: High-end digital agency /
   European tech luxury / Editorial serif meets
   precision geometric sans
   ════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────── */
:root {
  /* Colors */
  --ink:       #080809;
  --ink-2:     #0d0d0f;
  --ink-3:     #141416;
  --ink-4:     #1c1c1f;
  --wire:      rgba(255,255,255,0.06);
  --wire-2:    rgba(255,255,255,0.10);
  --wire-3:    rgba(255,255,255,0.16);
  --ember:     #FF5200;        /* orange accent — sharp, electric */
  --ember-dim: rgba(255,82,0,0.15);
  --ember-glow:rgba(255,82,0,0.35);
  --silver:    #E8E8EC;
  --mist:      #8A8A95;
  --fog:       #555560;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-2xl: 12rem;

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

/* ─── RESET ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--silver);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ─── GRAIN ──────────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}

/* ─── AMBIENT LIGHT ──────────────────────── */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.ambient__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--ember-dim) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: orbDrift 18s ease-in-out infinite alternate;
}
.ambient__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.015) 0%, transparent 70%);
  bottom: 20%;
  left: -100px;
  animation: orbDrift 24s ease-in-out infinite alternate-reverse;
}
@keyframes orbDrift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 60px) scale(1.15); }
}

/* ─── CONTAINER ──────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  position: relative;
  z-index: 1;
}

/* ─── TYPOGRAPHY SYSTEM ──────────────────── */
.h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  color: var(--silver);
  letter-spacing: -0.02em;
}
.h2 em {
  font-style: italic;
  color: var(--ember);
}

.body-text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--mist);
  font-weight: 300;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-tag::after {
  content: '';
  display: block;
  height: 1px;
  width: 3rem;
  background: var(--ember);
  opacity: 0.4;
}

/* ─── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--r-sm);
  transition: all 0.28s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--ember);
  color: #fff;
  box-shadow: 0 0 0 0 var(--ember-glow);
}
.btn--primary:hover {
  background: #ff6a1a;
  box-shadow: 0 0 0 8px rgba(255,82,0,0);
  transform: translateY(-1px);

  /* Pulse effect trick */
  animation: btnPulse 0.5s var(--ease-out);
}
@keyframes btnPulse {
  0%   { box-shadow: 0 0 0 0 var(--ember-glow); }
  100% { box-shadow: 0 0 0 16px rgba(255,82,0,0); }
}
.btn--primary svg { transition: transform 0.25s var(--ease-out); }
.btn--primary:hover svg { transform: translateX(4px); }

.btn--ghost {
  background: transparent;
  color: var(--silver);
  border: 1px solid var(--wire-2);
}
.btn--ghost:hover {
  border-color: var(--wire-3);
  background: var(--wire);
}

.btn--outline {
  background: transparent;
  color: var(--silver);
  border: 1px solid var(--wire-2);
}
.btn--outline:hover {
  border-color: var(--ember);
  color: var(--ember);
}

.btn--white {
  background: var(--silver);
  color: var(--ink);
  font-weight: 600;
}
.btn--white:hover {
  background: #fff;
  transform: translateY(-1px);
}

.btn--full { width: 100%; }
.btn--large { padding: 1.125rem 2.25rem; font-size: 1.0625rem; }

/* ─── SECTION BASE ───────────────────────── */
.section {
  padding: var(--space-xl) 0;
  position: relative;
  z-index: 1;
}

/* ─── SCROLL REVEAL ──────────────────────── */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal="up"]    { transform: translateY(48px); }
[data-reveal="right"] { transform: translateX(48px); }
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 10vh, 8rem) 0 4rem;
  position: relative;
  border-bottom: 1px solid var(--wire);
}

/* Grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--wire) 1px, transparent 1px),
    linear-gradient(90deg, var(--wire) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

.hero__copy { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 1.75rem;
}
.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 8px var(--ember-glow);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px var(--ember-glow); }
  50%       { box-shadow: 0 0 18px var(--ember), 0 0 40px var(--ember-dim); }
}

.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  color: var(--silver);
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
}
.hero__h1 em {
  font-style: italic;
  color: var(--ember);
  /* Intentionally inline — flows as part of the headline sentence */
}

.hero__sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--mist);
  font-weight: 300;
  max-width: 42ch;
  margin-bottom: 2.5rem;
}

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

.hero__micro {
  font-size: 0.8125rem;
  color: var(--fog);
  font-style: italic;
  max-width: 40ch;
  line-height: 1.6;
  border-left: 2px solid var(--wire-2);
  padding-left: 1rem;
}

/* ─── Hero Visual / Hologram ────────────── */
.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.holo-system {
  position: relative;
  width: clamp(260px, 38vw, 440px);
  height: clamp(260px, 38vw, 440px);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

/* Rotating rings */
.holo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.holo-ring--outer {
  width: 100%;
  height: 100%;
  border-color: var(--wire-2);
  animation: ringRotate 24s linear infinite;
}
.holo-ring--outer::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--ember);
  border-radius: 50%;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--ember);
}
.holo-ring--mid {
  width: 72%;
  height: 72%;
  border-color: var(--wire);
  animation: ringRotate 16s linear infinite reverse;
}
@keyframes ringRotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Central core */
.holo-core {
  width: 120px;
  height: 120px;
  background: var(--ink-4);
  border: 1px solid var(--wire-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 1px var(--wire), inset 0 0 30px var(--ember-dim);
}
.holo-core::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ember-dim) 0%, transparent 80%);
  animation: corePulse 3s ease-in-out infinite;
}
@keyframes corePulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.15); }
}
.holo-core__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
  position: relative;
  z-index: 1;
  line-height: 1.4;
}

/* Orbiting nodes */
.holo-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 3;
}
.holo-node span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
}
.holo-node__inner {
  width: 44px;
  height: 44px;
  background: var(--ink-3);
  border: 1px solid var(--wire-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  transition: all 0.4s var(--ease-out);
}
.holo-node__inner:hover {
  border-color: var(--ember);
  color: var(--ember);
  box-shadow: 0 0 16px var(--ember-dim);
}

/* Positions */
.holo-node--1 { top: 5%;  left: 50%; transform: translateX(-50%); }
.holo-node--2 { right: 3%; top: 50%; transform: translateY(-50%); }
.holo-node--3 { bottom: 5%; left: 50%; transform: translateX(-50%); }
.holo-node--4 { left: 3%;  top: 50%; transform: translateY(-50%); }

/* SVG laser lines */
.holo-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Scroll hint */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fog);
  animation: scrollBob 2.5s ease-in-out infinite;
  z-index: 1;
}
.scroll-hint__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--fog), transparent);
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ════════════════════════════════════════════
   CLIENTS TICKER
   ════════════════════════════════════════════ */
.clients {
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid var(--wire);
  border-bottom: 1px solid var(--wire);
  background: var(--ink-2);
  position: relative;
  z-index: 1;
}
.clients::before,
.clients::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.clients::before { left: 0; background: linear-gradient(to right, var(--ink-2), transparent); }
.clients::after  { right: 0; background: linear-gradient(to left, var(--ink-2), transparent); }

.clients__track-wrap { overflow: hidden; width: 100%; }
.clients__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: clientScroll 28s linear infinite;
  will-change: transform;
}

.clients__img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0.6);
  transition: filter 0.3s;
  flex-shrink: 0;
}
.clients__img:hover { filter: grayscale(0.3) brightness(0.9); }

@keyframes clientScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════
   PROBLEMA
   ════════════════════════════════════════════ */
.section--problema { border-bottom: 1px solid var(--wire); }

.problema__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 900px) {
  .problema__layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 6rem;
  }
}

.callout {
  margin-top: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.callout__bar {
  width: 3px;
  min-height: 100%;
  background: var(--ember);
  border-radius: 2px;
  flex-shrink: 0;
  align-self: stretch;
}
.callout p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--silver);
  font-weight: 400;
}

/* ════════════════════════════════════════════
   SISTEMA / PASOS (Sticky scroll)
   ════════════════════════════════════════════ */
.section--sistema { border-bottom: 1px solid var(--wire); }

.sistema__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 900px) {
  .sistema__layout {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }
  .sistema__sticky {
    position: sticky;
    top: 3rem;
  }
}

.sistema__sticky .h2 { margin-bottom: 1.25rem; }

.sistema__idea {
  margin-top: 1.75rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--silver);
  font-weight: 400;
  padding: 1.25rem 1.5rem;
  background: var(--ink-3);
  border: 1px solid var(--wire-2);
  border-radius: var(--r-md);
}
.sistema__idea em {
  font-style: italic;
  color: var(--ember);
}

.sistema__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Step */
.step {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--wire);
  transition: opacity 0.6s var(--ease-out);
  opacity: 0.35;
  align-items: start;
}
.step:first-child { border-top: 1px solid var(--wire); }
.step.active { opacity: 1; }
.step.active .step__num { color: var(--ember); }

.step__num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--fog);
  transition: color 0.4s;
  padding-top: 0.15rem;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  line-height: 1.25;
  color: var(--silver);
  margin-bottom: 0.75rem;
}

.step__body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--mist);
  font-weight: 300;
}

/* ════════════════════════════════════════════
   PRECIOS
   ════════════════════════════════════════════ */
.section--precios { border-bottom: 1px solid var(--wire); }

.precios__head {
  max-width: 55ch;
  margin-bottom: 3.5rem;
}
.precios__head .h2 { margin-bottom: 1rem; }

.precios__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .precios__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1100px) {
  .precios__grid {
    grid-template-columns: 1.15fr 1fr 1fr;
  }
  .precio-card--premium {
    grid-column: 1 / -1;
  }
}

/* Card base */
.precio-card {
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.precio-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* Featured */
.precio-card--featured {
  background: var(--ink-3);
  border: 1px solid var(--ember);
  box-shadow: 0 0 40px var(--ember-dim);
}
.precio-card--featured .precio-card__badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--ember);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}

/* Addon */
.precio-card--addon {
  background: var(--ink-2);
  border: 1px solid var(--wire-2);
}
.precio-card__addon-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fog);
  margin-bottom: 0.75rem;
}

/* Premium */
.precio-card--premium {
  background: var(--ink-4);
  border: 1px solid var(--wire-3);
  padding: 0;
  overflow: hidden;
}
.precio-card--premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ember-dim) 0%, transparent 50%);
  border-radius: var(--r-lg);
  pointer-events: none;
}
.precio-card--premium .precio-card__badge--premium {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.75rem;
}
.precio-card__premium-inner {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
}
@media (min-width: 700px) {
  .precio-card__premium-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
  }
}
.precio-card__premium-price {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  flex-shrink: 0;
}
@media (min-width: 700px) {
  .precio-card__premium-price { align-items: flex-end; }
}

/* Card internals */
.precio-card__header { margin-bottom: 1.25rem; }
.precio-card__name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--silver);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.precio-card__desc {
  font-size: 0.875rem;
  color: var(--mist);
  line-height: 1.6;
  font-weight: 300;
}

.precio-card__price {
  margin-bottom: 0.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.precio-card__amount {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--silver);
  line-height: 1;
}
.precio-card__period {
  font-size: 0.8125rem;
  color: var(--fog);
  font-weight: 300;
}
.precio-card__from {
  font-size: 0.75rem;
  color: var(--fog);
  font-weight: 300;
  margin-right: 0.3rem;
}
.precio-card__monthly {
  font-size: 1.125rem;
  color: var(--ember);
  line-height: 1;
  margin-bottom: 1.75rem;
  font-weight: 400;
}
.precio-card__monthly span { font-size: 0.875rem; color: var(--mist); }

.precio-card__features {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}
.precio-card__features li {
  font-size: 0.875rem;
  color: var(--mist);
  font-weight: 300;
  padding-left: 1.25rem;
  position: relative;
}
.precio-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ember);
}

/* ════════════════════════════════════════════
   BENEFICIOS
   ════════════════════════════════════════════ */
.section--beneficios { border-bottom: 1px solid var(--wire); }

.beneficios__h2 { max-width: 600px; margin-bottom: var(--space-lg); }

.beneficios__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px)  { .beneficios__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .beneficios__grid { grid-template-columns: repeat(4, 1fr); } }

.beneficio {
  padding: 2rem;
  background: var(--ink-3);
  border: 1px solid var(--wire);
  border-radius: var(--r-lg);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.beneficio:hover {
  border-color: var(--wire-3);
  transform: translateY(-3px);
}
.beneficio__icon {
  width: 48px;
  height: 48px;
  background: var(--ink-4);
  border: 1px solid var(--wire-2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ember);
  margin-bottom: 1.5rem;
}
.beneficio h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--silver);
  margin-bottom: 0.65rem;
  line-height: 1.2;
}
.beneficio p {
  font-size: 0.875rem;
  color: var(--mist);
  line-height: 1.65;
  font-weight: 300;
}

/* ════════════════════════════════════════════
   PARA QUIÉN + POR QUÉ
   ════════════════════════════════════════════ */
.section--fit { border-bottom: 1px solid var(--wire); }

.fit__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 900px) {
  .fit__grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }
}

.fit__col .h2 { margin-bottom: 2rem; }
.fit__col--why { position: relative; }
.fit__col--why::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--wire);
  display: none;
}
@media (min-width: 900px) {
  .fit__col--why::before { display: block; }
}

.fit__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fit__list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--wire);
  font-size: 0.9375rem;
  color: var(--mist);
  font-weight: 300;
  padding-left: 1.25rem;
  position: relative;
}
.fit__list li:first-child { border-top: 1px solid var(--wire); }
.fit__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ember);
}

.why__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--wire);
}
.why__item:first-child { border-top: 1px solid var(--wire); }
.why__num {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--ember);
  flex-shrink: 0;
  line-height: 1.6;
}
.why__item p {
  font-size: 0.9375rem;
  color: var(--mist);
  font-weight: 300;
  line-height: 1.65;
}

/* ════════════════════════════════════════════
   TESTIMONIOS
   ════════════════════════════════════════════ */
.section--testimonios { border-bottom: 1px solid var(--wire); }
.testimonios__h2 { max-width: 500px; margin-bottom: var(--space-lg); }

.testimonios__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px)  { .testimonios__grid { grid-template-columns: 1fr 1fr; } }

.testimonio {
  padding: 2.25rem;
  background: var(--ink-2);
  border: 1px solid var(--wire);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
  position: relative;
}
.testimonio:hover {
  border-color: var(--wire-2);
  transform: translateY(-3px);
}
.testimonio::before {
  content: '\201C';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--ember);
  opacity: 0.12;
  pointer-events: none;
}

.testimonio__quote {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--mist);
  font-weight: 300;
  font-style: normal;
  flex-grow: 1;
}

.testimonio__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--wire);
}
.testimonio__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(0.3);
  border: 2px solid var(--wire-2);
  flex-shrink: 0;
}
.testimonio__name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--silver);
  line-height: 1.3;
}
.testimonio__role {
  font-size: 0.8rem;
  color: var(--fog);
  font-weight: 300;
  line-height: 1.4;
}

/* ════════════════════════════════════════════
   CTA FINAL
   ════════════════════════════════════════════ */
.section--cta { padding: var(--space-2xl) 0; }

.cta__inner {
  position: relative;
  background: var(--ink-3);
  border: 1px solid var(--wire-2);
  border-radius: var(--r-xl);
  padding: clamp(3rem, 8vw, 6rem) clamp(2rem, 6vw, 5rem);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.cta__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--wire);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ctaRing 20s linear infinite;
}
.cta__ring--1 {
  width: 120%;
  height: 600px;
}
.cta__ring--2 {
  width: 100%;
  height: 400px;
  border-color: var(--ember-dim);
  animation-direction: reverse;
  animation-duration: 30s;
}
@keyframes ctaRing {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  gap: 1.75rem;
}

.cta__h2 { text-align: center; }
.cta__body { text-align: center; }
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ════════════════════════════════════════════
   RESPONSIVE POLISH & MOBILE FIXES
   ════════════════════════════════════════════ */

/* Prevent hologram overflowing on mobile */
@media (max-width: 899px) {
  .hero__visual {
    order: -1;
  }
  .holo-system {
    width: clamp(220px, 70vw, 340px);
    height: clamp(220px, 70vw, 340px);
  }
  .holo-core {
    width: 90px;
    height: 90px;
  }
  .holo-core__label { font-size: 0.55rem; }
  .holo-node__inner { width: 36px; height: 36px; }
  .holo-node span   { display: none; }
  .scroll-hint      { display: none; }
}

/* fit__col h2 spacing */
.fit__col .h2           { margin-bottom: 1.5rem; }
.fit__col .section-tag  { margin-bottom: 1rem; }

/* Beneficios mobile */
@media (max-width: 599px) {
  .beneficios__grid { gap: 1rem; }
  .section          { padding: 4rem 0; }
  .section--cta     { padding: 5rem 0; }
}

/* CTA ring overflow on mobile */
@media (max-width: 699px) {
  .cta__ring--1 { width: 200%; height: 400px; }
  .cta__ring--2 { width: 180%; height: 300px; }
}

/* Pricing 2-col tablet: feature card full width */
@media (min-width: 700px) and (max-width: 1099px) {
  .precio-card--featured { grid-column: 1 / -1; }
}

/* Ensure add-on cards push CTA to bottom */
.precio-card--addon           { justify-content: flex-start; }
.precio-card--addon .btn      { margin-top: auto; }

/* Testimonios h2 margin */
.testimonios__h2 { margin-bottom: 3rem; }
