/* =====================================================
   AI Creators Community — Premium Dark SaaS Style
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --bg:          #0b0c10;
  --card-1:      #12141a;
  --card-2:      #0f1320;
  --card-3:      #1c2230;
  --text-1:      #e9eef5;
  --text-2:      #dbe7ff;
  --text-3:      #a6b3c5;
  --text-4:      #98a6bd;
  --border-1:    #1e2740;
  --border-2:    #22304a;
  --cta-from:    #8B5CF6;
  --cta-mid:     #6366F1;
  --cta-to:      #60A5FA;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --header-h:    64px;
  --sticky-cta-h: 76px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--cta-from), var(--cta-mid), var(--cta-to));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cta-mid);
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.25;
}
.section-sub {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.65;
  max-width: 620px;
}

/* ── CTA Button ── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--cta-from), var(--cta-mid), var(--cta-to));
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .18s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-cta:hover { opacity: .9; transform: translateY(-1px); }
.btn-cta:active { transform: translateY(0); }
.btn-cta.large { padding: 16px 36px; font-size: 16px; }
.btn-cta.full { width: 100%; }

/* ── Divider ── */
.divider { height: 1px; background: var(--border-1); margin: 0; }

/* =====================================================
   1. HEADER
   ===================================================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(11,12,16,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-1);
  transition: height .25s, background .25s;
}
#header.compact { height: 54px; background: rgba(11,12,16,.97); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -.01em;
  white-space: nowrap;
}
.logo span { color: var(--cta-from); }
nav.desktop-nav { display: flex; align-items: center; gap: 28px; }
nav.desktop-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-3);
  transition: color .18s;
}
nav.desktop-nav a:hover { color: var(--text-1); }
.header-right { display: flex; align-items: center; gap: 14px; }
.btn-header {
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--cta-from), var(--cta-mid));
  color: #fff;
  border-radius: 50px;
  transition: opacity .2s;
}
.btn-header:hover { opacity: .87; }

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(11,12,16,.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-1);
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border-1);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn-cta { margin-top: 12px; width: 100%; text-align: center; }

/* =====================================================
   2. HERO
   ===================================================== */
#hero {
  padding-top: calc(var(--header-h) + 52px);
  padding-bottom: 64px;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.28);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #a5b4fc;
  letter-spacing: .05em;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cta-from);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero-h1 {
  font-size: clamp(24px, 5.5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--text-1);
  max-width: 760px;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: clamp(14px, 2.2vw, 16px);
  color: var(--text-3);
  max-width: 560px;
  margin-bottom: 24px;
  line-height: 1.65;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-point {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: var(--card-1);
  border: 1px solid var(--border-1);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
}
.hero-point svg { width: 14px; height: 14px; color: var(--cta-from); flex-shrink: 0; }

/* Video */
.hero-video-wrap {
  width: 100%;
  max-width: 820px;
  margin: 0 auto 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-1);
  border: 1px solid var(--border-1);
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  position: relative;
}
.hero-video-wrap::after {
  content: '';
  display: block;
  padding-top: 56.25%; /* 16:9 */
}
.hero-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-price-note {
  font-size: 12px;
  color: var(--text-4);
  letter-spacing: .01em;
}
.hero-price-note strong { color: var(--text-2); }
.hero-reassurance {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-4);
}
.hero-reassurance svg { width: 13px; height: 13px; color: #34d399; }

/* =====================================================
   MOBILE STICKY CTA
   ===================================================== */
#sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 990;
  padding: 14px 20px;
  background: rgba(11,12,16,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-1);
}
.sticky-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
#sticky-cta .btn-cta {
  width: 100%;
  max-width: 440px;
  font-size: 15px;
  padding: 14px 24px;
}
#sticky-cta .note {
  font-size: 11px;
  color: var(--text-4);
  text-align: center;
}

/* =====================================================
   3. SOCIAL PROOF STRIP
   ===================================================== */
