/* ═══════════════════════════════════════════════════
   LP v2 — Landing Page variant (alexkrol-inspired)
   Light theme adaptation for Expert Level
   ═══════════════════════════════════════════════════ */

.lp2 {
  --lp2-accent: var(--blue);
  --lp2-accent2: var(--purple);
  --lp2-text: var(--dark);
  --lp2-body: var(--body);
  --lp2-muted: var(--muted);
  --lp2-bg: var(--white);
  --lp2-soft: var(--light);
  --lp2-softer: var(--blue-lt);
  --lp2-border: var(--border);
  --lp2-card: var(--white);
  --lp2-gap: 80px;
}

/* ── HERO ──────────────────────────────── */
.lp2-hero {
  padding: 48px 0 56px;
  background: linear-gradient(165deg, #f0f4ff 0%, #e8eeff 40%, #f8fafc 100%);
  border-bottom: 1px solid var(--lp2-border);
}
.lp2-hero .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.lp2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.16);
  color: var(--lp2-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.lp2-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.1;
  color: var(--lp2-text);
}
.lp2-hero h1 span {
  color: var(--lp2-accent);
}
.lp2-hero-desc {
  margin: 0 0 24px;
  max-width: 600px;
  color: var(--lp2-body);
  font-size: 1.06rem;
  line-height: 1.6;
}
.lp2-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.lp2-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--lp2-border);
  color: var(--lp2-text);
  background: var(--lp2-bg);
  font-weight: 700;
  font-size: 0.84rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}
.lp2-btn-outline:hover {
  border-color: var(--lp2-accent);
  color: var(--lp2-accent);
}
.lp2-hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.lp2-hero-stat {
  text-align: left;
}
.lp2-hero-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--lp2-accent);
  line-height: 1.2;
}
.lp2-hero-stat span {
  font-size: 0.85rem;
  color: var(--lp2-muted);
}
.lp2-hero-panel {
  background: var(--lp2-card);
  border: 1px solid var(--lp2-border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.lp2-hero-panel h3 {
  font-size: 1.1rem;
  margin: 0 0 16px;
  color: var(--lp2-text);
}
.lp2-panel-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.lp2-panel-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--lp2-body);
  font-size: 0.95rem;
  line-height: 1.5;
}
.lp2-panel-list .li-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lp2-softer);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.lp2-panel-list .li-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--lp2-accent);
  fill: none;
  stroke-width: 2.5;
}

