/* ═══════════════════════════════════════════════════════════
   E-commerce Intelligence Hub 2026 — styles.css
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Variables — Dark Theme (default) ──────────────── */
:root,
[data-theme="dark"] {
  /* Background */
  --bg-base:        #000000;
  --bg-surface:     #0c0b0a;
  --bg-elevated:    #201e12;
  --bg-card:        #282616;
  --bg-card-hover:  #35321c;
  --bg-light:       rgba(232, 222, 164, 0.3);

  /* Borders */
  --border:         #474021;
  --border-accent:  rgba(255, 220, 48, 0.45);
  --border-light:   #e8daa4;
  --border-dark:   #474121;

  /* Text */
  --text-primary:   #f0f4ff;
  --text-secondary: #e8dfa4;
  --text-muted:     #807644;
  --text-black:     #000000;

  /* Accent Colors */
  --accent:         #ffcf00;
  --accent-2:       #fc814a;
  --accent-glow:    rgba(255, 227, 48, 0.15);
  --accent-2-glow:  rgba(252, 129, 74, 0.20);

  /* Semantic */
  --success:        #48bb78;
  --warning:        #ed8936;
  --danger:         #fc8181;

  /* Nav */
  --nav-bg:         rgba(18, 17, 8, 0.5);
  --nav-border:     rgba(255, 255, 255, 0.06);

  /* Glow effects */
  --glow-1:         rgba(237, 212, 99, 0.08);
  --glow-2:         rgba(252,129,74,0.06);

  /* Shadows */
  --shadow-card:    0 4px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow:    0 0 40px var(--accent-glow);
}

/* ─── Light Theme ────────────────────────────────────────── */
[data-theme="light"] {
  --bg-base:        #f8fcff;
  --bg-surface:     #ffffff;
  --bg-elevated:    #f0f4fa;
  --bg-card:        #ffffff;
  --bg-card-hover:  #f5f8ff;

  --border:         rgba(0,0,0,0.08);
  --border-accent:  rgba(29,78,216,0.25);

  --text-primary:   #0f172a;
  --text-secondary: #475569;
  --text-muted:     #94a3b8;

  --accent:         #307bff;
  --accent-2:       #fc814a;
  --accent-glow:    rgba(29,78,216,0.12);
  --accent-2-glow:  rgba(252,129,74,0.08);

  --nav-bg:         rgba(248,250,255,0.92);
  --nav-border:     rgba(0,0,0,0.06);

  --glow-1:         rgba(29,78,216,0.06);
  --glow-2:         rgba(124,58,237,0.05);

  --shadow-card:    0 4px 32px rgba(0,0,0,0.08);
  --shadow-glow:    0 0 40px var(--accent-glow);
}

/* ─── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

p a {
  color: var(--text-primary);
  text-decoration: none;
}

p a:hover {
  color: var(--accent)
}

p a.accent {
  color: var(--accent);
  text-decoration: none;
}

p a.accent-2 {
  color: var(--accent-2);
  text-decoration: none;
}

p a.accent:hover,
p a.accent-2:hover {
  filter: brightness(1.12);
  text-decoration: none;
}

html {
  scroll-behavior: auto; /* Lenis maneja el smooth */
  font-size: 16px;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

/* ─── Tipografía ─────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.small {
  font-size: 85% !important;
  display: inline-block;
}

.badge-mono,
.section-label,
code,
pre {
  font-family: 'JetBrains Mono', monospace;
}

/* ─── Utilidades ─────────────────────────────────────────── */
.accent { color: var(--accent); }
.accent-2 { color: var(--accent-2); }
.muted { color: var(--text-muted); }
.line-through { text-decoration: line-through; }
.striped-text {
    position: relative;
}
.striped-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -6px;
    width: calc(100% + 12px);
    height: 5px;
    background-color: var(--accent);
    transform: rotate(5deg);
    transform-origin: center;
}
.striped-text-light {
    position: relative;
}
.striped-text-light::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -6px;
    width: calc(100% + 12px);
    height: 3px;
    background-color: var(--accent);
    transform: rotate(5deg);
    transform-origin: center;
}
/* .striped-text::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -6px;
    width: calc(100% + 12px);
    height: 5px;
    background-color: var(--accent);
    transform: rotate(-10deg);
    transform-origin: center;
} */

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.badge-mono {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  padding: 0.25rem 0.85rem 0.15rem;
  border-radius: 999px;
  display: inline-block;
}

