/* ============================================
   SEO LANDING v2 — Boceto experimental
   primeroypunto.com/seo-v2/
   Inspiración: phenomenonstudio, hormn, prettypatty.ch
   ============================================ */

/* --- VARIABLES ADICIONALES --- */
:root {
  --grid-size: 40px;
  --editorial-size: clamp(4rem, 10vw, 9rem);
  --statement-size: clamp(5rem, 14vw, 13rem);
  --v2-slow: 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  --v2-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --cursor-size: 8px;
  --cursor-grow: 48px;
  --border-v2: rgba(255, 255, 255, 0.06);
}

/* ============================================
   CURSOR PERSONALIZADO
   ============================================ */
body.v2-cursor-on {
  cursor: none;
}
body.v2-cursor-on a,
body.v2-cursor-on button,
body.v2-cursor-on [data-cursor] {
  cursor: none;
}

.v2-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  will-change: transform;
}

.v2-cursor__dot {
  width: var(--cursor-size);
  height: var(--cursor-size);
  border-radius: 50%;
  background: var(--red);
  transform: translate(-50%, -50%);
  transition:
    width 0.28s var(--v2-spring),
    height 0.28s var(--v2-spring),
    background 0.2s ease,
    border-radius 0.28s ease,
    border 0.2s ease,
    opacity 0.2s ease;
}

.v2-cursor--grow .v2-cursor__dot {
  width: var(--cursor-grow);
  height: var(--cursor-grow);
  background: transparent;
  border: 1.5px solid var(--red);
}

.v2-cursor--hidden .v2-cursor__dot {
  opacity: 0;
}

@media (hover: none), (pointer: coarse) {
  .v2-cursor { display: none !important; }
}

/* ============================================
   TITLE LINES (alternativa a split-chars para
   títulos con HTML interno complejo)
   ============================================ */
.v2-title-line {
  display: block;
}

/* ============================================
   SPLIT TEXT
   ============================================ */
.v2-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.9em);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.v2-char--in {
  opacity: 1;
  transform: translateY(0);
}

.v2-word {
  display: inline;
}

/* Para split por palabra (subtítulos) */
.v2-wrd {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.v2-wrd--in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .v2-char, .v2-wrd { opacity: 1; transform: none; transition: none; }
}

/* ============================================
   SCROLL REVEAL GENÉRICO
   ============================================ */
.v2-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.v2-reveal--in {
  opacity: 1;
  transform: translateY(0);
}
.v2-reveal--d1 { transition-delay: 0.08s; }
.v2-reveal--d2 { transition-delay: 0.16s; }
.v2-reveal--d3 { transition-delay: 0.24s; }
.v2-reveal--d4 { transition-delay: 0.32s; }
.v2-reveal--d5 { transition-delay: 0.40s; }
.v2-reveal--d6 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .v2-reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================
   HERO
   ============================================ */
.v2-hero {
  position: relative;
  min-height: 100svh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(1.5rem, 5vw, 5rem) clamp(3rem, 6vh, 5rem);
  overflow: hidden;
}

/* Canvas grid (insertado por JS) */
.v2-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.3) 55%,
    transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.3) 55%,
    transparent 100%);
}

.v2-hero__top {
  position: absolute;
  top: clamp(1.5rem, 4vh, 3rem);
  left: clamp(1.5rem, 5vw, 5rem);
  right: clamp(1.5rem, 5vw, 5rem);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}

.v2-hero__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  border: 1px solid rgba(217, 45, 45, 0.4);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  opacity: 0;
  animation: heroFadeIn 0.6s 0.4s ease forwards;
}

.v2-hero__scroll-hint {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
  writing-mode: vertical-rl;
  position: absolute;
  right: clamp(1.5rem, 5vw, 5rem);
  bottom: clamp(3rem, 6vh, 5rem);
  opacity: 0;
  animation: heroFadeIn 0.6s 1.8s ease forwards;
}

.v2-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
}

.v2-hero__title {
  font-size: clamp(3.2rem, 10.5vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: clamp(1.5rem, 4vh, 3rem);
}

.v2-hero__title .v2-red {
  color: var(--red);
}

.v2-hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.v2-hero__sub {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 44ch;
  flex: 1;
}

.v2-hero__cta-wrap {
  flex-shrink: 0;
}

.v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  background: var(--white);
  padding: 0.85rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.v2-btn:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,255,0.12);
}

.v2-btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.v2-btn--outline:hover {
  background: rgba(255,255,255,0.06);
  box-shadow: none;
}

.v2-btn--red {
  background: var(--red);
  color: var(--white);
}
.v2-btn--red:hover {
  background: #b91c1c;
  box-shadow: 0 8px 28px rgba(217, 45, 45, 0.3);
}