/* ── SECTIONS SHARED ───────────────────── */
.lp2-section {
  padding: var(--lp2-gap) 0;
}
.lp2-section--soft {
  background: var(--lp2-soft);
}
.lp2-section--softer {
  background: linear-gradient(180deg, #f0f4ff 0%, #e8eeff 100%);
}
.lp2-section--dark {
  background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 100%);
  color: #fff;
}
.lp2-section--dark .lp2-subtext,
.lp2-section--dark p,
.lp2-section--dark li {
  color: rgba(255,255,255,0.78);
}
.lp2-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}
.lp2-heading--left {
  text-align: left;
  margin: 0 0 36px;
}
.lp2-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp2-accent);
  margin-bottom: 10px;
}
.lp2-section--dark .lp2-tag {
  color: rgba(255,255,255,0.6);
}
.lp2-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.15;
  color: var(--lp2-text);
}
.lp2-section--dark .lp2-heading h2 {
  color: #fff;
}
.lp2-heading h2 span {
  color: var(--lp2-accent);
}
.lp2-section--dark .lp2-heading h2 span {
  color: var(--blue-l);
}
.lp2-subtext {
  color: var(--lp2-muted);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ── STATS ─────────────────────────────── */
.lp2-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.lp2-stat-card {
  background: var(--lp2-card);
  border: 1px solid var(--lp2-border);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
}
.lp2-stat-card strong {
  display: block;
  font-size: 1.7rem;
  color: var(--lp2-accent);
  margin-bottom: 4px;
}
.lp2-stat-card span {
  color: var(--lp2-muted);
  font-size: 0.92rem;
}
.lp2-quote {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-style: italic;
  color: var(--lp2-body);
  font-size: 1.02rem;
  padding: 20px 0 0;
  border-top: 1px solid var(--lp2-border);
}

/* ── OUTCOMES (numbered cards) ─────────── */
.lp2-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp2-outcome {
  background: var(--lp2-card);
  border: 1px solid var(--lp2-border);
  border-radius: 16px;
  padding: 24px 20px;
  transition: var(--transition);
}
.lp2-outcome:hover {
  box-shadow: var(--shadow-card);
  border-color: rgba(37,99,235,0.3);
}
.lp2-outcome-num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--lp2-accent);
  opacity: 0.6;
  margin-bottom: 10px;
}
.lp2-outcome h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: var(--lp2-text);
}
.lp2-outcome p {
  color: var(--lp2-body);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ── DIFFERENTIATORS (what this isn't) ─── */
.lp2-diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.lp2-diff {
  background: var(--lp2-card);
  border: 1px solid var(--lp2-border);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.lp2-diff-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--lp2-softer);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp2-diff-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--lp2-accent);
  fill: none;
  stroke-width: 2;
}
.lp2-diff h3 {
  font-size: 1rem;
  margin: 0 0 6px;
  color: var(--lp2-text);
}
.lp2-diff p {
  color: var(--lp2-body);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ── FOR WHOM ──────────────────────────── */
.lp2-for-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lp2-for-card {
  background: var(--lp2-card);
  border: 1px solid var(--lp2-border);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.lp2-for-card:hover {
  box-shadow: var(--shadow-card);
  border-color: rgba(37,99,235,0.3);
}
.lp2-for-ic {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--lp2-softer);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.lp2-for-ic svg {
  width: 24px;
  height: 24px;
  stroke: var(--lp2-accent);
  fill: none;
  stroke-width: 2;
}
.lp2-for-card h3 {
  font-size: 0.98rem;
  margin: 0 0 8px;
  color: var(--lp2-text);
}
.lp2-for-card p {
  color: var(--lp2-body);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ── STEPS / HOW IT WORKS ──────────────── */
.lp2-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  counter-reset: lp2step;
}
.lp2-step {
  position: relative;
  background: var(--lp2-card);
  border: 1px solid var(--lp2-border);
  border-radius: 16px;
  padding: 28px 22px 24px;
  counter-increment: lp2step;
}
.lp2-step::before {
  content: counter(lp2step, decimal-leading-zero);
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--lp2-accent);
  opacity: 0.5;
  margin-bottom: 12px;
}
.lp2-step h3 {
  font-size: 1.02rem;
  margin: 0 0 8px;
  color: var(--lp2-text);
}
.lp2-step p {
  color: var(--lp2-body);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ── FAQ (reuse existing .faq styles) ──── */

/* ── MID-CTA BANNER ────────────────────── */
.lp2-banner {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1a2744 50%, var(--blue) 100%);
  text-align: center;
  color: #fff;
}
.lp2-banner h2 {
  color: #fff;
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.lp2-banner p {
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto 22px;
}
.lp2-banner .btn-primary {
  padding: 13px 28px;
  font-size: 0.92rem;
}

/* ── RESPONSIVE ────────────────────────── */
@media (max-width: 1024px) {
  .lp2-hero .container {
    grid-template-columns: 1fr;
  }
  .lp2-hero-panel {
    max-width: 520px;
  }
  .lp2-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp2-outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp2-for-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .lp2 {
    --lp2-gap: 56px;
  }
  .lp2-hero {
    padding: 28px 0 36px;
  }
  .lp2-hero h1 {
    font-size: 1.7rem;
  }
  .lp2-hero-cta {
    flex-direction: column;
  }
  .lp2-hero-cta .btn,
  .lp2-hero-cta .lp2-btn-outline {
    width: 100%;
    justify-content: center;
  }
  .lp2-hero-stats {
    gap: 16px;
  }
  .lp2-stats-grid,
  .lp2-outcomes-grid,
  .lp2-diff-grid,
  .lp2-for-grid {
    grid-template-columns: 1fr;
  }
  .lp2-steps {
    grid-template-columns: 1fr;
  }
}
