/* ============================================
   ADHVAITHA — CONSCIOUS CREATION WORKSHOP
   Premium Dark Theme — Meta Ads Landing Page
   ============================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #D4A843;
  --gold-lt:    #F0C96B;
  --gold-dk:    #A07830;
  --amber:      #E8902A;
  --bg-deep:    #0A0A12;
  --bg-mid:     #0F0F1E;
  --bg-card:    #14142A;
  --bg-card2:   #1A1A35;
  --border:     rgba(212,168,67,0.18);
  --border-lt:  rgba(212,168,67,0.08);
  --text-main:  #F0EDE6;
  --text-muted: #9A9AAF;
  --text-dim:   #6B6B88;
  --accent:     #C4783C;
  --purple:     #7C3AED;
  --teal:       #0D9488;
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  36px;
  --shadow-glow: 0 0 60px rgba(212,168,67,0.12);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.5);
  --font-body:  'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
em { font-style: normal; color: var(--gold); }

/* ===== TYPOGRAPHY ===== */
.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,168,67,0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-main);
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.75;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: #0A0A12;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(212,168,67,0.3), 0 0 0 0 rgba(212,168,67,0.4);
  animation: pulse-btn 2.5s ease-in-out infinite;
}

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 4px 24px rgba(212,168,67,0.3), 0 0 0 0 rgba(212,168,67,0.3); }
  50% { box-shadow: 0 4px 32px rgba(212,168,67,0.5), 0 0 0 8px rgba(212,168,67,0); }
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.btn-primary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.btn-primary span { position: relative; z-index: 1; }

.btn-large {
  font-size: 18px;
  padding: 20px 40px;
}

.btn-xl {
  font-size: 20px;
  padding: 22px 48px;
  border-radius: 100px;
  width: 100%;
  max-width: 560px;
  justify-content: center;
}

.cta-subtext {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

.cta-center { text-align: center; }

/* ===== TOP BAR ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #1a0a00, #2a1500, #1a0a00);
  border-bottom: 1px solid rgba(212,168,67,0.25);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
}

.topbar-pulse {
  width: 8px; height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: live-pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(239,68,68,0.5); }
  50% { opacity: 0.8; transform: scale(1.2); box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}

.topbar-cta {
  background: var(--gold);
  color: #0A0A12;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 18px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}
.topbar-cta:hover { background: var(--gold-lt); transform: scale(1.03); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 20% 50%, rgba(124,58,237,0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(212,168,67,0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 80%, rgba(196,120,60,0.05) 0%, transparent 50%),
              var(--bg-deep);
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: float-orb 8s ease-in-out infinite;
}

.orb1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.07) 0%, transparent 70%);
  bottom: -50px; left: -80px;
  animation-delay: -3s;
}
.orb3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(196,120,60,0.06) 0%, transparent 70%);
  top: 50%; left: 40%;
  animation-delay: -5s;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid;
}

.badge-live {
  background: rgba(239,68,68,0.1);
  border-color: rgba(239,68,68,0.3);
  color: #f87171;
}

.badge-price {
  background: rgba(212,168,67,0.12);
  border-color: var(--border);
  color: var(--gold);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--text-main);
}

.hero-headline em {
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 560px;
}

.hero-sub strong { color: var(--text-main); }

.workshop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.meta-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.meta-icon { font-size: 15px; }

.hero-cta-group { margin-bottom: 28px; }

.seeker-count {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatars { display: flex; }

.avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg-deep);
  margin-left: -10px;
  background: linear-gradient(135deg, var(--bg-card2), var(--bg-card));
  overflow: hidden;
}
.avatars .avatar:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #7C3AED, #4F46E5); }
.av2 { background: linear-gradient(135deg, #D4A843, #A07830); }
.av3 { background: linear-gradient(135deg, #0D9488, #065F46); }
.av4 { background: linear-gradient(135deg, #EC4899, #9D174D); }
.av5 { background: linear-gradient(135deg, #F59E0B, #B45309); }

.seeker-count p {
  font-size: 13px;
  color: var(--text-muted);
}
.seeker-count p strong { color: var(--text-main); }

/* Hero Card */
.hero-visual { display: flex; justify-content: flex-end; }

.hero-card {
  position: relative;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-card2));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px 28px;
  text-align: center;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  animation: card-float 4s ease-in-out infinite;
}

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.mandala-ring {
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: 50%;
  animation: spin-slow 20s linear infinite;
}
.mandala-ring::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212,168,67,0.1);
  border-radius: 50%;
}

@keyframes spin-slow { to { transform: rotate(360deg); } }