#social-proof {
  padding: 16px 0;
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}
.social-proof-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.avatars-row {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.avatars-row .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  overflow: hidden;
  margin-left: -10px;
  background: var(--card-3);
  flex-shrink: 0;
}
.avatars-row .av:first-child { margin-left: 0; }
.avatars-row .av img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.social-proof-text {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  flex: 1;
  min-width: 140px;
}
.social-proof-stars {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}
.social-proof-stars svg { width: 14px; height: 14px; fill: #fbbf24; }

/* =====================================================
   4. SHORT VALUE BAND
   ===================================================== */
#value-band {
  padding: 56px 0 52px;
}
.value-band-head {
  text-align: center;
  margin-bottom: 32px;
}
.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.value-card {
  background: var(--card-1);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  text-align: center;
}
.value-card-num {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cta-from), var(--cta-to));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.value-card-label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-3);
}

/* =====================================================
   5. SHOWCASE
   ===================================================== */
#showcase {
  padding: 64px 0 72px;
  border-top: 1px solid var(--border-1);
}
.showcase-head {
  text-align: center;
  margin-bottom: 48px;
}
.showcase-head .section-sub { margin: 12px auto 0; }

.showcase-grid {
  display: grid;
  gap: 20px;
}

/* 2-column layout for some cards */
@media (min-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
  .showcase-card.full-width {
    grid-column: 1 / -1;
  }
}

.showcase-card {
  background: var(--card-1);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.showcase-card-header {
  padding: 20px 22px 14px;
}
.showcase-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 4px;
}
.showcase-card-desc {
  font-size: 13px;
  color: var(--text-3);
}
.showcase-media {
  position: relative;
  width: 100%;
  background: var(--card-2);
}
/* 16:9 wrapper */
.video-ratio {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.video-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}
/* Placeholder for empty vimeo slots */
.vimeo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--card-2);
  color: var(--text-4);
  font-size: 13px;
}
.vimeo-placeholder svg { width: 36px; height: 36px; opacity: .35; }

/* ── Slider ── */
.slider-wrap {
  position: relative;
  overflow: hidden;
  background: var(--card-2);
  aspect-ratio: 4/3;
}
.slider-track {
  display: flex;
  height: 100%;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.slider-slide {
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}
.slider-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Placeholder slide */
.slider-slide-placeholder {
  width: 100%; height: 100%;
  background: var(--card-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-4);
  font-size: 13px;
}
.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px;
  background: rgba(11,12,16,.75);
  border: 1px solid var(--border-1);
  border-radius: 50%;
  color: var(--text-1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .18s;
  z-index: 5;
}
.slider-btn:hover { background: rgba(11,12,16,.95); }
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }
.slider-btn svg { width: 16px; height: 16px; }
.slider-dots {
  position: absolute;
  bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px;
}
.slider-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: background .2s;
}
.slider-dot.active { background: #fff; }

/* ── Audio Player ── */
.audio-player-card {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 140px;
}
.audio-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.audio-cover {
  width: 60px; height: 60px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cta-from), var(--cta-to));
  overflow: hidden;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.audio-cover img { width: 100%; height: 100%; object-fit: cover; }
.audio-cover-icon { color: rgba(255,255,255,.6); }
.audio-cover-icon svg { width: 24px; height: 24px; }
.audio-info { flex: 1; }
.audio-title { font-size: 14px; font-weight: 600; color: var(--text-1); margin-bottom: 2px; }
.audio-sub { font-size: 12px; color: var(--text-4); }
.audio-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.audio-play-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cta-from), var(--cta-mid));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity .2s;
}
.audio-play-btn:hover { opacity: .85; }
.audio-play-btn svg { width: 18px; height: 18px; }
.audio-progress-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.audio-progress {
  width: 100%;
  height: 4px;
  background: var(--border-1);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.audio-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cta-from), var(--cta-to));
  border-radius: 2px;
  width: 0%;
  transition: width .2s;
}
.audio-time {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-4);
}
.audio-no-file {
  font-size: 12px;
  color: var(--text-4);
  text-align: center;
  padding: 6px 0 2px;
}

/* =====================================================
   6. WHAT'S INSIDE
   ===================================================== */
