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

/* ─── CSS Variables ──────────────── */

:root {
  --heading-font: 'Bricolage Grotesque', sans-serif;
  --body-font: 'Inter', system-ui, sans-serif;
  --mono-font: 'JetBrains Mono', monospace;
}

/* ─── 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);
  --bg-overlay: rgba(38, 6, 6, 0.8);

  /* 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: #facc01;
  --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;
  --bg-overlay: rgba(38, 6, 6, 0.8);

  --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: var(--body-font);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

.le-logo {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--accent);
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
}

.le-logo span {
  display: inline-block;
  line-height: 1;
  font-size: 1.1rem;
}

/* ─── Tipografía ─────────────────────────────────────────── */
h1,
h2,
h3 {
  font-family: var(--heading-font);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-2 {
  line-height: 1.2 !important;
}

.lh-3 {
  line-height: 1.4 !important;
}

.lh-4 {
  line-height: 1.6 !important;
}

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

.badge-mono,
.section-label,
.font-mono,
code,
pre {
  font-family: var(--mono-font);
}

.font-lead {
  font-family: var(--heading-font) !important;
}

.font-sans,
.font-body {
  font-family: var(--body-font) !important;
}

.font-number {
  font-family: var(--heading-font) !important;
}

.font-normal {
  font-weight: 400 !important;
}

.font-medium {
  font-weight: 500 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-bold {
  font-weight: 700 !important;
}

.font-black {
  font-weight: 800 !important;
}

/* ─── Utilidades ─────────────────────────────────────────── */
.accent {
  color: var(--accent);
}

.accent-2 {
  color: var(--accent-2);
}

.secondary {
  color: var(--text-secondary);
}

.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: 45%;
  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;
} */

.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;
}

.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;
}

.text-center .section-sub {
  max-width: none;
}

.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: var(--body-font);
  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);
  border: 2px solid var(--accent);
}

.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;
}

.lp-btn--outline.lp-btn--sm {
  border: 1px solid var(--border);
}

.lp-btn--outline.lp-btn--sm:hover {
  border-color: var(--border-accent);
}

/* ─── 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: var(--text-primary);
}

.lp-nav.over-accent-2 .lp-btn--outline {
  color: var(--text-primary);
}

.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: var(--heading-font);
  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;
}

.lp-nav__actions .search {
  font-size: .9rem;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 0.25rem 1rem;
  border-radius: 5rem;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.5rem;
  position: relative;
  border: 1px solid var(--border-accent);
}

.lp-nav__actions .search input {
  color: var(--accent);
  padding-bottom: 1px;
}

.lp-nav__actions .search input:focus {
  color: var(--accent);
  outline: none !important;
  box-shadow: none !important;
}

.lp-nav__actions .search input::placeholder {
  color: var(--text-muted);
  opacity: 1;
}

.lp-nav__actions .search input:focus::placeholder {
  opacity: 0;
}


.theme-toggle {
  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 {
  color: var(--accent);
  background: var(--accent-glow);
  border-color: var(--border-accent);
}

/* ─── Hero ─────────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 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: -35%;
  left: 20%;
  background: var(--glow-1);
}

.glow--2 {
  width: 500px;
  height: 350px;
  bottom: -25%;
  right: 15%;
  background: var(--glow-2);
  z-index: 1;
}

.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: pulseDot 2s ease infinite;
}

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

@keyframes pulseDot {

  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__axolocat_container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.hero__axolocat {
  width: 100%;
  object-fit: scale-down;
  transform: translateX(-20%);
}

.hero-offer {
  background-color: var(--bg-base) !important;
  padding: 1rem !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;
}

.max-width-full {
  max-width: 100% !important;
}

.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;
}

.hero-stats.stats-separator {
  gap: 0 !important;
}

.stats-separator .stat {
  padding: .5rem 3rem;
  border-right: 1px solid var(--border);
}

.stats-separator .stat:last-child {
  border-right: none;
}

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

.stat__num {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
}

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

.scroll-hint {
  position: absolute;
  bottom: 5%;
  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: var(--mono-font);
  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: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.4;
}

/* ─── Z-index ──────────────────────────────────── */
.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-5 {
  z-index: 5 !important;
}