.only-mobile { display: none; }
.only-tablet { display: none; }
.only-desktop { display: block; }

.section-label {
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 70ch;
  line-height: 1.5;
}

.scroll-down__btn span {
  color: var(--text-primary)
}

.scroll-down__btn:hover span {
  color: var(--accent);
}

/* ─── Botones ────────────────────────────────────────────── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 0.6rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lp-btn--primary {
  background: var(--accent);
  color: var(--text-black);
  box-shadow: 0 0 24px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.15);
}
.lp-btn--primary:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.lp-btn--outline {
  background: transparent;
  color: var(--text-secondary);
  border: 2px solid var(--border-dark);
}
.lp-btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.lp-btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: none;
}
.lp-btn--ghost:hover {
  color: var(--text-primary);
}

.lp-btn--ghost.border {
  border-width: 2px !important;
}

.lp-btn--ghost.transform:hover {
  transform: translateY(-2px);
}

.lp-btn--justify-between {
  justify-content: space-between;
}

.no-transform:hover {
  transform: none !important;
}

.lp-btn--sm  { font-size: 0.82rem; padding: 0.45rem 0.9rem; border-radius: 0.5rem; }
.lp-btn--lg  { font-size: 1rem;    padding: 0.8rem 1.6rem; }
.lp-btn--xl  { font-size: 1.05rem; padding: 1rem 2rem; border-radius: 0.75rem; }

/* ─── Navbar ─────────────────────────────────────────────── */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.lp-nav.scrolled {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.65rem 2rem;
}

/* Cuando el nav pasa sobre #mooltibot, accent → accent-2 en todos sus usos */
.lp-nav.over-accent-2 {
  --accent:        var(--accent-2);
  --accent-glow:   var(--accent-2-glow);
  --border-accent: color-mix(in srgb, var(--accent-2) 45%, transparent);
}
.lp-nav.over-accent-2 .theme-toggle {
  color: #fff;
}
.lp-nav.over-accent-2 .lp-btn--outline {
  color: #fff;
}