.instructor-img-wrap {
  width: 160px; height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 3px solid var(--gold);
  box-shadow: 0 0 30px rgba(212,168,67,0.25);
}

.instructor-img { width: 100%; height: 100%; object-fit: cover; }

.hero-card-info { margin-bottom: 16px; }
.card-name { font-size: 22px; font-weight: 700; color: var(--text-main); }
.card-title { font-size: 13px; color: var(--gold); font-weight: 600; margin: 6px 0 4px; }
.card-tag { font-size: 12px; color: var(--text-muted); }

.urgency-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #f87171;
}

.urgency-dot {
  width: 8px; height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: live-pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fade-down 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--text-dim);
  border-bottom: 2px solid var(--text-dim);
  transform: rotate(45deg);
}

@keyframes fade-down {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* ===== PAIN SECTION ===== */
.pain-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 100%);
}

.pain-section .container { text-align: center; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0;
  text-align: left;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.pain-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.pain-card:hover::before { opacity: 1; }

.pain-icon { font-size: 28px; margin-bottom: 14px; }
.pain-card h3 { font-size: 16px; font-weight: 700; color: var(--text-main); margin-bottom: 10px; }
.pain-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.pain-cta-row { margin-top: 48px; }

/* ===== LEARN SECTION ===== */
.learn-section {
  padding: 100px 0;
  background: var(--bg-mid);
}

.learn-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 60px;
}

.learn-item {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-lt);
  transition: var(--transition);
  align-items: flex-start;
}

.learn-item:last-child { border-bottom: none; }

.learn-item:hover { background: rgba(212,168,67,0.02); padding-left: 8px; }

.learn-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 800;
  color: rgba(212,168,67,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  transition: color 0.3s;
}

.learn-item:hover .learn-num { color: rgba(212,168,67,0.5); }

.learn-body h3 { font-size: 18px; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
.learn-body p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

.learn-quote {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.quote-line {
  width: 3px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  flex-shrink: 0;
  border-radius: 2px;
}

.learn-quote p { font-size: 18px; color: var(--text-main); line-height: 1.65; }
.learn-quote p strong { color: var(--gold); }

/* ===== FRAMEWORK SECTION ===== */
.framework-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 100%);
  text-align: center;
}

.framework-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.framework-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px 28px;
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  transition: var(--transition);
  position: relative;
}

.framework-step:hover {
  border-color: var(--gold-dk);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(212,168,67,0.08);
}

.step-letter {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
  line-height: 1;
}

.step-content h3 { font-size: 17px; font-weight: 700; color: var(--text-main); margin-bottom: 10px; }
.step-content p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

.framework-arrow {
  font-size: 24px;
  color: var(--gold-dk);
  flex-shrink: 0;
  margin-top: -20px;
}

/* ===== BONUS SECTION ===== */
.bonus-section {
  padding: 100px 0;
  background: var(--bg-deep);
  text-align: center;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: left;
  position: relative;
  transition: var(--transition);
}

.bonus-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.bonus-highlighted {
  border-color: var(--gold-dk);
  background: linear-gradient(145deg, var(--bg-card), #1C1A30);
  box-shadow: 0 8px 40px rgba(212,168,67,0.1);
}

.bonus-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,168,67,0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.bonus-icon { font-size: 32px; margin-bottom: 14px; }
.bonus-card h3 { font-size: 16px; font-weight: 700; color: var(--text-main); margin-bottom: 10px; }
.bonus-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.bonus-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}

.total-value-box {
  background: linear-gradient(145deg, rgba(212,168,67,0.06), rgba(196,120,60,0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.total-value-inner { text-align: center; }
.tv-label { font-size: 13px; color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.tv-crossed { font-size: 22px; color: var(--text-dim); text-decoration: line-through; }
.tv-today { font-size: 36px; font-weight: 800; color: var(--text-main); }
.tv-today strong { color: var(--gold); font-size: 44px; }
.tv-save { font-size: 14px; font-weight: 700; color: #4ade80; margin-top: 4px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-mid);
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  text-align: left;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
}

.testi-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.testi-featured {
  border-color: rgba(212,168,67,0.25);
  background: linear-gradient(145deg, var(--bg-card), #181830);
}

.stars { font-size: 16px; margin-bottom: 16px; }
.testi-text { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dk), var(--amber));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: #0A0A12;
  flex-shrink: 0;
}

.testi-name { font-size: 14px; font-weight: 700; color: var(--text-main); }
.testi-role { font-size: 12px; color: var(--text-dim); }

/* ===== INSTRUCTOR ===== */
.instructor-section {
  padding: 100px 0;
  background: var(--bg-deep);
}

.instructor-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: center;
}

.instructor-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 50px rgba(212,168,67,0.1);
  border: 1px solid var(--border);
}

.instructor-img-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.instructor-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: #0A0A12;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
}