.v2-btn svg {
  transition: transform 0.2s ease;
}
.v2-btn:hover svg {
  transform: translateX(4px);
}

/* Número decorativo (counter) en hero */
.v2-hero__stat {
  position: absolute;
  bottom: clamp(3rem, 6vh, 5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  opacity: 0;
  animation: heroFadeIn 0.6s 1.5s ease forwards;
}
.v2-hero__stat-number {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 700;
  color: rgba(255,255,255,0.08);
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
}
.v2-hero__stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
  margin-top: 0.3rem;
}

/* Línea divisora horizontal decorativa */
.v2-hero__line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.08) 20%,
    rgba(255,255,255,0.08) 80%,
    transparent 100%);
  z-index: 2;
}

@keyframes heroFadeIn {
  to { opacity: 1; }
}

/* ============================================
   STATEMENT EDITORIAL
   ============================================ */
.v2-statement {
  background: var(--dark);
  padding: clamp(4rem, 10vh, 9rem) clamp(1.5rem, 5vw, 5rem);
  border-top: 1px solid var(--border-v2);
}

.v2-statement__line {
  display: block;
  font-size: var(--statement-size);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 0.05em;
  overflow: hidden;
  padding-bottom: 0.15em;
}

.v2-statement__line--muted {
  color: rgba(255,255,255,0.12);
}

.v2-statement__line--red {
  color: var(--red);
}

.v2-statement__line--indent {
  padding-left: clamp(2rem, 15vw, 20rem);
}

.v2-statement__sub {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--text-muted);
  max-width: 48ch;
  line-height: 1.7;
  margin-top: clamp(2rem, 5vh, 4rem);
  padding-left: 0;
  border-left: 2px solid var(--red);
  padding-left: 1.2rem;
}

/* ============================================
   HORIZONTAL SCROLL — PROBLEMAS
   ============================================ */
.v2-horizontal {
  background: #0D0D0F;
}

.v2-horizontal__track {
  display: flex;
  height: 100vh;
}

.v2-slide {
  position: relative;
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vh, 4rem) clamp(2rem, 6vw, 7rem);
  border-right: 1px solid var(--border-v2);
  overflow: hidden;
}

.v2-slide__bg-index {
  position: absolute;
  top: -0.1em;
  right: clamp(1rem, 5vw, 4rem);
  font-family: var(--font-mono);
  font-size: clamp(10rem, 28vw, 26rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.03);
  user-select: none;
  pointer-events: none;
}

.v2-slide__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(1rem, 3vh, 2rem);
}

.v2-slide__index {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
}

.v2-slide__tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
}

.v2-slide__title {
  font-size: clamp(2rem, 5.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: clamp(1rem, 2.5vh, 1.8rem);
  max-width: 15ch;
}

.v2-slide__text {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: var(--text-muted);
  max-width: 48ch;
  line-height: 1.7;
}

.v2-slide__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.04);
}

.v2-slide__progress-fill {
  height: 100%;
  background: var(--red);
  transition: width 0.3s ease;
}

/* Fallback móvil */
@media (max-width: 767px) {
  .v2-horizontal {
    height: auto;
  }
  .v2-horizontal__track {
    flex-direction: column;
    height: auto;
  }
  .v2-slide {
    width: 100%;
    height: auto;
    min-height: 80vh;
  }
  .v2-slide__bg-index {
    font-size: clamp(6rem, 25vw, 14rem);
  }
}

/* ============================================
   SVG FLOW — LEADS VIAJANDO
   ============================================ */
.v2-flow {
  background: var(--dark);
  padding: clamp(5rem, 12vh, 10rem) clamp(1.5rem, 5vw, 5rem);
  border-top: 1px solid var(--border-v2);
  border-bottom: 1px solid var(--border-v2);
}

.v2-flow__header {
  max-width: 1100px;
  margin: 0 auto 4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.v2-flow__title {
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
  max-width: 20ch;
}

.v2-flow__caption {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 36ch;
  line-height: 1.6;
  font-family: var(--font-mono);
}

.v2-flow__svg-wrap {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.v2-flow__svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   SERVICIOS GRID
   ============================================ */
.v2-services {
  background: var(--dark);
  padding: clamp(5rem, 12vh, 10rem) clamp(1.5rem, 5vw, 5rem);
}

.v2-services__header {
  max-width: 1100px;
  margin: 0 auto 4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.v2-section-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 0.8rem;
}

.v2-section-title {
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
}

.v2-section-sub {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: var(--text-muted);
  max-width: 44ch;
  line-height: 1.7;
}

.v2-services__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-v2);
  border-left: 1px solid var(--border-v2);
}