.lp-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.lp-nav__brand {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lp-nav__logo {
  width: 28px; height: 28px;
}

.badge-version {
  font-size: 0.6rem;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 0.1rem 0.25rem 0.05rem;
  border-radius: 6px;
  display: inline-block;
  margin-left: 5px;
  position: relative;
  top: -5px;
}

.lp-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.theme-toggle {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── Hero ─────────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
  text-align: center;
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

[data-theme="light"] .lp-hero__bg {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow--1 {
  width: 600px; height: 400px;
  top: -10%; left: 20%;
  background: var(--glow-1);
}
.glow--2 {
  width: 500px; height: 350px;
  bottom: 0; right: 15%;
  background: var(--glow-2);
}

.lp-hero__content {
  position: relative;
  max-width: 1100px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 1rem 0.4rem 0.4rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse 2s ease infinite;
}

.border-hero {
  border-bottom: 2px solid var(--border);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

.badge-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
}


.hero-offer {
  background-color: var(--bg-base) !important;
  padding: 1rem .5rem !important;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  text-align: left;
}

.hero-title .line { display: block; }
.hero-title .accent { color: var(--accent); }
.hero-title .dim { color: var(--text-muted); }

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  color: var(--text-primary);
  max-width: 56ch;
  margin: 0;
  line-height: 1.4;
  text-align: left;
}

.hero-sub strong { color: var(--text-primary); }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.stat__num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.stat__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'JetBrains Mono', monospace;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-secondary);
  font-size: 2rem;
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Problema (Sticky) ──────────────────────────────────── */
.lp-problem {
  background: var(--bg-surface);
  padding: 10rem 2rem;
}

.lp-problem__sticky-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.lp-problem__left {
  /* GSAP ScrollTrigger pin maneja el sticky — ver scripts.js initProblemSection() */
  padding-right: 2rem;
  will-change: transform;
}

.progress-pills {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}

.pill {
  height: 4px;
  flex: 1;
  background: var(--border);
  border-radius: 999px;
  transition: background 0.4s ease;
}

.pill.active { background: var(--accent); }

.lp-problem__right {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  padding: 1rem 0;
}

.pain-card {
  border-radius: 0.75rem;
  padding: 2rem 2.25rem;
  /* opacity/transform iniciales: GSAP los gestiona vía fromTo */
  opacity: 0;
  transform: translateY(40px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  will-change: opacity, transform;
  border: 2px solid var(--bg-surface);
}

.pain-card:hover {
  border-color: var(--border-accent);
  background: var(--accent-glow);
}

.pain-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pain-card__icon { width: 50px; height: 50px; display: block; margin-bottom: 1rem; }

.pain-card__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pain-card__desc {
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.pain-card__highlight {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  padding: 0.5rem 0.85rem;
  border-radius: 0.5rem;
  display: inline-block;
  line-height: 1.2;
}

/* ─── Gap ──────────────────────────────────── */
.lp-gap {
  background: var(--bg-base);
  padding: 6rem 2rem;
}

.lp-gap__wrap {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.gap-box {
  position: relative;
  padding: 5rem 0 5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gap-badge { font-size: 0.72rem; }

.gap-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 75%;
}

.gap-insight {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem;
  max-width: 75%;
  margin: 1rem 0;
}

.gap-insight__text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.4;
}

/* ─── Browser ──────────────────────────────────── */
.browser__container {
  position: relative;
  width: 100%;
  height: 100%;
}

.browser__container.browser_absolute {
  position: absolute;
  top: 0; left: 0;
}

.browser__container.browser_relative {
  position: relative;
  margin-top: 4rem;
}

.browser__container.height_center {
  display: flex;
  align-items: center;
}

.browser__container.height_top {
  display: flex;
  align-items: flex-start;
}

.browser__container.height_bottom {
  display: flex;
  align-items: flex-end;
}

.browser__container.width_center {
  display: flex;
  justify-content: center;
}

.browser__container.width_right {
  display: flex;
  justify-content: flex-end;
}

.browser__container.width_left {
  display: flex;
  justify-content: flex-start;
}

.browser__container.z-0 {
  z-index: 0;
}

.browser {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
}

.browser.width_full {
  width: 100%;
}

.browser.width_90 {
  width: 90%;
}

.browser.width_80 {
  width: 80%;
}

.browser.width_75 {
  width: 75%;
}

.browser.width_50 {
  width: 50%;
}

.browser.width_25 {
  width: 25%;
}

.browser.height_full {
  height: 100%;
}

.browser.height_75 {
  height: 75%;
}

.browser.height_50 {
  height: 50%;
}

.browser.height_25 {
  height: 25%;
}

.browser .height_full {
  height: 100ch;
}

.browser .height_90 {
  height: 90ch;
}

.browser .height_80 {
  height: 80ch;
}

.browser .height_75 {
  height: 75ch;
}

.browser .height_70 {
  height: 70ch;
}

.browser .height_66 {
  height: 66ch;
}

.browser .height_60 {
  height: 60ch;
}

.browser .height_55 {
  height: 55ch;
}

.browser .height_50 {
  height: 50ch;
}

.browser .height_40 {
  height: 40ch;
}

.browser .height_33 {
  height: 33ch;
}

.browser .height_30 {
  height: 30ch;
}

.browser .height_25 {
  height: 25ch;
}

.browser .height_20 {
  height: 20ch;
}

.browser.overlay_left::after {
  content: "";
  position: absolute;
  top: 0; 
  bottom: 0;
  left: 0; 
  right: 0;
  width: 100%;
  background: linear-gradient(to right, var(--browser-overlay-color, var(--bg-base)) 0%, transparent 100%);
  pointer-events: none;
}

.browser.overlay_right::after {
  content: "";
  position: absolute;
  top: 0; 
  bottom: 0;
  left: 0; 
  right: 0;
  width: 100%;
  background: linear-gradient(to left, var(--browser-overlay-color, var(--bg-base)) 0%, transparent 100%);
  pointer-events: none;
}

.browser.overlay_top::after {
  content: "";
  position: absolute;
  top: 0; 
  left: 0; 
  right: 0;
  height: 100%;
  background: linear-gradient(to bottom, var(--browser-overlay-color, var(--bg-base)) 0%, transparent 100%);
  pointer-events: none;
}

.browser.overlay_bottom::after {
  content: "";
  position: absolute;
  bottom: 0; 
  left: 0; 
  right: 0;
  height: 100%;
  background: linear-gradient(to top, var(--browser-overlay-color, var(--bg-base)) 0%, transparent 100%);
  pointer-events: none;
}

/* Solo reemplaza el color del gradiente — dirección y stop transparente los controla overlay_* */
.browser.overlay_bg_base::after     { --browser-overlay-color: var(--bg-base); }
.browser.overlay_bg_elevated::after { --browser-overlay-color: var(--bg-elevated); }
.browser.overlay_bg_surface::after  { --browser-overlay-color: var(--bg-surface); }

.browser__frame {
  border: 2px solid var(--border-dark);
  border-radius: 0.75rem;
  overflow: hidden;
}

.browser__header {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-dark);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 34px;
}

.browser__header.dots_left { justify-content: flex-start; }

.browser__header.dots_right { justify-content: flex-end; }

.browser__dots {
  display: flex;
  gap: 0.4rem;
}

.browser__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-dark);
}