.z-9 {
  z-index: 9 !important;
}

.z-10 {
  z-index: 10 !important;
}

.z-20 {
  z-index: 20 !important;
}

.z-30 {
  z-index: 30 !important;
}

.z-40 {
  z-index: 40 !important;
}

.z-50 {
  z-index: 50 !important;
}

.z-99 {
  z-index: 99 !important;
}

.z-100 {
  z-index: 100 !important;
}

.z-999 {
  z-index: 999 !important;
}

.z-9999 {
  z-index: 9999 !important;
}

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

.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;
  max-width: 1280px;
}

.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 {
  background: var(--bg-base);
  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);
}

.browser__margin {
  margin-top: 4rem;
}

/* ─── 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;
}

.lp-solution__axolocat_container {
  width: 100vw;
  padding-top: 8rem;
  margin-bottom: -6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-solution__axolocat {
  width: 100%;
  max-width: 1200px;
  object-fit: scale-down;
}

.lp-solution__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  max-width: 700px;
}

.badge-build-successfull {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  justify-content: center;
  padding: .75rem;
  background: var(--bg-base);
  position: absolute;
  bottom: 5rem;
}

.badge-build-successfull .build {
  color: #eee;
  font-weight: 800;
  line-height: 1;
  display: flex;
  justify-content: space-between;
  font-size: 2.5rem;
}

.badge-build-successfull .successful {
  color: #447e00 !important;
  font-weight: 800;
  line-height: 1;
  font-size: 1.5rem;
}

/* ─── 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-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.125rem;
}

.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: var(--mono-font);
  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: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 800;
  border-right: 1px solid var(--border-dark);
  padding-right: 1rem;
  min-width: 100px;
  text-align: center;
}

.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-accent);
}

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

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

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

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

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

.lp-table td:first-child {
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  border-right: 1px solid var(--border-accent);
  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;
  text-transform: uppercase !important;
  padding-top: 0.375rem !important;
  letter-spacing: 0.5px;
}

.value-card__price {
  font-family: var(--heading-font);
  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: var(--body-font);
  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: var(--heading-font);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
}

.price-amount-original {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
}

.discount-msg {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  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;
  padding: 1rem 0;
}

[data-theme="light"] .qa-item {
  border: 2px solid var(--border-accent);
  background: var(--bg-elevated);
}

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

.qa-question {
  width: 100%;
  padding: 0 1.5rem;
  background: none;
  border: none;
  text-align: left;
  color: var(--text-secondary);
  font-family: var(--body-font);
  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 0.25rem;
}

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

/* ─── Footer FOMO ────────────────────────────────────────── */
.lp-footer-fomo {
  position: relative;
  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: var(--heading-font);
  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: var(--heading-font);
  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);
}

.lp-footer__axolocat_container {
  padding-top: 5rem;
  margin-bottom: -3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-footer__axolocat {
  width: 100%;
  max-width: 1200px;
  object-fit: scale-down;
}

.copy-mono {
  font-family: var(--mono-font);
  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: var(--body-font);
}

.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: var(--heading-font);
  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: var(--heading-font);
  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-card--featured .pricing-addon {
  border-color: var(--border-accent);
}

.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;
}

.min-w-150 {
  min-width: 180px;
}

.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;
}

/* ─── 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;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 0.5s linear infinite;
  transform-origin: center;
}

.loader-fixed {
  position: fixed;
  inset: 0;
  background-color: var(--bg-base);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-fixed:not(.loaded) {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.loader-fixed.loaded {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

/* ─── Otros (misc.) ────────────────────── */

.success {
  color: var(--success);
}

.before-block {
  display: block;
  min-height: 25px;
  width: 1005;
}

.\!gap-0 {
  gap: 0 !important;
}

