/*
 * Dojo Fácil — Landing / página de venta
 * Hoja de estilos estática y autocontenida (no la genera Tailwind).
 * Todo va prefijado con `lp-` y anidado bajo `.lp` para no colisionar con app.css.
 */

.lp {
  --brand-50: #eef1ff;
  --brand-100: #e0e5ff;
  --brand-200: #c7ccff;
  --brand-400: #818cf8;
  --brand-500: #6366f1;
  --brand-600: #4f46e5;
  --brand-700: #4338ca;
  --brand-800: #3730a3;
  --brand-900: #312e81;

  --ink: #0f172a;
  --ink-700: #1e293b;
  --body: #475569;
  --muted: #64748b;
  --faint: #94a3b8;
  --line: #e6e8f0;
  --line-soft: #eef1f6;

  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-mute: #f4f6fb;

  --gold: #f59e0b;
  --gold-600: #d97706;
  --success: #10b981;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 30px;

  --shadow-xs: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, .05), 0 1px 2px rgba(15, 23, 42, .04);
  --shadow-md: 0 14px 34px -18px rgba(15, 23, 42, .28);
  --shadow-lg: 0 30px 60px -24px rgba(49, 46, 129, .40);
  --shadow-brand: 0 18px 40px -16px rgba(79, 70, 229, .55);

  --maxw: 1160px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  color: var(--body);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: var(--bg);
}

.lp *,
.lp *::before,
.lp *::after { box-sizing: border-box; }

.lp img { max-width: 100%; display: block; }

/* ---------- Layout helpers ---------- */
.lp-wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.lp-section { padding-block: 96px; }
.lp-section--tight { padding-block: 64px; }
.lp-section--soft { background: var(--bg-soft); }
.lp-section--mute { background: var(--bg-mute); }

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--brand-600);
}
.lp-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-200));
}

.lp-head { max-width: 680px; margin-inline: auto; text-align: center; }
.lp-head .lp-eyebrow { margin-bottom: 16px; }
.lp-h2 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 800;
  color: var(--ink);
}
.lp-lead {
  margin: 0 auto;
  max-width: 620px;
  font-size: 1.12rem;
  color: var(--muted);
}

/* ---------- Buttons ---------- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: .98rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.lp-btn:focus-visible { outline: 3px solid var(--brand-200); outline-offset: 2px; }
.lp-btn svg { width: 18px; height: 18px; }

.lp-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  box-shadow: var(--shadow-brand);
}
.lp-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -14px rgba(79, 70, 229, .62); }

.lp-btn--ghost {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  box-shadow: var(--shadow-xs);
}
.lp-btn--ghost:hover { border-color: var(--brand-200); background: var(--brand-50); color: var(--brand-700); }

.lp-btn--light {
  color: var(--brand-700);
  background: #fff;
}
.lp-btn--light:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -18px rgba(2, 6, 23, .5); }

.lp-btn--outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .06);
}
.lp-btn--outline-light:hover { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .7); }

.lp-btn--lg { padding: 16px 28px; font-size: 1.05rem; border-radius: 14px; }
.lp-btn--block { width: 100%; }

/* ---------- Navbar ---------- */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.lp-nav.is-stuck { border-bottom-color: var(--line); box-shadow: 0 8px 30px -24px rgba(15, 23, 42, .5); }
.lp-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 1.16rem;
  letter-spacing: -.02em;
  white-space: nowrap;
  color: var(--ink);
  text-decoration: none;
}
.lp-brand__mark { flex: none; }
.lp-brand__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-800));
  box-shadow: var(--shadow-brand);
}
.lp-brand__mark svg { width: 22px; height: 22px; }

.lp-nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.lp-nav__links a {
  color: var(--ink-700);
  text-decoration: none;
  font-weight: 600;
  font-size: .96rem;
  transition: color .18s ease;
}
.lp-nav__links a:hover { color: var(--brand-600); }
.lp-nav__cta { display: flex; align-items: center; gap: 14px; }
.lp-nav__signin {
  color: var(--ink-700);
  text-decoration: none;
  font-weight: 700;
  font-size: .96rem;
}
.lp-nav__signin:hover { color: var(--brand-600); }
.lp-nav__toggle { display: none; }