/* ─── Solución ──────────────────────────────────── */
.lp-solution {
  background: var(--bg-surface);
  padding: 6rem 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.lp-solution__wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.solution-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.solution-box .section-title { 
  text-align: center; 
}

.solution-badge { font-size: 0.72rem; }

.solution-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 80ch;
  text-align: center;
}

/* ─── Features (Horizontal Scroll) ───────────────────────── */
.lp-features {
  padding: 10rem 0;
  background: var(--bg-base);
  overflow: hidden;
}

.lp-features__header {
  max-width: 1280px;
  margin: 0 auto 1rem;
  padding: 0 2rem;
}

.lp-features__track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: grab;
}

.lp-features__track-wrap:active { cursor: grabbing; }

.lp-features__track {
  display: flex;
  gap: 2rem;
  padding: 1rem 2rem 2rem;
  width: max-content;
  will-change: transform;
}

.feature-card {
  background: var(--bg-surface);
  border: 2px solid var(--border-dark);
  border-radius: 0.75rem;
  padding: 5rem 3rem 3rem;
  width: 400px;
  flex-shrink: 0;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  position: relative;
}

.feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  height: 30px;
  width: 100%;
  border-bottom: 1px solid var(--border-dark);
}

.feature-card__icon {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1rem;
}

.feature-card__tag {
  font-size: 0.65rem;
  margin-bottom: 0.75rem;
}

.feature-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-card__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.feature-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.feature-card__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.feature-card__list .mdi-check-circle { color: var(--success); flex-shrink: 0; margin-top: 2px; }

.scroll-indicator {
  text-align: center;
  padding: 0.75rem;
  color: var(--text-muted);
}

/* ─── IA Section ─────────────────────────────────────────── */
.lp-ai {
  background: var(--bg-surface);
  padding: 10rem 2rem;
}