.disabled-option {
  opacity: 0.5;
  pointer-events: none;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

/* ─── PAYMENT MODAL ──────────────────────────────── */

.payment-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.payment-modal {
  background: var(--bg-elevated);
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.payment-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.payment-modal__close:hover {
  background: var(--bg-card);
  color: var(--text-primary);
}

.payment-modal__header {
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.payment-modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--accent);
}

.payment-modal__subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.payment-modal__amount {
  padding: 0 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.amount-display {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.amount-label {
  font-size: 1rem;
  font-weight: 500;
}

.amount-value {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--heading-font);
}

.payment-modal__methods {
  margin-bottom: 1.5rem;
}

.method-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 1rem;
}

.method-option:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
}

.method-radio {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.method-radio.selected {
  border-color: var(--accent);
  background: var(--accent);
}

.radio-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.method-info {
  flex: 1;
}

.method-name {
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0;
}

.method-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.payment-modal__email {
  margin-bottom: 1rem;
}

.email-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.email-input {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-surface);
  color: var(--text-primary);
  font-size: 0.85rem;
  transition: border-color 0.2s ease;
}

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

.email-input.error {
  border-color: var(--danger);
}

.email-error {
  display: block;
  margin-top: 0.5rem;
  color: var(--danger);
  font-size: 0.8rem;
}

.payment-modal__actions {
  margin-bottom: 2rem;
}

.payment-modal__actions .lp-btn {
  position: relative;
}

.payment-modal__actions .lp-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.payment-modal__actions .lp-btn.loading {
  pointer-events: none;
}

