/* ════════════════════════════════════════════════════════════════
   LectorDTE — Landing page
   Diseño: gradient hero, dark sections, plan destacado, responsive
   ════════════════════════════════════════════════════════════════ */

:root {
  --primary: #6c1ad4;
  --primary-dark: #5510aa;
  --primary-light: #8b3df0;
  --secondary: #0d6efd;
  --accent: #ffc107;
  --success: #198754;
  --danger: #dc3545;

  --dark: #0f1419;
  --dark-2: #1a1f2e;
  --gray-1: #f8f9fa;
  --gray-2: #e9ecef;
  --gray-3: #ced4da;
  --gray-4: #6c757d;
  --gray-5: #495057;

  --text: #1a1f2e;
  --text-light: #495057;
  --text-muted: #6c757d;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.18);

  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --gradient-hero: linear-gradient(135deg, #6c1ad4 0%, #4810a0 50%, #2d0a6e 100%);
  --gradient-cta: linear-gradient(135deg, #6c1ad4 0%, #8b3df0 100%);
  --gradient-accent: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
}

/* ═══════════ RESET ═══════════ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .15s; }
a:hover { color: var(--primary-dark); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════ TIPOGRAFÍA ═══════════ */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-head p {
  margin-top: 0.75rem;
  color: var(--text-light);
  font-size: 1.1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}
.badge i { color: var(--accent); }

/* ═══════════ BOTONES ═══════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: 0 4px 14px rgba(108, 26, 212, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(108, 26, 212, 0.5);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: #fff; color: var(--primary); }
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* ═══════════ NAV ═══════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 24px;
  gap: 2rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
}
.logo i { font-size: 1.4rem; }
.logo-light { color: #fff; }
.nav-links {
  display: flex;
  gap: 1.8rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta { display: flex; gap: 0.7rem; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text);
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  background: var(--gradient-hero);
  color: #fff;
  padding: 5rem 0 6rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 61, 240, 0.3) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content { max-width: 600px; }
.hero h1 {
  margin: 1.2rem 0 1.5rem;
  font-weight: 900;
}
.hero-accent {
  background: linear-gradient(135deg, #ffc107 0%, #fff5b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}
.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-trust i { color: var(--accent); }

/* ═══════════ MOCKUP HERO ═══════════ */
.hero-visual { display: flex; justify-content: center; }
.mockup {
  width: 100%;
  max-width: 540px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-6deg) rotateX(4deg);
  transition: transform .3s;
}
.mockup:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(2deg); }
.mockup-bar {
  background: #f1f3f5;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  border-bottom: 1px solid var(--gray-2);
}
.mockup-bar span {
  width: 11px; height: 11px; border-radius: 50%; background: #fc615d;
}
.mockup-bar span:nth-child(2) { background: #fdbe40; }
.mockup-bar span:nth-child(3) { background: #34c84a; }
.mockup-title {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  font-size: 0.8rem; font-weight: 600; color: var(--text-light);
}
.mockup-body { padding: 1.2rem; }
.mock-row {
  display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1rem;
}
.mock-head div {
  padding: 0.4rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--gray-1);
  border-radius: 6px;
}
.mock-head div:first-child { background: var(--primary); color: #fff; }
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin: 1rem 0;
}
.mstat {
  background: var(--gray-1);
  padding: 0.7rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--gray-2);
}
.mstat b {
  display: block;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 800;
}
.mstat small {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.mstat.success b { color: var(--success); }
.mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  height: 90px;
  padding-top: 0.5rem;
  border-top: 1px solid var(--gray-2);
}
.bar {
  flex: 1;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
  border-radius: 4px 4px 0 0;
  min-height: 10px;
}

/* ═══════════ DOLOR ═══════════ */
.pain { padding: 5rem 0; background: var(--gray-1); }
.pain h2 { text-align: center; margin-bottom: 3rem; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.pain-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-2);
  transition: transform .2s, box-shadow .2s;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pain-card i {
  font-size: 2rem;
  color: var(--danger);
  margin-bottom: 1rem;
}
.pain-card h3 { margin-bottom: 0.6rem; }
.pain-card p { color: var(--text-light); font-size: 0.95rem; }

/* ═══════════ FEATURES ═══════════ */
.features { padding: 6rem 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.feature {
  text-align: left;
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: background .2s, transform .2s;
}
.feature:hover {
  background: var(--gray-1);
  transform: translateY(-2px);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-cta);
  color: #fff;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 8px 18px rgba(108,26,212,0.25);
}
.feature h3 { margin-bottom: 0.5rem; }
.feature p { color: var(--text-light); font-size: 0.95rem; }