.lp-ai__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ai-feats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.ai-feat {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  transition: border-color 0.3s;
}

.ai-feat:hover { border-color: var(--border-accent); }

.ai-feat__icon {
  width: 2.5rem; height: 2.5rem;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ai-feat__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.ai-feat__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* AI Terminal */
.lp-ai__visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ai-terminal {
  background: #14120a;
  border: 2px solid var(--border-dark);
  border-radius: 0.875rem;
  overflow: hidden;
}

[data-theme="light"] .ai-terminal {
  background: #2e2c1a;
}

.ai-terminal__bar {
  background: rgba(41, 36, 18, 0.5);
  border-bottom: 1px solid var(--border-dark);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }

.ai-terminal__label {
  margin-left: auto;
  font-size: 0.65rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  padding: 0;
}

.ai-terminal__body {
  padding: 1.25rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
}

.ai-line { display: flex; gap: 0.5rem; }
.ai-line.success { color: #48bb78; }
.ai-line.info    { color: #63b3ed; }
.ai-line.warn    { color: #ed8936; }
.ai-line.dim     { color: rgba(255,255,255,0.3); }

.ai-line__prompt { color: rgba(255, 255, 255, 0.8); }

.ai-metric {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-surface);
  border: 2px solid var(--border-dark);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
}

.ai-metric__num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  border-right: 1px solid var(--border-dark);
  padding-right: 0.75rem;
}

.ai-metric__label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ─── Tabla de Ventajas ──────────────────────────────────── */
.lp-advantages {
  background: var(--bg-base);
  padding: 10rem 2rem;
}

.lp-advantages__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.lp-table-wrap {
  margin-top: 2.5rem;
  overflow-x: auto;
  border-radius: 0.75rem;
  border: 2px solid var(--border-dark);
}

.lp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.lp-table thead tr {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-dark);
}

.lp-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  white-space: nowrap;
}

.lp-table th:first-child { 
  border-right: 1px solid var(--border-dark);
}

.lp-table td {
  padding: 1rem 1.5rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-dark);
  vertical-align: top;
  line-height: 1.55;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

.lp-table td:first-child { 
  color: var(--text-muted); 
  font-size: 13px;
  border-right: 1px solid var(--border-dark);
  background: var(--bg-surface);
}

.lp-table tbody tr {
  transition: background 0.2s;
}

.lp-table tbody tr:last-child td { border-bottom: none; }
.lp-table tbody tr:hover { background: var(--bg-card-hover); }

/* ─── MooltiBot ──────────────────────────────────────────── */
.lp-mooltibot {
  background: #0c0907;
  padding: 10rem 2rem;
  position: relative;
  overflow: hidden;
}

.lp-mooltibot__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.mooltibot-badge {
  margin-bottom: 1rem;
}

.mooltibot-badge .badge-mono {
  background: var(--accent-2-glow);
  border-color: rgba(252,129,74,0.3);
  color: var(--accent-2);
  text-transform: none;
  padding: 0.25rem 0.85rem 0.15rem;
}

.mooltibot-title {
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.mooltibot-sub {
  font-size: 1.1rem;
  color: var(--text-primary);
  max-width: 70ch;
  margin: 0 auto 3rem;
  line-height: 1.5;
}

.mooltibot-value {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.value-card {
  border: 2px solid rgba(252,129,74,0.3);
  border-radius: 1.25rem;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
}

.value-card__label { font-size: 0.7rem; }
.value-card__price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-2);
}
.value-card__price small { font-size: 1.2rem; opacity: 0.7; }
.value-card__sub { font-size: 0.82rem; color: var(--accent-2); }

.mooltibot-perks {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
}