.v2-service-card {
  padding: clamp(2rem, 3.5vh, 3rem) clamp(1.5rem, 2.5vw, 2.2rem);
  border-bottom: 1px solid var(--border-v2);
  border-right: 1px solid var(--border-v2);
  transition: background 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.v2-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.v2-service-card:hover {
  background: rgba(255,255,255,0.03);
  box-shadow: inset 0 0 40px rgba(255,255,255,0.01);
}

.v2-service-card:hover::before {
  transform: scaleX(1);
}

.v2-service-card--geo {
  border-color: rgba(217, 45, 45, 0.3);
  background: rgba(217, 45, 45, 0.03);
}

.v2-service-card--geo::before {
  transform: scaleX(1);
  opacity: 0.5;
}

.v2-service-card--geo:hover {
  background: rgba(217, 45, 45, 0.07);
}

.v2-service-card--geo:hover::before {
  opacity: 1;
}

.v2-service-card__num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.1em;
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.v2-service-card__num::after {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.v2-service-card--geo .v2-service-card__num {
  color: var(--red);
}

.v2-service-card--geo .v2-service-card__num::after {
  background: rgba(217,45,45,0.3);
}

.v2-service-card__title {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition: color 0.25s ease;
}

.v2-service-card:hover .v2-service-card__title {
  color: rgba(255,255,255,0.95);
}

.v2-service-card__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.v2-service-card__tag {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  background: rgba(217,45,45,0.12);
  border: 1px solid rgba(217,45,45,0.25);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .v2-services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .v2-services__grid { grid-template-columns: 1fr; }
}

/* ============================================
   GRÁFICA CRECIENTE
   ============================================ */
.v2-graph {
  background: #0D0D0F;
  padding: clamp(5rem, 12vh, 10rem) clamp(1.5rem, 5vw, 5rem);
  border-top: 1px solid var(--border-v2);
}

.v2-graph__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.v2-graph__header {
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.v2-graph__stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.v2-graph__stat {
  text-align: right;
}

.v2-graph__stat-val {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}

.v2-graph__stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  display: block;
  font-family: var(--font-mono);
}

.v2-graph__svg-wrap {
  position: relative;
}

.v2-graph__svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

/* El path se anima vía JS (stroke-dashoffset) */
.v2-graph__path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: none;
}

.v2-graph__dot {
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
}
.v2-graph__dot--pulse {
  animation: dotPulse 2s ease-in-out infinite;
}

.v2-graph__area {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.v2-graph__axis-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.8rem;
  padding: 0 0.5rem;
}

.v2-graph__axis-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.2);
}

@keyframes dotPulse {
  0%, 100% { r: 5; opacity: 1; }
  50% { r: 8; opacity: 0.6; }
}

/* ============================================
   SKILLS MARQUEE
   ============================================ */
.v2-marquee-section {
  background: var(--dark);
  padding: clamp(3rem, 8vh, 7rem) 0;
  border-top: 1px solid var(--border-v2);
  overflow: hidden;
}

.v2-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%);
  -webkit-mask-image: linear-gradient(90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%);
}

.v2-marquee + .v2-marquee {
  margin-top: 0.8rem;
}

.v2-marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeLeft 28s linear infinite;
}

.v2-marquee--reverse .v2-marquee__track {
  animation-direction: reverse;
  animation-duration: 35s;
}

.v2-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  margin-right: 0.6rem;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.v2-marquee__item--red {
  color: var(--red);
  border-color: rgba(217, 45, 45, 0.3);
  background: rgba(217, 45, 45, 0.06);
  font-weight: 700;
}

@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .v2-marquee__track { animation: none; }
}

/* ============================================
   COMPARATIVA SPLIT SCREEN
   ============================================ */
.v2-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.v2-comparison__col {
  padding: clamp(4rem, 10vh, 8rem) clamp(2rem, 6vw, 7rem);
}

.v2-comparison__col--bad {
  background: #0A0A0C;
  border-right: 1px solid var(--border-v2);
}

.v2-comparison__col--good {
  background: var(--dark);
}

.v2-comparison__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1.5rem;
}

.v2-comparison__col--good .v2-comparison__eyebrow {
  color: var(--red);
}

.v2-comparison__title {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

.v2-comparison__col--bad .v2-comparison__title {
  color: rgba(255,255,255,0.3);
}

.v2-comparison__col--good .v2-comparison__title {
  color: var(--white);
}

.v2-comparison__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.v2-comparison__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.95rem;
  line-height: 1.55;
}

.v2-comparison__col--bad .v2-comparison__item {
  color: rgba(255,255,255,0.3);
}

.v2-comparison__col--good .v2-comparison__item {
  color: var(--text-muted);
}