/* ═══════════ HOW IT WORKS ═══════════ */
.how { padding: 5rem 0; background: var(--dark); color: #fff; }
.how .eyebrow { color: var(--accent); }
.how h2 { color: #fff; }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--gradient-accent);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.6rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}
.step h3 { color: #fff; margin-bottom: 0.7rem; }
.step p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }

/* ═══════════ VIDEO ═══════════ */
.video { padding: 6rem 0; background: var(--gray-1); }
.video-wrap {
  max-width: 960px;
  margin: 2rem auto 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: #000;
}
.video-placeholder {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}
.video-placeholder iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 25, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 2rem;
  pointer-events: none;
}
.video-overlay i {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0.7;
}
.video-overlay code {
  background: rgba(255,255,255,0.15);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-family: 'Consolas', monospace;
  font-size: 0.85rem;
}
.video-overlay small { opacity: 0.7; }
/* Cuando hay video real, hidé el overlay manualmente quitándolo del HTML */

/* ═══════════ WHY ═══════════ */
.why { padding: 6rem 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.why-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-2);
  background: #fff;
  transition: all .25s;
}
.why-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.why-card i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.why-card h3 { margin-bottom: 0.5rem; }
.why-card p { color: var(--text-light); font-size: 0.95rem; }

/* ═══════════ PLANES ═══════════ */
.planes { padding: 6rem 0; background: var(--gray-1); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.plan {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  border: 2px solid var(--gray-2);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .25s;
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.plan-featured {
  border-color: var(--primary);
  box-shadow: 0 12px 36px rgba(108, 26, 212, 0.18);
  transform: scale(1.03);
  background: linear-gradient(180deg, #fff 0%, #faf6ff 100%);
}
.plan-featured:hover { transform: scale(1.03) translateY(-4px); }
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-cta);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(108,26,212,0.4);
}
.plan-head { margin-bottom: 1.2rem; }
.plan-head h3 { font-size: 1.5rem; }
.plan-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.3rem;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin: 1.2rem 0;
  flex-wrap: wrap;
}
.price-currency {
  font-size: 1.5rem;
  color: var(--text-light);
  font-weight: 700;
}
.price-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.03em;
}
.plan-featured .price-amount { color: var(--primary-dark); }
.price-unit {
  margin-left: 0.4rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.plan-features {
  list-style: none;
  margin: 1rem 0 1.8rem;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--text);
}
.plan-features li i {
  color: var(--success);
  margin-top: 0.3rem;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.plan-features .muted { color: var(--text-muted); }
.plan-features .muted i { color: var(--gray-3); }
.plan-features li strong { color: var(--primary-dark); }
.plan-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
}
.plans-extras {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(25, 135, 84, 0.08);
  border-radius: var(--radius);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.plans-extras i { color: var(--success); margin-right: 0.4rem; }

/* ═══════════ COMBO BLOCK ═══════════ */
.combo-block {
  max-width: 1100px;
  margin: 0 auto 3rem;
  background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
  border: 3px solid var(--accent);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(255, 193, 7, 0.18);
}
.combo-ribbon {
  background: var(--gradient-accent);
  color: var(--dark);
  padding: 0.6rem 1rem;
  text-align: center;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.combo-inner {
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.combo-products {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
}
.combo-prod {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.combo-prod i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.combo-prod h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.combo-prod p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.combo-prod small {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.combo-prod s {
  font-weight: 700;
  color: var(--danger);
}
.combo-plus {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
}
.combo-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.combo-stack {
  text-align: center;
}
.combo-anchor {
  font-size: 1.5rem;
  color: var(--text-muted);
  font-weight: 700;
}
.combo-anchor s { color: var(--text-muted); }
.combo-price {
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-top: 0.3rem;
}
.combo-price span {
  font-size: 1.8rem;
  vertical-align: top;
  color: var(--text-light);
  margin-right: 0.2rem;
}
.combo-savings {
  margin-top: 0.6rem;
  display: inline-block;
  background: var(--success);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
}
.combo-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}
.plans-or {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 2.5rem auto 2rem;
  letter-spacing: 0.05em;
}

@media (max-width: 880px) {
  .combo-inner { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem; }
  .combo-products { grid-template-columns: 1fr; }
  .combo-plus { transform: rotate(90deg); margin: 0 auto; }
  .combo-price { font-size: 3rem; }
}

/* ═══════════ TRIAL ═══════════ */
.trial { padding: 6rem 0; }
.trial-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.trial-content {
  padding: 3rem;
  color: #fff;
  background: var(--gradient-hero);
}
.trial-content h2 {
  color: #fff;
  margin: 1rem 0;
}
.trial-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.trial-features {
  list-style: none;
}
.trial-features li {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.4rem 0;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}
.trial-features i { color: var(--accent); }
.trial-form {
  padding: 3rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.trial-form h3 { margin-bottom: 0.5rem; }
.trial-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.trial-form label small {
  color: var(--text-muted);
  font-weight: 400;
}
.trial-form input {
  padding: 0.8rem 1rem;
  border: 2px solid var(--gray-2);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color .15s;
}
.trial-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108,26,212,0.15);
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ═══════════ FAQ ═══════════ */
.faq { padding: 6rem 0; background: var(--gray-1); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq details {
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  position: relative;
  padding-right: 3rem;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 0.85rem;
  transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.faq details p {
  padding: 0 1.5rem 1.4rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ═══════════ CTA FINAL ═══════════ */
.cta-final {
  background: var(--gradient-hero);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}
.cta-final h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.cta-final p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-col h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col a {
  display: block;
  padding: 0.3rem 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.footer-col a:hover { color: #fff; }
.footer-col p {
  font-size: 0.9rem;
  margin: 0.6rem 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  font-size: 0.85rem;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-payments {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-payments strong {
  background: #fff;
  color: var(--primary);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-weight: 800;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn-outline { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { order: -1; }
  .mockup { transform: none; max-width: 420px; }
  .trial-card { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-4px); }
}
@media (max-width: 600px) {
  .hero { padding: 3rem 0 4rem; }
  .container { padding: 0 16px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .features-grid, .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; padding-bottom: 2rem; }
  .footer-bottom .container { flex-direction: column; }
  .trial-content, .trial-form { padding: 2rem 1.5rem; }
  .plan { padding: 2rem 1.5rem; }
  .price-amount { font-size: 2.8rem; }
  .mock-stats { grid-template-columns: 1fr; }
}

/* ═══════════ TARGET PILLS (hero) ═══════════ */
.target-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 24px;
}
.target-pills .pill {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

/* ═══════════ AUDIENCE (¿Para quién es?) ═══════════ */
.audience {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.audience-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
.audience-card.highlight {
  background: linear-gradient(180deg, #fffbeb 0%, #fef9e7 100%);
  border: 2px solid #f59e0b;
}
.aud-icon {
  font-size: 48px;
  margin-bottom: 12px;
  line-height: 1;
}
.audience-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #111827;
}
.audience-card > p {
  color: #4b5563;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 16px;
}
.aud-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.aud-list li {
  padding: 5px 0;
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}
.aud-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f59e0b;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 14px;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .audience-grid { grid-template-columns: 1fr; }
}

/* ═══════════ PLANES 3 TIER (1 PC / 5 PCs / 20 PCs) ═══════════ */
.plans-features-note {
  text-align: center;
  background: #f0f9ff;
  border-left: 4px solid #0ea5e9;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
  color: #075985;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 32px;
}
.plans-3-tier {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 20px;
}
.plans-3-tier .plan {
  position: relative;
  display: flex;
  flex-direction: column;
}
.plans-3-tier .plan-featured {
  border: 2px solid #f59e0b;
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 60%);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.18);
  transform: scale(1.04);
  z-index: 1;
}
.plans-3-tier .plan-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: #fff;
  padding: 6px 18px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
  white-space: nowrap;
}
.plans-3-tier .plan-features {
  flex-grow: 1;
}
.plans-3-tier .plan-note {
  font-weight: 600;
  color: #f59e0b;
}
.plans-3-tier .plan:not(.plan-featured) .plan-note {
  color: #6b7280;
}
.plans-bulk {
  text-align: center;
  background: #fef3c7;
  border: 1px dashed #f59e0b;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  color: #78350f;
  max-width: 700px;
  margin: 32px auto 0;
}
.plans-bulk i { color: #f59e0b; margin-right: 6px; }

/* ═══════════ OPCIÓN SIN LICENCIA ═══════════ */
.plan-sinlicencia {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
  color: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  margin: 40px auto 0;
  max-width: 1000px;
  position: relative;
  box-shadow: 0 16px 40px rgba(67, 56, 202, 0.3);
}
.psl-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: #fbbf24;
  color: #1e1b4b;
  padding: 5px 14px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
}
.psl-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}
.psl-info h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
}
.psl-info h3 i { color: #fbbf24; margin-right: 8px; }
.psl-tagline {
  color: #c7d2fe;
  font-size: 14px;
  margin-bottom: 16px;
}
.psl-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.psl-features li {
  padding: 6px 0;
  font-size: 14px;
  color: #e0e7ff;
}
.psl-features li i.fa-check { color: #34d399; margin-right: 8px; }
.psl-features li i.fa-info-circle { color: #fbbf24; margin-right: 8px; }
.psl-cta {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 24px 20px;
  backdrop-filter: blur(10px);
}
.psl-price {
  margin-bottom: 16px;
  color: #fff;
}
.psl-currency {
  font-size: 22px;
  font-weight: 600;
  vertical-align: top;
  margin-right: 4px;
}
.psl-price strong {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}
.psl-unit {
  display: block;
  font-size: 13px;
  color: #c7d2fe;
  margin-top: 4px;
}
.psl-cta .btn {
  background: #fbbf24;
  color: #1e1b4b;
  border: none;
}
.psl-cta .btn:hover {
  background: #f59e0b;
}
.psl-note {
  font-size: 12px;
  color: #c7d2fe;
  margin-top: 12px;
}
@media (max-width: 760px) {
  .psl-grid { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .plans-3-tier { grid-template-columns: 1fr; }
  .plans-3-tier .plan-featured { transform: none; }
}

/* ═══════════ ANIMACIONES ═══════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.feature, .pain-card, .plan, .why-card, .step, .audience-card {
  animation: fadeUp .6s ease-out backwards;
}