.perk {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.perk-icon { color: var(--accent-2); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* Package */
.mooltibot-pkg {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2.5rem;
  text-align: left;
}

.mooltibot-pkg h3 {
  font-size: 1.3rem;
  margin: 0.75rem 0 1.5rem;
}

.pkg-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.pkg-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}

.pkg-num {
  font-size: 0.65rem;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0.3rem 0.6rem;
}

.pkg-item strong { font-size: 0.92rem; display: block; margin-bottom: 0.2rem; }
.pkg-item p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; margin: 0; }

/* ─── Pricing ────────────────────────────────────────────── */
.lp-pricing {
  background: var(--bg-base);
  padding: 10rem 2rem;
}

.lp-pricing__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-personas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2.5rem 0;
}

.persona-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 3rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.persona-btn.active,
.persona-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
}

.pricing-card:hover,
.pricing-card--featured {
  border-color: var(--border-accent);
}

.pricing-card--featured {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-elevated));
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
}

.pricing-badge .badge-mono {
  background: var(--accent);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.pricing-card__tag { font-size: 0.65rem; }
.pricing-card__name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.pricing-card__desc {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing-card__price {
  padding: 1.25rem 0 1rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.price-original {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.discount-badge {
  font-size: 0.65rem;
  background: rgba(252,129,74,0.15);
  border-color: rgba(252,129,74,0.3);
  color: #fc814a;
  padding: 0.2rem 0.5rem;
}

.strikethrough {
  text-decoration: line-through;
  color: var(--accent-2);
  font-size: 1.1rem;
  font-weight: 600;
}

.price-amount {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
}

.discount-msg {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
}

.price-label { 
  font-size: 0.8rem; 
  color: var(--text-muted); 
  padding-bottom: 0.4rem;
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.87rem;
  color: var(--text-secondary);
}

.pricing-card__features .mdi-check-circle { color: var(--success); flex-shrink: 0; margin-top: 1px; }

.payment-methods {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 0.87rem;
  color: var(--text-secondary);
}
.sep { color: var(--text-muted); padding: 0.5rem; }

.nowrap { white-space: nowrap; }

/* ─── Q&A ────────────────────────────────────────────────── */
.lp-qa {
  background: var(--bg-surface);
  padding: 10rem 2rem;
}

.lp-qa__inner {
  max-width: 800px;
  margin: 0 auto;
}

.qa-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.qa-item {
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color 0.3s;
}

.qa-item:has(.qa-question.open) { border-color: var(--border-accent); }

.qa-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.qa-question.open { color: var(--accent); }
.qa-question .mdi { color: var(--text-muted); font-weight: 600; flex-shrink: 0; font-size: 1.3rem; }
.qa-question.open .mdi { color: var(--accent); }

.qa-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.qa-answer.open {
  max-height: 400px;
  padding: 0 1.5rem 1.5rem;
}

.qa-answer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ─── Footer FOMO ────────────────────────────────────────── */
.lp-footer-fomo {
  background: var(--bg-base);
  padding: 0;
}

.lp-footer-fomo__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 10rem 2rem;
}

.fomo-label {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.fomo-title {
  font-size: clamp(2.5rem, 7vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.fomo-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 80ch;
  margin: 0 auto 1.25rem;
  line-height: 1.5;
}

.fomo-sub strong { color: var(--text-primary); }

.fomo-cta-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.15rem;
  color: var(--accent);
  max-width: 80ch;
  margin: 0 auto 2rem;
  line-height: 1.5;
  border: 2px solid var(--border-dark);
  padding: 1.25rem;
  border-radius: 0.75rem;
  font-weight: 600;
}

.fomo-cta-text strong { color: var(--accent); }

.fomo-question {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.fomo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.fomo-actions .lp-btn--primary .mdi-whatsapp { font-size: 1.2rem; }

.fomo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.lp-footer {
  border-top: 1px solid var(--border);
}

.lp-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.lp-footer__brand { font-size: 0.72rem; }
.lp-footer__copy { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); }

.copy-mono {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 0.25rem 0;
    display: inline-block;
}

/* ─── Nuevos bloques (Lead Magnet / Oferta / Reviews / Modal) ───────── */
.hero-leadmagnet {
  margin: 1.5rem auto 1rem;
  max-width: 760px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
}

.leadmagnet-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  display: flex;
  gap: 0.1rem;
  align-items: flex-start;
  flex-direction: column;
  font-weight: 500;
}

.leadmagnet-title {
  font-size: 1rem;
  color: var(--accent);
  line-height: 1.5;
  text-align: left;
}

.leadmagnet-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.leadmagnet-input {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--text-primary);
  padding: 0.75rem 0.9rem;
  font-family: 'Inter', sans-serif;
}

.leadmagnet-input:focus {
  outline: none;
  border-color: var(--border-accent);
}

.leadmagnet-note {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.price-preview-old {
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1;
  padding-left: 60px;
  font-family: 'Bricolage Grotesque', sans-serif;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.price-preview-old small {
  font-size: 70%;
}

.hero-price-preview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
}

.price-preview-text { color: var(--text-secondary); }
.price-preview-amount {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.urgency-banner {
  margin-top: 1rem;
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  border: 1px solid rgba(252, 129, 74, 0.35);
  background: rgba(252, 129, 74, 0.1);
  color: var(--text-primary);
  padding: 0.6rem 0.8rem;
  border-radius: 0.55rem;
  font-size: 1rem;
  font-weight: 600;
}

.pricing-addon {
  font-size: 0.95rem;
  color: var(--text-secondary);
  border: 1px dashed var(--border);
  border-radius: 0.55rem;
  padding: 0.75rem;
}

.pricing-addon p {
  margin: 0;
  font-size: .85rem;
  line-height: 1.2;
}

.pricing-guarantee {
  margin-top: 1.5rem;
}

.guarantee-box {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  border-radius: 0.75rem;
  padding: 1rem;
  color: var(--text-secondary);
}

.guarantee-box strong {
  color: var(--accent);
  display: block;
  margin-bottom: 0.3rem;
}

.lp-reviews {
  background: var(--bg-base);
  padding: 10rem 2rem;
}

.lp-reviews__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.reviews-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
}

.review-stars {
  color: var(--accent);
  display: flex;
  gap: 0.1rem;
  margin-bottom: 0.5rem;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.9rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-name {
  display: block;
  font-size: 0.85rem;
}

.review-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.modal-fade-enter-active,
.modal-fade-leave-active {
  transition: opacity 0.2s ease;
}

.modal-fade-enter-from,
.modal-fade-leave-to {
  opacity: 0;
}

.exit-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.exit-modal {
  width: min(680px, 100%);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-card);
}

.exit-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1.2rem;
}

.exit-modal__title {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.exit-modal__text,
.exit-modal__note,
.exit-modal__price-label {
  color: var(--text-secondary);
}

.exit-modal__price {
  margin: 0.8rem 0;
  display: flex;
  gap: 0.35rem;
  align-items: baseline;
}

.exit-modal__price-amount {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.exit-modal__actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* ─── Animaciones de entrada (reveal) ────────────────────── */

.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.visible {
  opacity: 1;
  transform: none;
}

/* ─── Responsive ─────────────────────────────────────────── */

@media (max-width: 1300px) {
  .hero-title { font-size: clamp(2rem, 4.5vw, 5rem); } 
  .hero-badge { display: none; }
  .hero-cta { margin-bottom: 2rem; }
  .hero-sub { max-width: 85%; font-size: 1rem; }

  .only-mobile { display: none; }
  .only-tablet { display: block; }
  .only-desktop { display: none; }
}

@media (max-width: 900px) {
  .lp-problem__sticky-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lp-problem__left {
    position: relative;
    top: auto;
    padding-right: 0;
  }

  .lp-ai__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .lp-nav__actions .lp-btn--outline { display: none; }
}

@media (max-width: 640px) {
  .lp-nav { padding: 0.85rem 1.25rem; }
  .lp-nav.scrolled { padding: 0.6rem 1.25rem; }
  .lp-nav__brand .lp-nav__name { font-size: 0.9rem; line-height: 1; }
  .lp-nav__brand .lp-nav__name .badge-version { display: none; }

  .hero-badge, .hero-stats { display: none; }
  .hero-title { font-size: clamp(1.5rem, 8vw, 2.5rem); }
  .hero-sub { max-width: 80%; font-size: 1rem; }

  .pricing-cards { grid-template-columns: 1fr; }

  .fomo-actions { flex-direction: column; align-items: stretch; }
  .fomo-actions .lp-btn { justify-content: center; }

  .lp-footer__inner { flex-direction: column; text-align: center; }

  .mooltibot-value { flex-direction: column; }

  .hero-stats { gap: 0.5rem 1.5rem; }
  .stat__num { font-size: 1.5rem; }

  .only-mobile { display: block; }
  .only-tablet { display: none; }
  .only-desktop { display: none; }

  .lp-gap {
    padding-top: 0;
  }
  .lp-problem,
  .lp-solution,
  .lp-ai,
  .lp-advantages,
  .lp-mooltibot,
  .lp-pricing,
  .lp-qa,
  .lp-footer-fomo__inner {
    padding: 4rem 2rem;
  }
  .lp-features {
    padding: 4rem 0;
  }

  .mooltibot-sub {
    margin-bottom: 0;
    font-size: 1rem;
  }

  .mooltibot-value {
    margin-top: 2rem;
  }

  .lp-problem .lp-problem__right {
    gap: 2rem;
  }

  .lp-problem .pain-card__title {
    font-size: 1.35rem;
  }

  .lp-problem .pain-card__desc {
    font-size: 0.85rem;
  }

  .lp-problem .lp-problem__right .pain-card {
    border-radius: 0.75rem;
    padding: 2rem 2.25rem;
    opacity: 0;
    transform: translateY(40px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    will-change: opacity, transform;
    border: 2px solid var(--border-dark);
}

  .lp-gap .gap-box.w-75 {
    width: 100% !important;
    padding-bottom: 0 !important
  }
  .lp-gap .gap-box .gap-text {
    max-width: 100% !important;
  }

  .section-sub,
  .gap-text,
  .solution-text,
  .fomo-sub {
    font-size: 1rem;
    line-height: 1.4;
  }

  .scroll-indicator p {
    line-height: 1.3;
  }

  .fomo-question {
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .lp-gap .lp-gap__wrap {
    display: flex;
    flex-direction: column-reverse;
    gap: 1.5rem;
  }

  .lp-gap .browser__container.browser_absolute {
    position: relative;
    width: 100%;
    height: auto;
  }

  .lp-gap .browser__container .browser {
    width: 100% !important;
    padding-top: 0 !important;
  }

  .lp-gap .gap-insight {
    max-width: 100% !important;
  }

  .lp-gap .gap-insight__text {
    line-height: 1.2;
  }

  .lp-solution .browser.width_75 {
    width: 100% !important;
  }

  .leadmagnet-form {
    grid-template-columns: 1fr;
  }

  .hero-price-preview {
    margin-top: 0.6rem;
  }

  .guarantee-box {
    flex-direction: column;
  }

  .exit-modal__actions {
    flex-direction: column;
  }

  .exit-modal__actions .lp-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-modular {
    flex-direction: column;
    gap: 2rem;
  }
  .hero-offer {
    width: 100% !important;
    padding: 1rem 2.5rem !important;
    align-items: center !important;
  }
  .hero-offer.w-66,
  .hero-leadmagnet.w-33 {
    width: 100% !important;
  }
  .hero-modular .hero-title .line {
    text-align: center;
  }
  .hero-modular .hero-sub {
    text-align: center;
    max-width: 100%;
  }
  .hero-modular .price-preview-old {
    justify-content: center;
    text-align: center;
    padding-left: 10px !important;
  }
  .hero-modular .hero-price-preview {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