#inside {
  padding: 72px 0;
  border-top: 1px solid var(--border-1);
}
.inside-head {
  text-align: center;
  margin-bottom: 48px;
}
.inside-head .section-sub { margin: 12px auto 0; }
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}
.course-card {
  background: var(--card-1);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s;
}
.course-card:hover { border-color: var(--border-2); }
.course-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--card-2);
  overflow: hidden;
  position: relative;
}
.course-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.course-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-4);
}
.course-img-placeholder svg { width: 28px; height: 28px; opacity: .4; }
.course-card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.course-chip {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.2);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: #a5b4fc;
  align-self: flex-start;
}
.course-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-1);
}
.course-card-desc {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.55;
  flex: 1;
}
.course-card-extra {
  font-size: 12px;
  color: var(--text-4);
  border-top: 1px solid var(--border-1);
  padding-top: 10px;
  margin-top: 4px;
}

/* Inside summary bar */
.inside-summary {
  background: var(--card-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px 32px;
  align-items: center;
}
.inside-summary-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.inside-summary-val {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-1);
}
.inside-summary-val.hi {
  background: linear-gradient(135deg, var(--cta-from), var(--cta-to));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.inside-summary-label {
  font-size: 12.5px;
  color: var(--text-4);
}
.inside-summary .cta-col {
  display: flex;
  justify-content: flex-end;
}

/* =====================================================
   7. WHO THIS IS FOR
   ===================================================== */
#for-whom {
  padding: 72px 0;
  border-top: 1px solid var(--border-1);
}
.for-whom-head {
  text-align: center;
  margin-bottom: 40px;
}
.for-whom-head .section-sub { margin: 12px auto 0; }
.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.for-card {
  background: var(--card-1);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  padding: 24px 22px;
}
.for-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.for-card-icon svg { width: 20px; height: 20px; color: #a5b4fc; }
.for-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
}
.for-card-text {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
}

/* =====================================================
   8. WEEKLY UPDATES
   ===================================================== */
#updates {
  padding: 72px 0;
  border-top: 1px solid var(--border-1);
}
.updates-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.updates-date {
  font-size: 12px;
  color: var(--text-4);
  flex-shrink: 0;
}
.updates-feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.update-card {
  background: var(--card-1);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.update-card.upcoming {
  border-color: rgba(99,102,241,.35);
  background: var(--card-2);
}
.update-type-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  width: fit-content;
}
.update-type-tag.lesson { background: rgba(52,211,153,.1); color: #34d399; }
.update-type-tag.tool { background: rgba(96,165,250,.1); color: #60a5fa; }
.update-type-tag.workflow { background: rgba(167,139,250,.1); color: #a78bfa; }
.update-type-tag.prompts { background: rgba(251,191,36,.1); color: #fbbf24; }
.update-type-tag.material { background: rgba(236,72,153,.1); color: #f472b6; }
.update-type-tag.soon { background: rgba(99,102,241,.12); color: #a5b4fc; }

.update-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.35;
}
.update-card-desc {
  font-size: 12px;
  color: var(--text-4);
  line-height: 1.5;
}

/* =====================================================
   9. REVIEWS
   ===================================================== */
#reviews {
  padding: 72px 0;
  border-top: 1px solid var(--border-1);
}
.reviews-head {
  text-align: center;
  margin-bottom: 36px;
}
.reviews-head .section-sub { margin: 10px auto 0; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.review-thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--card-1);
  border: 1px solid var(--border-1);
  position: relative;
  transition: transform .2s, border-color .2s;
}
.review-thumb:hover { transform: scale(1.02); border-color: var(--border-2); }
.review-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.review-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-4);
}
.review-thumb-placeholder svg { width: 28px; height: 28px; opacity: .35; }
.review-zoom-hint {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(11,12,16,.8);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
  color: var(--text-3);
  opacity: 0;
  transition: opacity .2s;
}
.review-thumb:hover .review-zoom-hint { opacity: 1; }

.reviews-trust {
  text-align: center;
  font-size: 13px;
  color: var(--text-4);
  padding-top: 12px;
  border-top: 1px solid var(--border-1);
}

/* Modal / Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.9);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}
#lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 18px;
}

/* =====================================================
   10. PRICING
   ===================================================== */
#pricing {
  padding: 72px 0;
  border-top: 1px solid var(--border-1);
}
.pricing-head {
  text-align: center;
  margin-bottom: 44px;
}
.pricing-card {
  max-width: 560px;
  margin: 0 auto 60px;
  background: var(--card-1);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.pricing-card-top {
  background: linear-gradient(135deg, rgba(139,92,246,.15), rgba(99,102,241,.08));
  border-bottom: 1px solid var(--border-1);
  padding: 32px 32px 24px;
  text-align: center;
}
.pricing-price {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-price sub { font-size: 18px; vertical-align: super; font-weight: 700; }
.pricing-price sup { font-size: 18px; }
.pricing-period { font-size: 13px; color: var(--text-4); margin-bottom: 12px; }
.pricing-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #fbbf24;
  background: rgba(251,191,36,.08);
  border: 1px solid rgba(251,191,36,.2);
  border-radius: 50px;
  padding: 5px 12px;
}

.pricing-card-body { padding: 26px 32px 32px; }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}
.pricing-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}
.pricing-feat svg { width: 16px; height: 16px; color: #34d399; flex-shrink: 0; margin-top: 2px; }
.pricing-value {
  text-align: center;
  font-size: 12px;
  color: var(--text-4);
  margin-bottom: 6px;
}
.pricing-value strong { color: var(--text-2); }
.pricing-cta { width: 100%; margin-bottom: 14px; }
.pricing-guarantee {
  text-align: center;
  font-size: 12px;
  color: var(--text-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.pricing-guarantee svg { width: 13px; height: 13px; color: #34d399; }

/* ── FAQ ── */
#faq {
  padding: 0 0 72px;
}
.faq-head {
  text-align: center;
  margin-bottom: 36px;
}
.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--card-1);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  cursor: pointer;
  background: none;
  border: none;
  transition: color .18s;
}
.faq-q:hover { color: var(--text-2); }
.faq-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--card-2);
  border: 1px solid var(--border-1);
  border-radius: 50%;
  color: var(--text-3);
  font-size: 16px;
  line-height: 1;
  transition: transform .25s, background .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(99,102,241,.15); color: #a5b4fc; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s cubic-bezier(.4,0,.2,1), padding .25s;
}
.faq-a-inner {
  padding: 0 20px 16px;
  font-size: 13.5px;
  color: var(--text-3);
  line-height: 1.65;
  border-top: 1px solid var(--border-1);
  padding-top: 12px;
}
.faq-item.open .faq-a { max-height: 300px; }