/* ---------- Hero ---------- */
.lp-hero {
  position: relative;
  overflow: hidden;
  padding-block: 76px 92px;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(129, 140, 248, .22), transparent 60%),
    radial-gradient(760px 460px at 5% 8%, rgba(99, 102, 241, .14), transparent 55%),
    linear-gradient(180deg, #fbfbff, #ffffff 60%);
}
.lp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(79, 70, 229, .045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(79, 70, 229, .045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(720px 460px at 70% 20%, #000, transparent 75%);
  mask-image: radial-gradient(720px 460px at 70% 20%, #000, transparent 75%);
  pointer-events: none;
}
.lp-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
  gap: 56px;
}
/* Permite que las columnas del grid se encojan por debajo de su min-content
   (si no, el mockup fuerza el ancho y desborda en pantallas estrechas). */
.lp-hero__copy, .lp-hero__visual { min-width: 0; }
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 24px;
}
.lp-badge b {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand-700);
  font-weight: 700;
  font-size: .78rem;
}
.lp-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 1.4rem + 3.6vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -.032em;
  font-weight: 850;
  color: var(--ink);
}
.lp-hero h1 .lp-grad {
  background: linear-gradient(120deg, var(--brand-600), #8b5cf6 55%, var(--brand-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-hero__sub {
  margin: 0 0 30px;
  font-size: 1.18rem;
  max-width: 540px;
  color: var(--muted);
}
.lp-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.lp-hero__note {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .92rem;
  color: var(--muted);
}
.lp-hero__note svg { width: 18px; height: 18px; color: var(--success); flex: none; }

/* Hero stats */
.lp-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.lp-stat__num {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
}
.lp-stat__label { font-size: .88rem; color: var(--muted); }

/* ---------- Hero mockup ---------- */
.lp-mock {
  position: relative;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1600px) rotateY(-9deg) rotateX(3deg);
  transform-origin: center right;
}
.lp-mock__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-soft);
}
.lp-mock__bar span { width: 11px; height: 11px; border-radius: 50%; background: #d7dbe6; }
.lp-mock__bar span:nth-child(1) { background: #f87171; }
.lp-mock__bar span:nth-child(2) { background: #fbbf24; }
.lp-mock__bar span:nth-child(3) { background: #34d399; }
.lp-mock__bar em {
  margin-left: 10px;
  font-style: normal;
  font-size: .74rem;
  color: var(--faint);
  font-weight: 600;
}
.lp-mock__body { display: grid; grid-template-columns: 74px minmax(0, 1fr); min-height: 340px; }
.lp-mock__side {
  padding: 18px 14px;
  background: linear-gradient(180deg, var(--brand-800), var(--brand-900));
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.lp-mock__logo { width: 30px; height: 30px; border-radius: 9px; background: rgba(255, 255, 255, .18); }
.lp-mock__side i { height: 9px; border-radius: 5px; background: rgba(255, 255, 255, .16); display: block; }
.lp-mock__side i.on { background: rgba(255, 255, 255, .55); }
.lp-mock__main { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.lp-mock__stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.lp-mock__tile {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}
.lp-mock__tile b { display: block; font-size: 1.25rem; color: var(--ink); letter-spacing: -.02em; }
.lp-mock__tile span { font-size: .68rem; color: var(--muted); }
.lp-mock__tile s { display: block; height: 6px; width: 60%; border-radius: 4px; background: var(--brand-100); margin-top: 8px; text-decoration: none; }
.lp-mock__panel {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-mock__panel > u {
  text-decoration: none;
  font-size: .72rem;
  font-weight: 700;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.lp-mock__chart { display: flex; align-items: flex-end; gap: 10px; height: 96px; }
.lp-mock__chart i {
  flex: 1;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, var(--brand-400), var(--brand-600));
  opacity: .9;
}
/* Alturas de las barras del mini-gráfico (sin estilos inline por la CSP). */
.lp-mock__chart i:nth-child(1) { height: 40%; }
.lp-mock__chart i:nth-child(2) { height: 62%; }
.lp-mock__chart i:nth-child(3) { height: 48%; }
.lp-mock__chart i:nth-child(4) { height: 78%; }
.lp-mock__chart i:nth-child(5) { height: 66%; }
.lp-mock__chart i:nth-child(6) { height: 90%; }
.lp-mock__chart i:nth-child(7) { height: 54%; }
.lp-mock__belts { display: flex; gap: 7px; align-items: center; }
.lp-mock__belts i { width: 26px; height: 9px; border-radius: 3px; }
/* Colores de cinturón (blanco → negro). */
.lp-mock__belts i:nth-child(1) { background: #e2e8f0; }
.lp-mock__belts i:nth-child(2) { background: #facc15; }
.lp-mock__belts i:nth-child(3) { background: #f97316; }
.lp-mock__belts i:nth-child(4) { background: #16a34a; }
.lp-mock__belts i:nth-child(5) { background: #2563eb; }
.lp-mock__belts i:nth-child(6) { background: #78350f; }
.lp-mock__belts i:nth-child(7) { background: #111827; }
.lp-mock__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
}
.lp-mock__float svg { width: 30px; height: 30px; padding: 6px; border-radius: 9px; color: #fff; }
.lp-mock__float--a { top: 20px; left: -26px; }
.lp-mock__float--a svg { background: linear-gradient(135deg, #34d399, #059669); }
.lp-mock__float--b { bottom: 22px; right: -22px; }
.lp-mock__float--b svg { background: linear-gradient(135deg, var(--gold), var(--gold-600)); }
.lp-mock__float small { display: block; font-weight: 500; color: var(--muted); font-size: .72rem; }

/* ---------- Trust / disciplines ---------- */
.lp-trust { padding-block: 40px; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: #fff; }
.lp-trust__label { text-align: center; font-size: .86rem; color: var(--faint); font-weight: 600; margin-bottom: 22px; }
.lp-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.lp-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink-700);
}
.lp-chip svg { width: 17px; height: 17px; color: var(--brand-500); }

/* ---------- Features ---------- */
.lp-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.lp-feature {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.lp-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-100); }
.lp-feature__ico {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  margin-bottom: 18px;
  color: var(--brand-700);
  background: linear-gradient(135deg, var(--brand-50), #fff);
  border: 1px solid var(--brand-100);
}
.lp-feature__ico svg { width: 25px; height: 25px; }
.lp-feature h3 { margin: 0 0 8px; font-size: 1.16rem; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.lp-feature p { margin: 0; font-size: .98rem; color: var(--muted); }

/* ---------- Steps ---------- */
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; counter-reset: step; }
.lp-step { position: relative; padding: 30px 26px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.lp-step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  box-shadow: var(--shadow-brand);
  margin-bottom: 18px;
}
.lp-step h3 { margin: 0 0 7px; font-size: 1.14rem; color: var(--ink); font-weight: 700; }
.lp-step p { margin: 0; font-size: .97rem; color: var(--muted); }

/* ---------- Highlight band ---------- */
.lp-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 60px;
  background:
    radial-gradient(700px 340px at 88% -10%, rgba(129, 140, 248, .55), transparent 60%),
    linear-gradient(135deg, var(--brand-800), var(--brand-900) 70%);
  box-shadow: var(--shadow-lg);
}
.lp-band__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.lp-band .lp-eyebrow { color: var(--brand-200); }
.lp-band .lp-eyebrow::before { background: linear-gradient(90deg, #fff, transparent); }
.lp-band h2 { margin: 14px 0 14px; font-size: clamp(1.7rem, 1rem + 2.4vw, 2.4rem); line-height: 1.14; letter-spacing: -.02em; font-weight: 800; color: #fff; }
.lp-band p { margin: 0 0 26px; color: #d7d9f5; font-size: 1.08rem; max-width: 460px; }
.lp-band__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.lp-band__list li { display: flex; gap: 12px; align-items: flex-start; color: #e9eaff; font-size: 1rem; }
.lp-band__list svg { flex: none; width: 22px; height: 22px; color: #a5f3d0; margin-top: 1px; }
.lp-band__visual { display: grid; gap: 14px; }
.lp-glass {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(6px);
}
.lp-glass__ico {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, .14);
}
.lp-glass__ico svg { width: 24px; height: 24px; }
.lp-glass b { display: block; color: #fff; font-size: 1.02rem; }
.lp-glass span { font-size: .9rem; color: #cfd2f4; }

/* ---------- Pricing ---------- */
.lp-pricing__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 28px auto 0;
  padding: 5px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}
.lp-pricing__toggle button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: .93rem;
  color: var(--muted);
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}
.lp-pricing__toggle button.is-on { color: #fff; background: linear-gradient(135deg, var(--brand-500), var(--brand-700)); box-shadow: var(--shadow-brand); }
.lp-save {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  background: rgba(16, 185, 129, .16);
  color: #047857;
}
.lp-pricing__toggle button.is-on .lp-save { background: rgba(255, 255, 255, .22); color: #fff; }

.lp-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; align-items: start; }
.lp-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: transform .22s ease, box-shadow .22s ease;
}
.lp-plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.lp-plan--featured {
  border: 1.5px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--brand-400), var(--brand-700)) border-box;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.lp-plan--featured:hover { transform: translateY(-12px); }
.lp-plan__tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-600));
  box-shadow: 0 10px 22px -10px rgba(217, 119, 6, .8);
}
.lp-plan__name { font-size: 1.2rem; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.lp-plan__desc { margin: 6px 0 0; font-size: .93rem; color: var(--muted); min-height: 42px; }
.lp-plan__price { display: flex; align-items: baseline; gap: 4px; margin-top: 20px; }
.lp-plan__amount { font-size: 2.9rem; font-weight: 850; letter-spacing: -.03em; color: var(--ink); line-height: 1; }
.lp-plan__period { font-size: .98rem; color: var(--muted); font-weight: 600; }
.lp-plan__note { margin: 8px 0 0; font-size: .84rem; color: var(--faint); min-height: 20px; }
.lp-plan__cta { margin-top: 22px; }
.lp-plan__features { list-style: none; margin: 24px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line-soft); display: grid; gap: 13px; }
.lp-plan__features li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; color: var(--ink-700); }
.lp-plan__features svg { flex: none; width: 20px; height: 20px; color: var(--brand-600); margin-top: 1px; }
.lp-plan__features li.is-muted { color: var(--faint); }
.lp-plan__features li.is-muted svg { color: var(--faint); }
.lp-pricing__foot { margin-top: 30px; text-align: center; font-size: .92rem; color: var(--muted); }
.lp-pricing__foot a { color: var(--brand-600); font-weight: 600; text-decoration: none; }
.lp-pricing__foot a:hover { text-decoration: underline; }

/* ---------- Testimonials ---------- */
.lp-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.lp-quote {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}
.lp-quote__stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--gold); }
.lp-quote__stars svg { width: 18px; height: 18px; }
.lp-quote p { margin: 0 0 22px; font-size: 1.02rem; color: var(--ink-700); flex: 1; }
.lp-quote__who { display: flex; align-items: center; gap: 12px; }
.lp-quote__av {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-800));
}
.lp-quote__who b { display: block; font-size: .96rem; color: var(--ink); }
.lp-quote__who span { font-size: .84rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.lp-faq { max-width: 780px; margin: 48px auto 0; display: grid; gap: 14px; }
.lp-faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.lp-faq details[open] { border-color: var(--brand-200); box-shadow: var(--shadow-sm); }
.lp-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.04rem;
  color: var(--ink);
  list-style: none;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: "";
  flex: none;
  width: 20px;
  height: 20px;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234f46e5' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  transition: transform .25s ease;
}
.lp-faq details[open] summary::after { transform: rotate(45deg); }
.lp-faq .lp-faq__a { padding: 0 22px 22px; color: var(--muted); font-size: 1rem; }

/* ---------- Final CTA ---------- */
.lp-final { text-align: center; }
.lp-final__card {
  position: relative;
  overflow: hidden;
  padding: 66px 40px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(600px 300px at 15% -20%, rgba(139, 92, 246, .5), transparent 60%),
    radial-gradient(600px 300px at 85% 120%, rgba(99, 102, 241, .5), transparent 60%),
    linear-gradient(135deg, var(--brand-700), var(--brand-900));
  box-shadow: var(--shadow-lg);
}
.lp-final h2 { margin: 0 0 14px; font-size: clamp(1.9rem, 1.1rem + 2.8vw, 2.7rem); font-weight: 850; letter-spacing: -.02em; color: #fff; }
.lp-final p { margin: 0 auto 30px; max-width: 520px; font-size: 1.12rem; color: #dcdcfb; }
.lp-final__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Footer ---------- */
.lp-footer { background: #0b1020; color: #aeb4c8; padding-block: 60px 30px; }
.lp-footer__grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; }
.lp-footer .lp-brand { color: #fff; }
.lp-footer__about { max-width: 300px; margin: 16px 0 0; font-size: .95rem; color: #8b91a7; }
.lp-footer__col h4 { margin: 0 0 16px; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: #8891ab; }
.lp-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.lp-footer__col a { color: #aeb4c8; text-decoration: none; font-size: .95rem; transition: color .18s ease; }
.lp-footer__col a:hover { color: #fff; }
.lp-footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .88rem;
  color: #7a8199;
}
.lp-footer__bar nav { display: flex; gap: 20px; flex-wrap: wrap; }
.lp-footer__bar a { color: #7a8199; text-decoration: none; }
.lp-footer__bar a:hover { color: #fff; }

/* ---------- Reveal on scroll ----------
   La clase .lp-reveal se conserva en el marcado como punto de enganche, pero no
   oculta ni transforma el contenido: la landing debe verse siempre, sin depender
   de animaciones. (Se retiró el efecto para evitar contenido invisible si una
   transición no llega a ejecutarse.) */

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .lp-hero__grid { grid-template-columns: minmax(0, 1fr); gap: 44px; }
  .lp-mock { transform: none; max-width: 520px; margin-inline: auto; }
  .lp-mock__float--a { left: 8px; }
  .lp-mock__float--b { right: 8px; }
  .lp-band__grid { grid-template-columns: 1fr; gap: 32px; }
  .lp-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 820px) {
  .lp-nav__links { display: none; }
  .lp-nav__toggle {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
  }
  .lp-nav__links.is-open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px 24px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .lp-nav__links.is-open a { padding: 12px 4px; border-bottom: 1px solid var(--line-soft); }
  .lp-features, .lp-steps, .lp-plans, .lp-quotes { grid-template-columns: 1fr; }
  .lp-plan--featured { transform: none; }
  .lp-plan--featured:hover { transform: translateY(-4px); }
  .lp-section { padding-block: 68px; }
  .lp-band { padding: 40px 28px; }
  .lp-final__card { padding: 48px 26px; }
}

@media (max-width: 560px) {
  .lp { font-size: 16px; }
  .lp-wrap { padding-inline: 18px; }
  .lp-nav__inner { gap: 12px; }
  .lp-nav__cta { gap: 10px; }
  .lp-nav__cta .lp-btn { padding: 11px 15px; font-size: .92rem; }
  .lp-hero__stats { gap: 22px; }
  .lp-footer__grid { grid-template-columns: 1fr; }
  .lp-footer__bar { flex-direction: column; align-items: flex-start; }
  .lp-nav__signin { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .lp * { animation: none !important; transition: none !important; }
}