.instructor-text-col .section-title { margin-bottom: 6px; }
.instructor-name-sub { font-size: 14px; color: var(--gold); font-weight: 600; margin-bottom: 24px; }
.instructor-bio { font-size: 16px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.instructor-bio strong { color: var(--text-main); }
.instructor-mission { font-size: 15px; color: var(--text-dim); border-left: 3px solid var(--gold-dk); padding-left: 16px; margin: 24px 0; line-height: 1.7; }

.instructor-stats {
  display: flex;
  gap: 0;
  margin-top: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stat { padding: 20px 24px; flex: 1; text-align: center; }
.stat-num { font-size: 28px; font-weight: 800; color: var(--gold); }
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.stat-divider { width: 1px; background: var(--border); }

/* ===== GUARANTEE ===== */
.guarantee-section {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 100%);
}

.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(145deg, rgba(74,222,128,0.05), rgba(74,222,128,0.02));
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.guarantee-icon { font-size: 64px; flex-shrink: 0; }
.guarantee-text h2 { font-size: 24px; font-weight: 700; color: var(--text-main); margin-bottom: 12px; }
.guarantee-text p { font-size: 16px; color: var(--text-muted); line-height: 1.75; }
.guarantee-text p strong { color: #4ade80; }

/* ===== FAQ ===== */
.faq-section {
  padding: 100px 0;
  background: var(--bg-mid);
  text-align: center;
}

.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--border-lt);
  cursor: pointer;
  transition: var(--transition);
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  gap: 16px;
}

.faq-icon {
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-item.open .faq-a { max-height: 200px; }

.faq-a p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  padding-bottom: 22px;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 120px 0;
  background: var(--bg-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-f1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,168,67,0.07) 0%, transparent 70%);
  top: -100px; left: -100px;
}

.orb-f2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 70%);
  bottom: -80px; right: -80px;
}

.final-cta-inner { position: relative; z-index: 2; }

.final-headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.final-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

.final-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: left;
}

.fb {
  background: var(--bg-card);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.final-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.price-crossed {
  font-size: 24px;
  color: var(--text-dim);
  text-decoration: line-through;
}

.price-main {
  font-size: 40px;
  font-weight: 800;
  color: var(--gold);
}

.urgency-final {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  font-size: 14px;
  color: #f87171;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-lt);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-brand { font-size: 16px; font-weight: 700; color: var(--gold); }
.footer-legal { font-size: 13px; color: var(--text-dim); }
.footer-legal a { color: var(--text-dim); text-decoration: underline; }

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual { justify-content: center; }
  .hero-sub { margin: 0 auto 28px; }
  .workshop-meta { justify-content: center; }
  .seeker-count { justify-content: center; }
  .hero-headline em { -webkit-text-fill-color: unset; color: var(--gold); }

  .pain-grid { grid-template-columns: 1fr 1fr; }
  .bonus-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  .framework-steps { flex-direction: column; align-items: center; }
  .framework-arrow { transform: rotate(90deg); font-size: 20px; margin: 0; }

  .instructor-inner { grid-template-columns: 1fr; }
  .instructor-img-col { max-width: 360px; margin: 0 auto; }
  .instructor-text-col .section-title { text-align: center !important; }

  .final-benefits { grid-template-columns: 1fr 1fr; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 600px) {
  .section-title { font-size: 26px; }
  .hero-headline { font-size: 32px; }
  .hero-card { max-width: 100%; border-radius: var(--radius-lg); }

  .pain-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .final-benefits { grid-template-columns: 1fr; }

  .guarantee-inner { flex-direction: column; text-align: center; padding: 28px 20px; }

  .instructor-stats { flex-direction: column; }
  .stat-divider { width: auto; height: 1px; }

  .footer-inner { flex-direction: column; text-align: center; }
  .topbar { font-size: 12px; }
  .topbar-cta { font-size: 11px; padding: 5px 12px; }

  .btn-primary { width: 100%; justify-content: center; }
  .btn-xl { font-size: 16px; padding: 18px 28px; }
  .learn-item { flex-direction: column; gap: 8px; }
  .learn-num { font-size: 24px; }

  .learn-quote { flex-direction: column; gap: 16px; align-items: flex-start; }
  .quote-line { width: 60px; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

  .final-headline { font-size: 28px; }
  .final-sub { font-size: 16px; }
}

/* ===== ANIMATIONS on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