/* ── Final CTA Band ── */
#final-cta {
  padding: 64px 0 72px;
  border-top: 1px solid var(--border-1);
  text-align: center;
}
.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.final-cta-inner .section-heading { max-width: 560px; }
.final-cta-sub { font-size: 14px; color: var(--text-4); }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border-1);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-4);
  transition: color .18s;
}
.footer-links a:hover { color: var(--text-2); }
.footer-copy {
  font-size: 12px;
  color: var(--text-4);
}

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.legal-wrap {
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 80px;
}
.legal-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-4);
  margin-bottom: 36px;
  transition: color .18s;
}
.legal-back:hover { color: var(--text-2); }
.legal-back svg { width: 15px; height: 15px; }
.legal-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 8px;
  line-height: 1.2;
}
.legal-date {
  font-size: 13px;
  color: var(--text-4);
  margin-bottom: 36px;
}
.legal-body h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-1);
  margin: 32px 0 10px;
}
.legal-body p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-body ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
}
.legal-body ul li {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 767px) {
  /* Show sticky CTA */
  #sticky-cta { display: block; }

  /* Add bottom padding to avoid sticky CTA overlap */
  body { padding-bottom: var(--sticky-cta-h); }

  /* Header: hide desktop nav, show hamburger */
  nav.desktop-nav { display: none; }
  .btn-header { display: none; }
  .hamburger { display: flex; }

  /* Value band */
  .value-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Showcase */
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card.full-width { grid-column: 1; }

  /* Courses */
  .courses-grid { grid-template-columns: 1fr; }

  /* For-whom */
  .for-whom-grid { grid-template-columns: 1fr; }

  /* Reviews */
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* Pricing */
  .pricing-card-top { padding: 24px 20px 20px; }
  .pricing-card-body { padding: 20px 20px 24px; }

  /* Inside summary */
  .inside-summary { padding: 20px; }
  .inside-summary .cta-col { justify-content: flex-start; }

  /* Social proof */
  .social-proof-inner { justify-content: center; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .value-cards { grid-template-columns: repeat(3, 1fr); }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .for-whom-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .courses-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  nav.desktop-nav { display: flex; }
  .hamburger { display: none; }
}
