* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif; }
body { background: radial-gradient(circle at 10% 0%, #f7fbff 0%, #edf4f8 55%, #e7f0f7 100%); color: #0f1c2a; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; }

.min-h-screen { min-height: 100vh; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.max-w-md { max-width: 28rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-md { max-width: 28rem; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

.rounded-3xl { border-radius: 1.5rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }

.bg-white { background: #fff; }
.bg-white\/90 { background: rgba(255,255,255,0.9); }
.bg-wash { background: #edf4f8; }
.bg-ink { background: #0f1c2a; }
.bg-slate { background: #3b5363; }
.bg-ocean { background: #0f6e8c; }
.bg-emerald-50 { background: #ecfdf5; }
.bg-red-50 { background: #fef2f2; }
.bg-slate-50 { background: #f8fafc; }
.bg-slate-100 { background: #f1f5f9; }
.from-sand { }
.to-mist { }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, #f6f8fb, #eaf2f7); }

.text-white { color: #fff; }
.text-ink { color: #0f1c2a; }
.text-slate { color: #3b5363; }
.text-ocean { color: #0f6e8c; }
.text-emerald-700 { color: #047857; }
.text-red-700 { color: #b91c1c; }
.text-slate-300 { color: #cbd5e1; }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.1em; }

.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-24 { padding-bottom: 6rem; }
.pr-3 { padding-right: 0.75rem; }
.pr-4 { padding-right: 1rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }

.border { border: 1px solid #e2e8f0; }
.border-b { border-bottom: 1px solid #e2e8f0; }
.border-t { border-top: 1px solid #e2e8f0; }
.border-slate-100 { border-color: #f1f5f9; }
.border-slate-200 { border-color: #e2e8f0; }
.border-red-200 { border-color: #fecaca; }
.border-emerald-100 { border-color: #d1fae5; }
.border-emerald-200 { border-color: #a7f3d0; }

.shadow-sm { box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08); }
.shadow-card { box-shadow: 0 20px 50px -24px rgba(15, 110, 140, 0.45); }

.sticky { position: sticky; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.z-20 { z-index: 20; }

.overflow-x-auto { overflow-x: auto; }
.outline-none { outline: none; }
.transition { transition: all 0.2s ease; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

.hover\:bg-ink:hover { background: #0f1c2a; }
.hover\:bg-slate:hover { background: #3b5363; }

.focus\:border-ocean:focus { border-color: #0f6e8c; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(15,110,140,0.2); }
.focus\:ring-ocean\/20:focus { box-shadow: 0 0 0 2px rgba(15,110,140,0.2); }

@media (min-width: 640px) {
  .sm\:hidden { display: none; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:pb-6 { padding-bottom: 1.5rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.app-header__logo,
.auth-header__logo {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 10px;
}

.adm-shell {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 100vh;
  background: #ecf3f8;
}

.adm-sidebar {
  background: linear-gradient(180deg, #0f1e2d 0%, #13293d 100%);
  color: #e4eff8;
  padding: 24px 18px;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.adm-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.adm-brand__logo,
.adm-brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}

.adm-brand__logo { object-fit: cover; }

.adm-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f6e8c, #23b6dc);
  color: #fff;
  font-weight: 800;
}

.adm-brand__name {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #87cce1;
  font-weight: 700;
}

.adm-brand__panel {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-top: 1px;
}

.adm-user {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 14px;
  font-size: 0.82rem;
  line-height: 1.5;
}

.adm-user strong {
  color: #fff;
  font-size: 0.9rem;
}

.adm-nav {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.adm-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 10px 11px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  color: #d9e8f5;
  text-decoration: none;
  transition: all 0.18s ease;
}

.adm-nav a svg {
  width: 17px;
  height: 17px;
  opacity: 0.9;
}

.adm-nav a:hover,
.adm-nav a.adm-nav__active {
  background: rgba(35, 182, 220, 0.16);
  border-color: rgba(35, 182, 220, 0.38);
  color: #fff;
}

.adm-actions {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.adm-btn {
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.86rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.adm-btn--logout {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.22);
  cursor: pointer;
}

.adm-main { padding: 22px 28px; }

.adm-topbar {
  background: #fff;
  border: 1px solid #dce7ef;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 14px;
  box-shadow: 0 12px 30px -24px rgba(16, 39, 61, 0.45);
}

.adm-topbar h1 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.adm-topbar p {
  margin: 4px 0 0;
  color: #4d6374;
  font-size: 0.88rem;
}

.adm-logo-preview {
  height: 64px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 6px;
  background: #fff;
}

@media (max-width: 980px) {
  .adm-shell { grid-template-columns: 1fr; }
  .adm-sidebar { position: static; height: auto; }
  .adm-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .adm-main { padding: 16px; }
}

/* ============================================================
   LANDING PAGE STYLES — v2  (Plus Jakarta Sans + photo bgs)
   ============================================================ */

/* --- Design tokens --- */
:root {
  --c-ink:     #0d1b27;
  --c-slate:   #364d5e;
  --c-muted:   #637c8e;
  --c-ocean:   #0d6e8a;
  --c-ocean-d: #0a5570;
  --c-ocean-l: #1aa8ce;
  --c-wash:    #eef5f9;
  --c-white:   #ffffff;
  --c-border:  #d5e5ee;
  --radius-lg:   0.75rem;
  --radius-xl:   1rem;
  --radius-2xl:  1.5rem;
  --radius-3xl:  2rem;
  --radius-full: 9999px;
  --shadow-sm:   0 1px 3px rgba(13,27,39,0.07);
  --shadow-card: 0 4px 20px -4px rgba(13,27,39,0.10), 0 1px 4px rgba(13,27,39,0.05);
  --shadow-lg:   0 16px 48px -12px rgba(13,27,39,0.18);
  --shadow-xl:   0 24px 64px -16px rgba(13,27,39,0.22);
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.lp-body {
  font-family: var(--font-sans);
  background: var(--c-white);
  color: var(--c-ink);
  -webkit-font-smoothing: antialiased;
}

.lp-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===================== SCROLL REVEAL ===================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="100"] { transition-delay: 0.10s; }
[data-reveal-delay="200"] { transition-delay: 0.20s; }
[data-reveal-delay="300"] { transition-delay: 0.30s; }
[data-reveal-delay="400"] { transition-delay: 0.40s; }
[data-reveal-delay="500"] { transition-delay: 0.50s; }

/* ===================== NAVBAR ===================== */
.lp-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow 0.2s;
  font-family: var(--font-sans);
}
.lp-nav.scrolled { box-shadow: 0 2px 20px rgba(13,27,39,0.08); }
.lp-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem; gap: 1rem;
}
.lp-nav__brand {
  display: flex; align-items: center; gap: 0.625rem;
  text-decoration: none; color: var(--c-ink); flex-shrink: 0;
}
.lp-nav__brand-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--c-ocean) 0%, var(--c-ocean-l) 100%);
  color: #fff; font-weight: 800; font-size: 1rem; font-family: var(--font-sans);
}
.lp-nav__brand-logo {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.lp-nav__brand-icon--sm { width: 34px; height: 34px; font-size: 0.9rem; }
.lp-nav__brand-text { font-weight: 700; font-size: 1rem; line-height: 1.2; }
.lp-nav__brand-text em { font-style: normal; color: var(--c-ocean); }
.lp-nav__menu { display: flex; align-items: center; gap: 0.25rem; }
.lp-nav__link {
  padding: 0.5rem 0.875rem; border-radius: var(--radius-full);
  font-size: 0.875rem; font-weight: 500; text-decoration: none;
  color: var(--c-slate); transition: background 0.15s, color 0.15s; white-space: nowrap;
}
.lp-nav__link:hover { background: var(--c-wash); color: var(--c-ink); }
.lp-nav__link--outline {
  border: 1.5px solid var(--c-border); color: var(--c-ink); font-weight: 600;
}
.lp-nav__link--outline:hover { border-color: var(--c-ocean); color: var(--c-ocean); background: transparent; }
.lp-nav__link--solid { background: var(--c-ocean); color: #fff !important; font-weight: 600; }
.lp-nav__link--solid:hover { background: var(--c-ocean-d); }
.lp-nav__burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px; border: none;
  background: transparent; cursor: pointer; padding: 8px; border-radius: 8px;
}
.lp-nav__burger span {
  display: block; width: 100%; height: 2px; background: var(--c-ink);
  border-radius: 2px; transition: transform 0.25s, opacity 0.25s;
}
.lp-nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.lp-nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ===================== */
.lp-hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  overflow: hidden; padding: 5rem 0;
  background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80') center 35%/cover no-repeat;
}
.lp-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(8,18,28,0.90) 0%, rgba(8,50,72,0.78) 50%, rgba(8,18,28,0.85) 100%);
}
.lp-hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: center;
}
.lp-hero__content { display: flex; flex-direction: column; gap: 1.75rem; }
.lp-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.10); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.01em; width: fit-content;
}
.lp-badge__dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.8); flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  50%      { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
.lp-hero__headline {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.025em; color: #fff; margin: 0;
}
.lp-hero__headline--accent {
  background: linear-gradient(135deg, #52daf2 0%, #a8f0fc 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lp-hero__sub {
  font-size: 1.1rem; line-height: 1.78; color: rgba(255,255,255,0.72);
  margin: 0; max-width: 520px;
}
.lp-hero__actions { display: flex; flex-wrap: wrap; gap: 0.875rem; }
.lp-hero__trust { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.25rem; }
.lp-hero__trust-avatars { display: flex; }
.lp-hero__trust-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.85); margin-left: -8px;
  font-size: 0.65rem; font-weight: 800; display: flex;
  align-items: center; justify-content: center; color: #fff; flex-shrink: 0;
}
.lp-hero__trust-avatar:first-child { margin-left: 0; }
.lp-hero__trust-avatar--a { background: linear-gradient(135deg,#0d6e8a,#1aa8ce); }
.lp-hero__trust-avatar--b { background: linear-gradient(135deg,#7c3aed,#a78bfa); }
.lp-hero__trust-avatar--c { background: linear-gradient(135deg,#16a34a,#4ade80); }
.lp-hero__trust-avatar--d { background: linear-gradient(135deg,#d97706,#fbbf24); }
.lp-hero__trust-text { font-size: 0.78rem; color: rgba(255,255,255,0.65); }
.lp-hero__trust-text strong { color: rgba(255,255,255,0.9); font-weight: 700; }

/* Hero side panel */
.lp-hero__visual { display: flex; flex-direction: column; gap: 1rem; }
.lp-glass-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-2xl); padding: 1.5rem; color: #fff;
}
.lp-glass-card--sm { padding: 1rem 1.25rem; border-radius: var(--radius-xl); }
.lp-session-card { display: flex; flex-direction: column; gap: 1rem; }
.lp-session-card__live {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.72rem; font-weight: 700; color: #4ade80;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.lp-session-card__live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.3); animation: pulse-live 2s infinite; flex-shrink: 0;
}
@keyframes pulse-live {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.3); }
  50%      { box-shadow: 0 0 0 7px rgba(34,197,94,0.06); }
}
.lp-session-card__title { font-size: 1.05rem; font-weight: 700; margin: 0; line-height: 1.3; }
.lp-session-card__meta {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.6);
}
.lp-session-card__divider { color: rgba(255,255,255,0.25); }
.lp-session-card__students {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.65);
}
.lp-mini-avatars { display: flex; }
.lp-mini-avatar {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.45); margin-left: -6px;
  font-size: 0.58rem; font-weight: 700; display: flex;
  align-items: center; justify-content: center; color: #fff;
}
.lp-mini-avatar:first-child { margin-left: 0; }
.lp-mini-avatar--a { background: linear-gradient(135deg,#0d6e8a,#1aa8ce); }
.lp-mini-avatar--b { background: linear-gradient(135deg,#7c3aed,#a78bfa); }
.lp-mini-avatar--c { background: linear-gradient(135deg,#16a34a,#4ade80); }
.lp-stats-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.lp-stat-mini {
  display: flex; flex-direction: column; gap: 0.125rem; padding: 0.875rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
}
.lp-stat-mini__num { font-size: 1.375rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.lp-stat-mini__label { font-size: 0.68rem; color: rgba(255,255,255,0.5); font-weight: 500; }

/* ===================== BUTTONS ===================== */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.375rem;
  border-radius: var(--radius-full); font-family: var(--font-sans); font-weight: 600;
  text-decoration: none; border: 2px solid transparent; cursor: pointer; letter-spacing: -0.01em;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s, transform 0.1s;
  white-space: nowrap;
}
.lp-btn:active { transform: scale(0.97); }
.lp-btn--lg { padding: 0.875rem 2.125rem; font-size: 1rem; }
.lp-btn--md { padding: 0.65rem 1.5rem; font-size: 0.875rem; }
.lp-btn--sm { padding: 0.45rem 1.125rem; font-size: 0.8rem; }
.lp-btn--primary { background: var(--c-ocean); color: #fff; }
.lp-btn--primary:hover { background: var(--c-ocean-d); box-shadow: 0 4px 20px rgba(13,110,138,0.4); }
.lp-btn--ghost { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.3); backdrop-filter: blur(6px); }
.lp-btn--ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); }
.lp-btn--white { background: #fff; color: var(--c-ocean); font-weight: 700; }
.lp-btn--white:hover { background: #f0fbff; box-shadow: 0 4px 20px rgba(255,255,255,0.2); }
.lp-btn--ghost-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.lp-btn--ghost-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.lp-btn--outline-dark { background: transparent; border-color: var(--c-border); color: var(--c-ink); font-weight: 600; }
.lp-btn--outline-dark:hover { border-color: var(--c-ocean); color: var(--c-ocean); background: rgba(13,110,138,0.04); }

/* ===================== STATS STRIP ===================== */
.lp-stats {
  background: var(--c-white);
  border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border);
}
.lp-stats__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.lp-stats__item {
  display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
  padding: 2.25rem 1rem; border-right: 1px solid var(--c-border);
  transition: background 0.15s;
}
.lp-stats__item:last-child { border-right: none; }
.lp-stats__item:hover { background: var(--c-wash); }
.lp-stats__item strong { font-size: 2.125rem; font-weight: 800; color: var(--c-ocean); letter-spacing: -0.03em; }
.lp-stats__item span { font-size: 0.78rem; color: var(--c-muted); font-weight: 500; }

/* ===================== SECTIONS ===================== */
.lp-section { padding: 5.5rem 0; }
.lp-section--alt { background: var(--c-wash); }
.lp-section__head {
  text-align: center; max-width: 620px; margin: 0 auto 3.5rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.lp-eyebrow {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-ocean);
}
.lp-section__title {
  font-size: clamp(1.65rem, 3vw, 2.5rem); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.15; margin: 0; color: var(--c-ink);
}
.lp-section__sub { font-size: 1rem; line-height: 1.75; color: var(--c-slate); margin: 0; }

/* ===================== FEATURES ===================== */
.lp-features__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.lp-feature-card {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--radius-2xl); padding: 1.875rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.lp-feature-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; opacity: 0; transition: opacity 0.25s;
}
.lp-feature-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); border-color: transparent; }
.lp-feature-card:hover::after { opacity: 1; }
.lp-feature-card:nth-child(1)::after,.lp-feature-card:nth-child(4)::after { background: linear-gradient(90deg,var(--c-ocean),var(--c-ocean-l)); }
.lp-feature-card:nth-child(2)::after,.lp-feature-card:nth-child(5)::after { background: linear-gradient(90deg,#16a34a,#4ade80); }
.lp-feature-card:nth-child(3)::after,.lp-feature-card:nth-child(6)::after { background: linear-gradient(90deg,#7c3aed,#a78bfa); }
.lp-feature-card h3 { font-size: 1rem; font-weight: 700; margin: 0; color: var(--c-ink); }
.lp-feature-card p  { font-size: 0.875rem; line-height: 1.7; color: var(--c-slate); margin: 0; }
.lp-feature-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lp-feature-card__icon--blue   { background: #dbeafe; color: #1d4ed8; }
.lp-feature-card__icon--green  { background: #dcfce7; color: #166534; }
.lp-feature-card__icon--purple { background: #ede9fe; color: #5b21b6; }
.lp-feature-card__icon--orange { background: #ffedd5; color: #9a3412; }
.lp-feature-card__icon--teal   { background: #ccfbf1; color: #0f766e; }
.lp-feature-card__icon--rose   { background: #ffe4e6; color: #9f1239; }

/* ===================== PROGRAMS ===================== */
.lp-programs__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.lp-program-card {
  background: var(--c-white); border-radius: var(--radius-2xl); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s; border: 1px solid transparent;
}
.lp-program-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.lp-program-card__header {
  padding: 2rem 1.875rem 1.375rem; position: relative; overflow: hidden;
  min-height: 130px; display: flex; flex-direction: column; justify-content: flex-end; gap: 0.5rem;
}
.lp-program-card--blue .lp-program-card__header   { background: linear-gradient(140deg,#071828 0%,#0d6e8a 100%); }
.lp-program-card--green .lp-program-card__header  { background: linear-gradient(140deg,#052010 0%,#16a34a 100%); }
.lp-program-card--purple .lp-program-card__header { background: linear-gradient(140deg,#150e30 0%,#7c3aed 100%); }
.lp-program-card__badge {
  display: inline-block; padding: 0.25rem 0.625rem; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); width: fit-content; position: relative; z-index: 1;
}
.lp-program-card__title {
  font-size: 1.2rem; font-weight: 800; margin: 0; color: #fff;
  position: relative; z-index: 1; line-height: 1.25;
}
.lp-program-card__body {
  padding: 1.375rem 1.875rem; flex: 1; display: flex; flex-direction: column; gap: 1rem;
}
.lp-program-card__desc { font-size: 0.875rem; line-height: 1.65; color: var(--c-slate); margin: 0; }
.lp-program-card__features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.lp-program-card__features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--c-slate); }
.lp-program-card__features li::before {
  content: ''; width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23dcfce7'/%3E%3Cpath d='M5 8.5l2 2 4-4.5' stroke='%23166534' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/cover no-repeat;
}
.lp-program-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.125rem 1.875rem; border-top: 1px solid var(--c-border);
}
.lp-program-card__price { display: flex; align-items: baseline; gap: 0.2rem; }
.lp-program-card__price-curr { font-size: 0.72rem; font-weight: 700; color: var(--c-muted); }
.lp-program-card__price-num  { font-size: 1.5rem; font-weight: 800; color: var(--c-ink); letter-spacing: -0.03em; }
.lp-program-card__price-period { font-size: 0.72rem; color: var(--c-muted); }
.lp-programs__empty { text-align: center; padding: 3rem; color: var(--c-slate); }
.lp-programs__empty a { color: var(--c-ocean); font-weight: 600; }

/* ===================== AUDIENCE ===================== */
.lp-audience__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.lp-audience-card {
  display: flex; flex-direction: column; gap: 1.125rem; padding: 2rem 1.75rem;
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--radius-2xl); text-align: center; align-items: center;
  transition: box-shadow 0.22s, transform 0.22s;
}
.lp-audience-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.lp-audience-card__icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--c-wash); display: flex; align-items: center; justify-content: center;
  font-size: 2.25rem; flex-shrink: 0;
}
.lp-audience-card h3 { font-size: 1.05rem; font-weight: 700; margin: 0; color: var(--c-ink); }
.lp-audience-card p  { font-size: 0.875rem; line-height: 1.65; color: var(--c-slate); margin: 0; }

/* ===================== TESTIMONIALS ===================== */
.lp-testimonials__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.lp-testimonial {
  display: flex; flex-direction: column; gap: 1.25rem; padding: 1.875rem;
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--radius-2xl); position: relative;
  transition: box-shadow 0.22s, transform 0.22s;
}
.lp-testimonial:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.lp-testimonial__quote {
  position: absolute; top: 1.25rem; right: 1.5rem;
  font-size: 4rem; line-height: 1; color: var(--c-ocean); opacity: 0.08;
  font-family: Georgia, serif; pointer-events: none; user-select: none;
}
.lp-testimonial__stars { display: flex; gap: 2px; }
.lp-testimonial__star { color: #f59e0b; font-size: 0.875rem; }
.lp-testimonial__body {
  font-size: 0.9rem; line-height: 1.78; color: var(--c-slate); margin: 0; font-style: italic; flex: 1;
}
.lp-testimonial__author { display: flex; align-items: center; gap: 0.875rem; }
.lp-testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 800; color: #fff;
}
.lp-testimonial__avatar--a { background: linear-gradient(135deg,#0d6e8a,#1aa8ce); }
.lp-testimonial__avatar--b { background: linear-gradient(135deg,#7c3aed,#a78bfa); }
.lp-testimonial__avatar--c { background: linear-gradient(135deg,#16a34a,#4ade80); }
.lp-testimonial__name { font-size: 0.9rem; font-weight: 700; color: var(--c-ink); margin: 0 0 0.1rem; }
.lp-testimonial__prog { font-size: 0.72rem; color: var(--c-muted); margin: 0; }

/* ===================== HOW IT WORKS ===================== */
.lp-steps {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: flex-start; justify-content: center; gap: 0;
}
.lp-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 1.25rem; flex: 1; max-width: 300px;
}
.lp-step__connector {
  flex-shrink: 0; width: 80px; height: 2px; margin-top: 30px;
  background: repeating-linear-gradient(90deg,var(--c-border) 0,var(--c-border) 6px,transparent 6px,transparent 14px);
}
.lp-step__num {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg,var(--c-ocean),var(--c-ocean-l));
  color: #fff; font-size: 1.375rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(13,110,138,0.35);
}
.lp-step__body h3 { font-size: 1rem; font-weight: 700; margin: 0 0 0.375rem; color: var(--c-ink); }
.lp-step__body p  { font-size: 0.875rem; line-height: 1.7; color: var(--c-slate); margin: 0; }

/* ===================== CTA ===================== */
.lp-cta {
  position: relative; padding: 6.5rem 0; overflow: hidden;
  background: url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.lp-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg,rgba(8,18,28,0.90) 0%,rgba(10,70,95,0.82) 100%);
}
.lp-cta__inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.lp-cta__title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem); font-weight: 800;
  color: #fff; margin: 0 0 0.625rem; letter-spacing: -0.025em;
}
.lp-cta__sub { font-size: 1rem; color: rgba(255,255,255,0.70); margin: 0; }
.lp-cta__actions { display: flex; flex-wrap: wrap; gap: 0.875rem; flex-shrink: 0; }

/* ===================== FOOTER ===================== */
.lp-footer { background: #060e16; padding: 3.5rem 0 2rem; }
.lp-footer__inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.lp-footer__top {
  display: flex; justify-content: space-between; gap: 3rem; flex-wrap: wrap;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 1.75rem;
}
.lp-footer__brand-col { max-width: 280px; }
.lp-footer__brand { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.875rem; }
.lp-footer__brand-logo {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.lp-footer__brand-name { font-weight: 700; font-size: 1rem; color: #fff; font-family: var(--font-sans); }
.lp-footer__brand-desc { font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.42); margin: 0; }
.lp-footer__col h4 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.38); margin: 0 0 1rem;
}
.lp-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.625rem; }
.lp-footer__col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.58); text-decoration: none; transition: color 0.15s; }
.lp-footer__col ul a:hover { color: #fff; }
.lp-footer__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.lp-footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.28); margin: 0; }
.lp-footer__links { display: flex; gap: 1.5rem; }
.lp-footer__links a { font-size: 0.78rem; color: rgba(255,255,255,0.32); text-decoration: none; transition: color 0.15s; }
.lp-footer__links a:hover { color: rgba(255,255,255,0.7); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1023px) {
  .lp-hero__inner         { grid-template-columns: 1fr; text-align: center; }
  .lp-hero__actions       { justify-content: center; }
  .lp-hero__trust         { justify-content: center; }
  .lp-hero__sub           { max-width: 100%; margin: 0 auto; }
  .lp-badge               { margin: 0 auto; }
  .lp-hero__visual        { display: none; }
  .lp-features__grid      { grid-template-columns: repeat(2, 1fr); }
  .lp-programs__grid      { grid-template-columns: repeat(2, 1fr); }
  .lp-audience__grid      { grid-template-columns: repeat(2, 1fr); }
  .lp-testimonials__grid  { grid-template-columns: repeat(2, 1fr); }
  .lp-stats__list         { grid-template-columns: repeat(2, 1fr); }
  .lp-stats__item         { border-right: none; border-bottom: 1px solid var(--c-border); }
  .lp-stats__item:nth-child(odd)            { border-right: 1px solid var(--c-border); }
  .lp-stats__item:nth-last-child(-n+2)      { border-bottom: none; }
}

@media (max-width: 768px) {
  .lp-nav__burger { display: flex; }
  .lp-nav__menu {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--c-border);
    padding: 0.75rem 1.5rem 1rem; box-shadow: 0 8px 32px rgba(13,27,39,0.1);
  }
  .lp-nav__menu.open { display: flex; }
  .lp-nav__link { border-radius: 0.5rem; padding: 0.75rem 1rem; text-align: center; }
  .lp-nav__link--solid { margin-top: 0.5rem; }
  .lp-hero { min-height: auto; padding: 4rem 0 3.5rem; }
  .lp-features__grid      { grid-template-columns: 1fr; }
  .lp-programs__grid      { grid-template-columns: 1fr; }
  .lp-audience__grid      { grid-template-columns: 1fr; }
  .lp-testimonials__grid  { grid-template-columns: 1fr; }
  .lp-steps { flex-direction: column; align-items: center; gap: 0.5rem; }
  .lp-step__connector {
    width: 2px; height: 40px; margin: 0;
    background: repeating-linear-gradient(180deg,var(--c-border) 0,var(--c-border) 6px,transparent 6px,transparent 14px);
  }
  .lp-cta__inner { flex-direction: column; text-align: center; }
  .lp-cta__actions { justify-content: center; }
  .lp-footer__top { flex-direction: column; }
}

@media (max-width: 480px) {
  .lp-hero__headline { font-size: 2rem; }
  .lp-stats__list { grid-template-columns: 1fr 1fr; }
  .lp-stats__item:nth-child(odd)       { border-right: 1px solid var(--c-border); }
  .lp-stats__item:nth-last-child(-n+2) { border-bottom: none; }
}