.payment-modal__security {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.payment-modal__security .badge-mono {
  background: var(--bg-card);
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.7rem;
}

/* ─── EXIT MODAL ──────────────────────────────── */

.exit-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.exit-modal {
  background: var(--bg-elevated);
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  padding: 2rem;
  max-width: 500px;
  width: min(680px, 90%);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.exit-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.exit-modal__close:hover {
  background: var(--bg-card);
  color: var(--text-primary);
}

.exit-modal__content {
  margin-bottom: 2rem;
}

.exit-modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.exit-modal__text {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.exit-modal__price {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 0.8rem 0;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.35rem;
  align-items: center;
  flex-direction: column;
}

.exit-modal__price-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.exit-modal__price-amount {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 800;
}

.exit-modal__note {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 1rem;
  padding-top: 0.5rem;
}

.exit-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

/* ─── MODAL TRANSITIONS ──────────────────────────────── */

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

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

.modal-fade-enter-active .payment-modal,
.modal-fade-leave-active .payment-modal,
.modal-fade-enter-active .exit-modal,
.modal-fade-leave-active .exit-modal {
  transition: transform 0.3s ease;
}

.modal-fade-enter-from .payment-modal,
.modal-fade-leave-to .payment-modal,
.modal-fade-enter-from .exit-modal,
.modal-fade-leave-to .exit-modal {
  transform: scale(0.9) translateY(-20px);
}

.error-header {
  text-align: center;
}

.success-details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}

.success-details h3 {
  border-bottom: 1px solid var(--border);
}

.download-section {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}

/* ─── ACCORDION ──────────────────────────────── */

.accordion-trigger {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: inherit;
  font: inherit;
}

.accordion-trigger:hover h3 {
  color: var(--accent);
}

.accordion-trigger:focus {
  outline: none;
}

.accordion-trigger:focus-visible h3 {
  color: var(--accent);
}

.accordion-trigger h3 {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: color 0.2s ease;
  border: none;
}

.chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.25rem;
  margin-left: 0.5rem;
  flex-shrink: 0;
}

.chevron.rotated {
  transform: rotate(180deg);
}

.accordion-content {
  padding-top: 1rem;
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  max-height: 500px;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

.border-t-dark {
  border-top: 1px solid var(--border-dark);
}

.border-b-dark {
  border-bottom: 1px solid var(--border-dark);
}

.border-l-dark {
  border-left: 1px solid var(--border-dark);
}

.border-r-dark {
  border-right: 1px solid var(--border-dark);
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
  }

  to {
    opacity: 1;
    max-height: 500px;
    overflow: visible;
  }
}

.success-header .hero-sub {
  font-size: 1rem;
  max-width: 100%;
}

/* ─── BG ────────────────────────────────────────────── */

.bg-white {
  background-color: rgb(255 255 255 / 100%) !important;
}

.bg-white-50 {
  background-color: rgb(255 255 255 / 50%) !important;
}

/* ─── Formato ─────────────────────────────────────────── */

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.h-fit {
  height: fit-content;
}

.w-fit {
  width: fit-content;
}

.\!p-0 {
  padding: 0 !important;
}

.\!m-0 {
  margin: 0 !important;
}

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

@media (min-width: 1300px) {

  .only-mobile {
    display: none !important;
    visibility: hidden !important;
  }

  .only-tablet {
    display: none !important;
    visibility: hidden !important;
  }

  .only-desktop {
    /* display: block !important; */
    visibility: visible !important;
  }

  .lg\:text-right {
    text-align: right !important;
  }

  .lg\:text-left {
    text-align: left !important;
  }

  .lg\:text-center {
    text-align: center !important;
  }

  .lg\:align-end {
    align-items: flex-end !important;
  }

  .lg\:align-start {
    align-items: flex-start !important;
  }

  .lg\:align-center {
    align-items: center !important;
  }

  .lg\:d-none {
    display: none !important;
  }

  .lg\:d-block {
    display: block !important;
  }

}

@media (min-width: 641px) and (max-width: 1299px) {

  .only-mobile {
    display: none !important;
    visibility: hidden !important;
  }

  .only-tablet {
    /* display: block !important; */
    visibility: visible !important;
  }

  .only-desktop {
    display: none !important;
    visibility: hidden !important;
  }

}

@media (min-width: 900px) and (max-width: 1299px) {

  .md\:text-right {
    text-align: right !important;
  }

  .md\:text-left {
    text-align: left !important;
  }

  .md\:text-center {
    text-align: center !important;
  }

  .md\:align-end {
    align-items: flex-end !important;
  }

  .md\:align-start {
    align-items: flex-start !important;
  }

  .md\:align-center {
    align-items: center !important;
  }

  .md\:d-none {
    display: none !important;
  }

  .md\:d-block {
    display: block !important;
  }

  .hero__axolocat {
    width: 100%;
    object-fit: cover;
    transform: translateX(-30%);
    height: stretch;
  }

}

@media (min-width: 640px) and (max-width: 899px) {

  .sm\:text-right {
    text-align: right !important;
  }

  .sm\:text-left {
    text-align: left !important;
  }

  .sm\:text-center {
    text-align: center !important;
  }

  .sm\:d-none {
    display: none !important;
  }

  .sm\:d-block {
    display: block !important;
  }

}

@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;
  }
}

@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 !important; */
    visibility: visible !important;
  }

  .only-tablet {
    display: none !important;
    visibility: hidden !important;
  }

  .only-desktop {
    display: none !important;
    visibility: hidden !important;
  }

  .lp-gap {
    padding-top: 0;
  }

  .lp-problem,
  .lp-solution,
  .lp-ai,
  .lp-advantages,
  .lp-mooltibot,
  .lp-pricing,
  .lp-qa,
  .lp-footer-fomo__inner {
    padding: 5rem 2rem;
  }

  .lp-features {
    padding: 5rem 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 1.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;
  }

  .hero__axolocat_container {
    position: relative;
    height: auto;
    padding: 0 20px;
    margin-bottom: 2rem;
  }

  .hero__axolocat_container .hero__axolocat {
    position: relative;
    width: 100%;
    transform: translateX(0);
    border-bottom: 2px solid var(--border-dark);
  }

  .hero-sub.w-50 {
    width: 100% !important;
  }

  .browser__margin {
    margin-top: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}