.v2-comparison__item-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.1em;
}

.v2-comparison__col--bad .v2-comparison__item-icon {
  color: rgba(255,255,255,0.2);
}

.v2-comparison__col--good .v2-comparison__item-icon {
  color: #22C55E;
}

@media (max-width: 768px) {
  .v2-comparison { grid-template-columns: 1fr; }
  .v2-comparison__col--bad { border-right: none; border-bottom: 1px solid var(--border-v2); }
}

/* ============================================
   PRICING
   ============================================ */
.v2-pricing {
  background: var(--dark);
  padding: clamp(5rem, 12vh, 10rem) clamp(1.5rem, 5vw, 5rem);
  border-top: 1px solid var(--border-v2);
}

.v2-pricing__header {
  max-width: 1100px;
  margin: 0 auto 4rem;
}

.v2-pricing__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-v2);
  border-left: 1px solid var(--border-v2);
}

.v2-plan {
  padding: clamp(2rem, 4vh, 3.5rem) clamp(1.5rem, 2.5vw, 2.5rem);
  border-bottom: 1px solid var(--border-v2);
  border-right: 1px solid var(--border-v2);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.v2-plan--featured {
  border-color: rgba(217, 45, 45, 0.35);
  background: rgba(217, 45, 45, 0.04);
}

.v2-plan__index {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  letter-spacing: -0.04em;
}

.v2-plan--featured .v2-plan__index {
  color: rgba(217,45,45,0.2);
}

.v2-plan__tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.v2-plan--featured .v2-plan__tag {
  color: var(--red);
}

.v2-plan__title {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.v2-plan__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.v2-plan__price {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: var(--white);
}

.v2-plan__note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--red);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .v2-pricing__grid { grid-template-columns: 1fr; }
  .v2-plan { border-right: none; }
  .v2-plan:last-child { border-bottom: none; }
}

/* ============================================
   FAQ
   ============================================ */
.v2-faq-section {
  background: #0A0A0C;
  padding: clamp(5rem, 12vh, 10rem) clamp(1.5rem, 5vw, 5rem);
  border-top: 1px solid var(--border-v2);
}

.v2-faq-section__inner {
  max-width: 900px;
  margin: 0 auto;
}

.v2-faq-section__header {
  margin-bottom: 3.5rem;
}

.v2-faq {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.v2-faq:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.v2-faq__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  gap: 1.5rem;
  transition: color 0.2s ease;
}

.v2-faq__btn:hover {
  color: rgba(255,255,255,0.8);
}

.v2-faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,0.3);
  transition: transform 0.3s ease, color 0.2s ease;
}

.v2-faq--open .v2-faq__icon {
  transform: rotate(45deg);
  color: var(--red);
}

.v2-faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.v2-faq--open .v2-faq__body {
  max-height: 400px;
}

.v2-faq__body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 1.5rem;
}

/* ============================================
   CTA FINAL
   ============================================ */
.v2-cta-final {
  background: var(--dark);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(4rem, 10vh, 8rem) clamp(1.5rem, 5vw, 5rem);
  border-top: 1px solid var(--border-v2);
  position: relative;
  overflow: hidden;
}

.v2-cta-final__bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.02);
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

.v2-cta-final__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.v2-cta-final__title {
  font-size: clamp(2.2rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 0.2em;
}

.v2-cta-final__accent {
  color: var(--red);
  display: block;
}

.v2-cta-final__sub {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 44ch;
  margin: 2rem auto 3rem;
}

/* ============================================
   OTROS SERVICIOS
   ============================================ */
.v2-other-section {
  background: #0A0A0C;
  padding: clamp(4rem, 8vh, 7rem) clamp(1.5rem, 5vw, 5rem);
  border-top: 1px solid var(--border-v2);
}

.v2-other-grid {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.v2-other-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--border-v2);
  border-radius: 4px;
  text-decoration: none;
  color: var(--text-light);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.v2-other-card:hover {
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.015);
}

.v2-other-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.v2-other-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.v2-other-card span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--red);
  letter-spacing: 0.04em;
}

@media (max-width: 600px) {
  .v2-other-grid { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE GLOBAL v2
   ============================================ */
@media (max-width: 768px) {
  .v2-hero__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .v2-statement__line--indent {
    padding-left: 0;
  }
  .v2-flow__header {
    flex-direction: column;
  }
  .v2-services__header {
    flex-direction: column;
  }
  .v2-graph__header {
    flex-direction: column;
  }
  .v2-graph__stats {
    justify-content: flex-start;
  }
  .v2-graph__stat {
    text-align: left;
  }
  .v2-pricing__header {
    margin-bottom: 2.5rem;
  }
}
