/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #0D0B1A;
  color: #F7F3EE;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── TOKENS ─── */
:root {
  --midnight:   #0D0B1A;
  --deep-ink:   #130F2A;
  --indigo:     #1A1535;
  --purple-mist:#2D2550;
  --gold:       #C9923F;
  --gold-light: #E8C4A0;
  --gold-pale:  #F5E6CA;
  --cream:      #FAF6EF;
  --blush:      #EDD5C0;
  --terracotta: #C1694F;
  --terra-soft: #D4845A;
  --sage:       #7A9E7E;
  --sage-light: #C4D9C5;
  --warm-brown: #8B6B4A;
  --ink:        #3C2F1E;
  --white:      #F7F3EE;
  --star:       rgba(201,146,63,0.6);
}

/* ─── STICKY NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px;
  background: rgba(13,11,26,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,146,63,0.15);
  transition: all 0.3s;
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-decoration: none;
}
.nav-logo span { color: var(--gold-light); font-weight: 400; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--terra-soft));
  color: var(--midnight);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ─── STAR CANVAS ─── */
#starfield {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
}

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden; z-index: 1;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 40%,
    rgba(45,37,80,0.9) 0%, rgba(13,11,26,0.98) 70%);
}

/* Mandala SVG ring animations */
.mandala-wrap {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(680px, 95vw); aspect-ratio: 1;
  pointer-events: none;
}
.mandala-ring {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.mandala-ring svg { width: 100%; height: 100%; }
.ring-outer { animation: spin-slow 120s linear infinite; opacity: 0.18; }
.ring-mid   { animation: spin-slow 70s linear infinite reverse; opacity: 0.22; }
.ring-inner { animation: spin-slow 40s linear infinite; opacity: 0.28; }
.ring-glow  {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 40%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,146,63,0.35) 0%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes pulse-glow {
  0%,100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%,-50%) scale(1.15); }
}

/* Hero content */
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem; letter-spacing: 0.4em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 40px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.hero-eyebrow::after { background: linear-gradient(to left, transparent, var(--gold)); }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 300; line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 12px;
}
.hero-title em {
  font-style: italic; color: var(--gold-light);
  display: block;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 300; font-style: italic;
  color: var(--gold-light); opacity: 0.85;
  margin-bottom: 20px; letter-spacing: 0.02em;
}
.hero-desc {
  font-size: 0.95rem; color: rgba(247,243,238,0.7);
  max-width: 520px; margin: 0 auto 44px;
  line-height: 1.75;
}
.hero-price-badge {
  display: inline-flex; flex-direction: column;
  align-items: center; margin-bottom: 32px;
}
.hero-price-was {
  font-size: 0.8rem; color: rgba(247,243,238,0.4);
  text-decoration: line-through; letter-spacing: 0.05em;
}
.hero-price-now {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero-price-note {
  font-size: 0.72rem; color: var(--gold-light);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #C9923F 0%, #D4845A 60%, #C9923F 100%);
  background-size: 200% 100%;
  color: var(--midnight); font-family: 'Cinzel', serif;
  font-size: 0.85rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 600;
  padding: 20px 52px; border-radius: 2px;
  border: none; cursor: pointer; text-decoration: none;
  transition: background-position 0.4s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 40px rgba(201,146,63,0.4);
  animation: btn-shimmer 3s ease-in-out infinite;
}
@keyframes btn-shimmer {
  0%,100% { box-shadow: 0 4px 40px rgba(201,146,63,0.4); }
  50%      { box-shadow: 0 6px 60px rgba(201,146,63,0.65); }
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 60px rgba(201,146,63,0.7);
  background-position: right center;
}
.hero-trust {
  margin-top: 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: rgba(247,243,238,0.55);
  letter-spacing: 0.05em;
}
.trust-icon { color: var(--gold); font-size: 1rem; }

/* ─── SECTIONS SHARED ─── */
section { position: relative; z-index: 1; }
.section-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem; letter-spacing: 0.45em;
  color: var(--gold); text-transform: uppercase;
  display: flex; align-items: center; gap: 14px;
  justify-content: center; margin-bottom: 20px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; flex: 0 0 30px; height: 1px;
  background: var(--gold); opacity: 0.5;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300; line-height: 1.1;
  text-align: center;
}
.section-title em { font-style: italic; color: var(--gold-light); }

/* ─── DIVINE DIVIDER ─── */
.divine-divider {
  text-align: center; padding: 28px 0;
  color: var(--gold); opacity: 0.35; font-size: 1.4rem;
  letter-spacing: 0.5rem;
  background: linear-gradient(to right,
    transparent, rgba(201,146,63,0.08), transparent);
}

/* ─── TRANSFORMATION (dark) ─── */
.section-dark {
  background: var(--deep-ink);
  padding: 100px 24px;
}
.transformation-grid {
  max-width: 980px; margin: 60px auto 0;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px;
}
.tf-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,146,63,0.12);
  padding: 40px 32px;
  text-align: center;
  transition: background 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.tf-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.tf-card:hover { background: rgba(201,146,63,0.06); border-color: rgba(201,146,63,0.35); }
.tf-card:hover::before { opacity: 1; }
.tf-glyph {
  width: 56px; height: 56px; margin: 0 auto 20px;
  border: 1px solid rgba(201,146,63,0.35);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-size: 1.5rem;
  background: radial-gradient(circle, rgba(201,146,63,0.08), transparent);
}
.tf-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 500;
  color: var(--gold-light); margin-bottom: 10px;
}
.tf-desc { font-size: 0.875rem; color: rgba(247,243,238,0.55); line-height: 1.7; }

/* ─── WHAT'S INSIDE (light) ─── */
.section-light {
  background: var(--cream);
  color: var(--ink);
  padding: 110px 24px;
}
.section-light .section-title { color: var(--ink); }
.section-light .section-eyebrow { color: var(--terracotta); }
.section-light .section-eyebrow::before,
.section-light .section-eyebrow::after { background: var(--terracotta); }

.bundle-grid {
  max-width: 1100px; margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.bundle-card {
  background: #fff;
  border-radius: 4px;
  padding: 36px 32px;
  border: 1px solid rgba(139,107,74,0.12);
  box-shadow: 0 2px 20px rgba(139,107,74,0.07);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.bundle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(193,105,79,0.14);
}
.bundle-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 600;
  color: rgba(193,105,79,0.12);
  position: absolute; top: 20px; right: 24px;
  line-height: 1;
}
.bundle-icon {
  font-size: 1.6rem; margin-bottom: 16px;
}
.bundle-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--ink); margin-bottom: 8px;
}
.bundle-card-count {
  font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--terracotta);
  font-weight: 600; margin-bottom: 14px;
}
.bundle-card-desc {
  font-size: 0.88rem; color: rgba(60,47,30,0.7);
  line-height: 1.7;
}
.bundle-card-list {
  margin-top: 14px; list-style: none;
  display: flex; flex-direction: column; gap: 7px;
}
.bundle-card-list li {
  font-size: 0.82rem; color: rgba(60,47,30,0.65);
  display: flex; align-items: flex-start; gap: 8px;
}
.bundle-card-list li::before {
  content: '✦'; color: var(--terracotta);
  font-size: 0.6rem; margin-top: 3px; flex-shrink: 0;
}

/* ─── POSE PREVIEW (dark gradient) ─── */
.section-indigo {
  background: linear-gradient(180deg, var(--indigo) 0%, var(--deep-ink) 100%);
  padding: 110px 24px;
}
.poses-showcase {
  max-width: 1000px; margin: 64px auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pose-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,146,63,0.18);
  border-radius: 60px;
  padding: 18px 12px;
  text-align: center;
  transition: all 0.28s;
  cursor: default;
}
.pose-pill:hover {
  background: rgba(201,146,63,0.1);
  border-color: rgba(201,146,63,0.45);
  transform: translateY(-3px);
}
.pose-pill-emoji { font-size: 1.5rem; margin-bottom: 8px; }
.pose-pill-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 500;
  color: var(--gold-light); display: block;
}
.pose-pill-sanskrit {
  font-size: 0.65rem; color: rgba(247,243,238,0.4);
  font-style: italic; display: block; margin-top: 2px;
}

/* ─── 30-DAY JOURNEY ─── */
.section-warm {
  background: linear-gradient(180deg, #FAF6EF 0%, #F5EDE0 100%);
  color: var(--ink);
  padding: 110px 24px;
}
.section-warm .section-title { color: var(--ink); }
.section-warm .section-eyebrow { color: var(--warm-brown); }
.section-warm .section-eyebrow::before,
.section-warm .section-eyebrow::after { background: var(--warm-brown); }

.journey-timeline {
  max-width: 820px; margin: 64px auto 0;
  position: relative;
}
.journey-timeline::before {
  content: ''; position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px; transform: translateX(-50%);
  background: linear-gradient(to bottom,
    transparent, var(--terracotta) 20%, var(--gold) 50%, var(--sage) 80%, transparent);
  opacity: 0.3;
}
.journey-week {
  display: grid; grid-template-columns: 1fr 56px 1fr;
  gap: 0; align-items: start; margin-bottom: 48px;
}
.journey-week:nth-child(odd) .week-content { grid-column: 1; text-align: right; }
.journey-week:nth-child(odd) .week-center { grid-column: 2; }
.journey-week:nth-child(odd) .week-empty  { grid-column: 3; }
.journey-week:nth-child(even) .week-empty  { grid-column: 1; }
.journey-week:nth-child(even) .week-center { grid-column: 2; }
.journey-week:nth-child(even) .week-content { grid-column: 3; text-align: left; }
.week-center {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.week-orb {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.05em;
  border: 2px solid; position: relative; z-index: 1;
}
.week-orb.w1 { background: rgba(193,105,79,0.15); border-color: var(--terracotta); color: var(--terracotta); }
.week-orb.w2 { background: rgba(201,146,63,0.15); border-color: var(--gold); color: var(--gold); }
.week-orb.w3 { background: rgba(122,158,126,0.15); border-color: var(--sage); color: var(--sage); }
.week-orb.w4 { background: rgba(139,107,74,0.15); border-color: var(--warm-brown); color: var(--warm-brown); }
.week-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600; color: var(--ink);
  margin-bottom: 8px;
}
.week-desc { font-size: 0.85rem; color: rgba(60,47,30,0.65); line-height: 1.6; }
.week-days {
  display: flex; gap: 4px; margin-top: 10px; flex-wrap: wrap;
  justify-content: inherit;
}
.day-dot {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; font-weight: 600;
  border: 1px solid rgba(60,47,30,0.2);
  color: rgba(60,47,30,0.5);
}

/* ─── AFFIRMATION MARQUEE ─── */
.marquee-section {
  background: var(--midnight); padding: 36px 0;
  overflow: hidden; border-top: 1px solid rgba(201,146,63,0.12);
  border-bottom: 1px solid rgba(201,146,63,0.12);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-style: italic;
  color: rgba(201,146,63,0.7);
  padding: 0 40px; white-space: nowrap;
  display: flex; align-items: center; gap: 40px;
}
.marquee-item::after {
  content: '✦'; color: rgba(201,146,63,0.35); font-style: normal;
}
@keyframes marquee-scroll { to { transform: translateX(-50%); } }

/* ─── FOR WHO SECTION ─── */
.for-who-grid {
  max-width: 1000px; margin: 64px auto 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.for-who-card {
  padding: 48px 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,146,63,0.1);
}
.for-who-card.yes { border-top: 3px solid var(--sage); }
.for-who-card.no  { border-top: 3px solid rgba(247,243,238,0.2); }
.for-who-label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem; letter-spacing: 0.35em;
  margin-bottom: 24px; text-transform: uppercase;
}
.for-who-card.yes .for-who-label { color: var(--sage); }
.for-who-card.no  .for-who-label { color: rgba(247,243,238,0.35); }
.for-who-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.for-who-list li {
  font-size: 0.9rem; color: rgba(247,243,238,0.7);
  display: flex; align-items: flex-start; gap: 12px;
  line-height: 1.5;
}
.for-who-list li .check { flex-shrink: 0; margin-top: 2px; }
.for-who-card.yes .check { color: var(--sage); }
.for-who-card.no  .check { color: rgba(247,243,238,0.3); }

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: linear-gradient(135deg, #FAF6EF 0%, #F0E8DC 100%);
  color: var(--ink);
  padding: 110px 24px;
}
.testimonials .section-title { color: var(--ink); }
.testimonials .section-eyebrow { color: var(--terracotta); }
.testimonials .section-eyebrow::before,
.testimonials .section-eyebrow::after { background: var(--terracotta); }

.testi-grid {
  max-width: 1060px; margin: 64px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: #fff;
  border-radius: 4px;
  padding: 36px 28px;
  border: 1px solid rgba(193,105,79,0.1);
  box-shadow: 0 2px 16px rgba(193,105,79,0.06);
  position: relative;
}
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; }
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-style: italic;
  color: var(--ink); line-height: 1.65;
  margin-bottom: 24px;
}
.testi-quote::before { content: '\201C'; font-size: 3rem; color: rgba(201,146,63,0.25); line-height: 0; vertical-align: -0.5rem; }
.testi-author {
  display: flex; align-items: center; gap: 12px;
}
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--sage-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1rem;
  color: var(--warm-brown); font-weight: 600;
}
.testi-name {
  font-weight: 600; font-size: 0.88rem; color: var(--ink);
}
.testi-role { font-size: 0.78rem; color: rgba(60,47,30,0.5); }

/* ─── PLANNER PREVIEW ─── */
.planner-preview {
  background: var(--deep-ink);
  padding: 110px 24px;
}
.planner-items-grid {
  max-width: 960px; margin: 64px auto 0;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.planner-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,146,63,0.15);
  border-radius: 3px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.28s;
}
.planner-item:hover {
  background: rgba(201,146,63,0.08);
  border-color: rgba(201,146,63,0.4);
  transform: translateY(-3px);
}
.planner-item-icon { font-size: 1.8rem; margin-bottom: 12px; }
.planner-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; color: var(--gold-light);
  margin-bottom: 6px; font-weight: 500;
}
.planner-item-desc {
  font-size: 0.75rem; color: rgba(247,243,238,0.4); line-height: 1.5;
}

/* ─── VALUE STACK ─── */
.value-section {
  background: var(--cream); color: var(--ink);
  padding: 110px 24px;
}
.value-section .section-title { color: var(--ink); }
.value-section .section-eyebrow { color: var(--terracotta); }
.value-section .section-eyebrow::before,
.value-section .section-eyebrow::after { background: var(--terracotta); }

.value-stack {
  max-width: 700px; margin: 56px auto 0;
  display: flex; flex-direction: column; gap: 0;
}
.value-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(139,107,74,0.1);
  transition: background 0.2s;
}
.value-row:hover { background: rgba(193,105,79,0.04); }
.value-row:first-child { border-top: 1px solid rgba(139,107,74,0.1); }
.value-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--ink);
}
.value-name span {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 0.75rem; color: rgba(60,47,30,0.5);
}
.value-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: rgba(60,47,30,0.45);
  text-decoration: line-through;
}
.value-total-row {
  background: linear-gradient(135deg, rgba(193,105,79,0.08), rgba(201,146,63,0.08));
  padding: 24px 32px;
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid rgba(193,105,79,0.25);
  border-top: none;
  margin-top: 0;
}
.value-total-label {
  font-family: 'Cinzel', serif; font-size: 0.8rem;
  letter-spacing: 0.15em; color: var(--terracotta);
}
.value-total-label span {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic;
  color: var(--ink); letter-spacing: 0;
  font-weight: 400; margin-top: 2px;
}
.value-total-price {
  text-align: right;
}
.value-old {
  font-size: 1rem; color: rgba(60,47,30,0.4); text-decoration: line-through;
}
.value-new {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 600; color: var(--terracotta);
  line-height: 1;
}

/* ─── FINAL CTA ─── */
.final-cta {
  background: var(--midnight);
  padding: 130px 24px;
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%,
    rgba(45,37,80,0.85) 0%, transparent 70%);
}
.cta-mandala {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: min(700px, 95vw); aspect-ratio: 1;
  opacity: 0.1;
}
.cta-mandala svg { width: 100%; height: 100%; animation: spin-slow 90s linear infinite; }
.cta-content { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 300; color: var(--white);
  line-height: 1.05; margin-bottom: 20px;
}
.cta-title em { color: var(--gold-light); font-style: italic; }
.cta-subtitle {
  font-size: 1rem; color: rgba(247,243,238,0.6);
  margin-bottom: 48px; line-height: 1.7;
}
.cta-price-block {
  display: flex; align-items: baseline; justify-content: center;
  gap: 16px; margin-bottom: 36px;
}
.cta-was { color: rgba(247,243,238,0.35); text-decoration: line-through; font-size: 1.1rem; }
.cta-now {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem; font-weight: 600; color: var(--gold);
  line-height: 1;
}
.cta-label {
  font-size: 0.75rem; color: var(--gold-light);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.btn-cta-big {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--terra-soft) 100%);
  color: var(--midnight); font-family: 'Cinzel', serif;
  font-size: 0.9rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 600;
  padding: 24px 64px; border-radius: 2px;
  border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 6px 50px rgba(201,146,63,0.5);
  transition: transform 0.2s, box-shadow 0.3s;
  margin-bottom: 20px; display: block; width: fit-content; margin: 0 auto 20px;
}
.btn-cta-big:hover { transform: translateY(-4px); box-shadow: 0 10px 70px rgba(201,146,63,0.7); }
.cta-secure {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap; margin-top: 20px;
}
.secure-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem; color: rgba(247,243,238,0.45);
}
.secure-icon { color: var(--sage); }

/* ─── FAQ ─── */
.faq-section {
  background: var(--indigo);
  padding: 100px 24px;
}
.faq-list {
  max-width: 720px; margin: 56px auto 0;
  display: flex; flex-direction: column; gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(201,146,63,0.12);
}
.faq-q {
  padding: 22px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 500;
  color: var(--gold-light);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; user-select: none;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-toggle {
  flex-shrink: 0; width: 22px; height: 22px;
  border: 1px solid rgba(201,146,63,0.4);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: transform 0.25s, background 0.2s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: rgba(201,146,63,0.15); }
.faq-a {
  font-size: 0.88rem; color: rgba(247,243,238,0.55);
  line-height: 1.75; padding: 0 0 20px; display: none;
}
.faq-item.open .faq-a { display: block; }

/* ─── FOOTER ─── */
footer {
  background: var(--midnight);
  border-top: 1px solid rgba(201,146,63,0.1);
  padding: 56px 24px 32px;
  text-align: center;
}
.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem; letter-spacing: 0.25em;
  color: var(--gold); margin-bottom: 16px;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; color: rgba(247,243,238,0.4);
  font-size: 0.95rem; margin-bottom: 32px;
}
.footer-links {
  display: flex; gap: 28px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 32px;
}
.footer-links a {
  font-size: 0.78rem; color: rgba(247,243,238,0.35);
  text-decoration: none; letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.72rem; color: rgba(247,243,238,0.2);
  letter-spacing: 0.08em;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(.23,1,.32,1), transform 0.65s cubic-bezier(.23,1,.32,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── FLOATING CTA BAR (mobile) ─── */
.float-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  background: rgba(13,11,26,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,146,63,0.2);
  padding: 12px 20px;
  display: none;
  align-items: center; justify-content: space-between; gap: 12px;
}
.float-bar-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; color: var(--gold-light);
  line-height: 1.2;
}
.float-bar-text span { display: block; font-size: 0.72rem; color: rgba(247,243,238,0.45); font-family: 'Inter', sans-serif; }
.float-bar-btn {
  background: linear-gradient(135deg, var(--gold), var(--terra-soft));
  color: var(--midnight); font-family: 'Cinzel', serif;
  font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 600;
  padding: 12px 24px; border-radius: 2px;
  border: none; cursor: pointer; text-decoration: none;
  white-space: nowrap; flex-shrink: 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav { padding: 14px 24px; }
  .transformation-grid { grid-template-columns: 1fr; }
  .poses-showcase { grid-template-columns: repeat(2,1fr); }
  .for-who-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .planner-items-grid { grid-template-columns: repeat(2,1fr); }
  .journey-timeline::before { display: none; }
  .journey-week {
    grid-template-columns: 1fr;
    gap: 16px; text-align: left !important;
  }
  .journey-week .week-empty { display: none; }
  .journey-week .week-center { flex-direction: row; justify-content: flex-start; }
  .journey-week .week-content { text-align: left !important; }
  .week-days { justify-content: flex-start !important; }
  .float-bar { display: flex; }
  body { padding-bottom: 80px; }
}
@media (max-width: 600px) {
  .bundle-grid { grid-template-columns: 1fr; }
  .nav-logo { font-size: 0.9rem; }
  .poses-showcase { grid-template-columns: repeat(2,1fr); }
  .planner-items-grid { grid-template-columns: repeat(2,1fr); }
  .value-row { flex-direction: column; gap: 4px; align-items: flex-start; }
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--indigo);
  border-top: 1px solid rgba(201,146,63,0.15);
  border-bottom: 1px solid rgba(201,146,63,0.15);
  padding: 28px 24px;
  position: relative; z-index: 1;
}
.stats-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 36px; text-align: center;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 600;
  color: var(--gold); line-height: 1;
}
.stat-suffix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.4); margin-top: 4px;
}
.stat-divider {
  color: rgba(201,146,63,0.25); font-size: 0.9rem;
}
@media (max-width: 700px) {
  .stats-inner { gap: 8px; }
  .stat-item { padding: 8px 16px; }
  .stat-divider { display: none; }
}

/* ─── BUNDLE VISUAL SECTION ─── */
.bundle-visual-section {
  background: linear-gradient(180deg, var(--deep-ink) 0%, var(--midnight) 100%);
  padding: 110px 24px;
}
.bv-subtitle {
  text-align: center; color: rgba(247,243,238,0.5);
  font-size: 0.92rem; max-width: 540px;
  margin: 16px auto 64px; line-height: 1.7;
}
.bv-pages-wrap {
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
/* Fan of pages */
.bv-fan {
  position: relative; height: 420px;
}
.bv-page {
  position: absolute;
  width: 230px; height: 310px;
  background: var(--cream);
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  transition: transform 0.35s;
  cursor: default;
  left: 50%; top: 50%;
}
.bv-page:hover { z-index: 20 !important; transform: none !important; }
.bv-page-inner {
  padding: 28px 22px; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  text-align: center;
}
.bv-page-label {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem; letter-spacing: 0.25em;
  text-transform: uppercase; font-weight: 600;
}
.bv-page-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic;
  color: var(--ink); text-align: center; line-height: 1.3;
}
.bv-mini-mandala {
  width: 60px; height: 60px; border-radius: 50%;
  border: 1px solid rgba(201,146,63,0.4);
  margin: 4px auto;
  background: radial-gradient(circle, rgba(201,146,63,0.08), transparent);
  position: relative;
}
.bv-mini-mandala::before, .bv-mini-mandala::after {
  content: ''; position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,146,63,0.25);
}
.bv-mini-mandala::before { inset: 8px; }
.bv-mini-mandala::after  { inset: 18px; }
.bv-lines {
  width: 100%; display: flex; flex-direction: column; gap: 8px; margin-top: 8px;
}
.bv-lines::before, .bv-lines::after,
.bv-lines + * { /* fake write lines */ }
.bv-page .bv-lines {
  display: block;
  height: 80px;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 15px,
    rgba(139,107,74,0.15) 15px,
    rgba(139,107,74,0.15) 16px
  );
}
/* Fanned positions */
.bv-p1 { transform: translate(-50%,-50%) rotate(-14deg) translate(-80px, 20px); z-index:6; }
.bv-p2 { transform: translate(-50%,-50%) rotate(-8deg)  translate(-48px, 10px); z-index:7; }
.bv-p3 { transform: translate(-50%,-50%) rotate(-3deg)  translate(-16px, 4px);  z-index:8; }
.bv-p4 { transform: translate(-50%,-50%) rotate(2deg)   translate(16px, 4px);   z-index:9; }
.bv-p5 { transform: translate(-50%,-50%) rotate(7deg)   translate(48px, 10px);  z-index:10; }
.bv-p6 { transform: translate(-50%,-50%) rotate(12deg)  translate(78px, 18px);  z-index:11; }
.bv-page:hover { transform: translate(-50%,-50%) scale(1.06) !important; }

/* Feature list */
.bv-features {
  display: flex; flex-direction: column; gap: 28px;
}
.bv-feature {
  display: flex; align-items: flex-start; gap: 16px;
}
.bv-feature-dot {
  flex-shrink: 0; width: 10px; height: 10px;
  border-radius: 50%; margin-top: 5px;
}
.bv-feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--gold-light); margin-bottom: 6px;
}
.bv-feature-desc {
  font-size: 0.85rem; color: rgba(247,243,238,0.5); line-height: 1.65;
}
@media (max-width: 800px) {
  .bv-pages-wrap { grid-template-columns: 1fr; }
  .bv-fan { height: 320px; margin-bottom: 40px; }
  .bv-page { width: 180px; height: 240px; }
}

/* ─── GUARANTEE SECTION ─── */
.guarantee-section {
  background: var(--cream); padding: 90px 24px;
}
.guarantee-inner {
  max-width: 860px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr;
  gap: 56px; align-items: center;
}
.guarantee-seal {
  position: relative; width: 130px; height: 130px;
  flex-shrink: 0;
}
.seal-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(122,158,126,0.5);
}
.seal-ring-outer { inset: 0; animation: spin-slow 30s linear infinite; }
.seal-ring-mid   { inset: 12px; animation: spin-slow 20s linear infinite reverse; border-style: dashed; }
.seal-content {
  position: absolute; inset: 22px;
  background: linear-gradient(135deg, rgba(122,158,126,0.12), rgba(201,146,63,0.08));
  border-radius: 50%; border: 1px solid rgba(122,158,126,0.3);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
}
.seal-icon { font-size: 1.6rem; }
.seal-label {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem; letter-spacing: 0.2em;
  color: var(--sage); text-transform: uppercase;
}
.guarantee-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 500;
  color: var(--ink); margin-bottom: 14px; line-height: 1.2;
}
.guarantee-desc {
  font-size: 0.88rem; color: rgba(60,47,30,0.65);
  line-height: 1.75; margin-bottom: 24px;
}
.guarantee-pillars {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.g-pillar {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.8rem; color: rgba(60,47,30,0.6);
  font-weight: 500;
}
.g-icon { font-size: 1rem; }
@media (max-width: 700px) {
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .guarantee-seal { margin: 0 auto; }
  .guarantee-pillars { justify-content: center; }
}

/* ─── COUNTDOWN ─── */
.countdown-section {
  background: linear-gradient(135deg, #1A0F0A 0%, #0D0B1A 60%, #0A1A0F 100%);
  padding: 80px 24px;
  border-top: 1px solid rgba(201,146,63,0.15);
  border-bottom: 1px solid rgba(201,146,63,0.15);
}
.countdown-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 60px; align-items: center;
}
.cd-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem; letter-spacing: 0.4em;
  color: var(--terracotta); text-transform: uppercase;
  margin-bottom: 14px;
}
.cd-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300; color: var(--white);
  line-height: 1.1; margin-bottom: 16px;
}
.cd-sub {
  font-size: 0.88rem; color: rgba(247,243,238,0.5); line-height: 1.7;
}
.countdown-clock {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,146,63,0.2);
  border-radius: 4px;
  padding: 32px 40px;
  min-width: 260px;
}
.cd-label {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem; letter-spacing: 0.3em;
  color: rgba(247,243,238,0.4); text-transform: uppercase;
  margin-bottom: 16px;
}
.cd-digits {
  display: flex; align-items: center; gap: 8px;
}
.cd-unit {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(201,146,63,0.08);
  border: 1px solid rgba(201,146,63,0.2);
  border-radius: 4px; padding: 12px 16px;
  min-width: 64px;
}
.cd-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 600;
  color: var(--gold); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-unit-label {
  font-size: 0.6rem; letter-spacing: 0.15em;
  color: rgba(247,243,238,0.35); text-transform: uppercase;
  margin-top: 4px;
}
.cd-colon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; color: rgba(201,146,63,0.4);
  margin-bottom: 14px;
}
@media (max-width: 700px) {
  .countdown-inner { grid-template-columns: 1fr; gap: 36px; }
  .countdown-clock { width: 100%; }
}

/* ─── SACRED BADGE ─── */
.sacred-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,146,63,0.1);
  border: 1px solid rgba(201,146,63,0.3);
  border-radius: 60px;
  padding: 6px 16px;
  font-size: 0.72rem; letter-spacing: 0.12em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Cinzel', serif;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ─── URGENCY STRIP ─── */
.urgency-strip {
  background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--terracotta));
  background-size: 200% 100%;
  animation: gradient-move 6s ease-in-out infinite;
  text-align: center;
  padding: 10px;
  font-size: 0.8rem; letter-spacing: 0.08em;
  color: var(--midnight); font-weight: 600;
  position: relative; z-index: 101;
}
@keyframes gradient-move { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }

/* ════════════════ PDF PREVIEW SECTION ════════════════ */
.pdf-preview-section {
  background: linear-gradient(180deg, #0D0B1A 0%, #130F2A 100%);
  padding: 110px 24px 80px;
}
.pdf-preview-subtitle {
  text-align:center; color:rgba(247,243,238,0.5);
  font-size:0.9rem; margin:14px auto 48px; max-width:480px;
}
.pdf-viewer-wrap {
  max-width: 860px; margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,146,63,0.2);
  border-radius: 6px; overflow: hidden;
}
.pdf-toolbar {
  background: rgba(201,146,63,0.08);
  border-bottom: 1px solid rgba(201,146,63,0.15);
  padding: 10px 18px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.pdf-badge {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem; letter-spacing: 0.2em;
  color: var(--gold); opacity: 0.8;
}
.pdf-toolbar-right {
  display: flex; align-items: center; gap: 8px;
}
.pdf-tool-btn {
  background: rgba(201,146,63,0.12);
  border: 1px solid rgba(201,146,63,0.25);
  color: var(--gold-light); border-radius: 3px;
  width: 30px; height: 30px; cursor: pointer;
  font-size: 1.1rem; line-height: 1;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.pdf-tool-btn:hover { background: rgba(201,146,63,0.25); }
.pdf-fullscreen-btn { width: 34px; font-size: 0.9rem; }
.pdf-zoom-label, .pdf-page-label {
  font-size: 0.75rem; color: rgba(247,243,238,0.5);
  min-width: 40px; text-align: center;
}
.pdf-canvas-wrap {
  min-height: 560px; background: #1a1a2e;
  display: flex; align-items: center; justify-content: center;
  padding: 24px; position: relative;
}
.pdf-loading {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  color: rgba(247,243,238,0.4); font-size: 0.85rem;
}
.pdf-loading-mandala {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid rgba(201,146,63,0.3);
  border-top-color: var(--gold);
  animation: spin-slow 1.2s linear infinite;
}
.pdf-nav-bar {
  border-top: 1px solid rgba(201,146,63,0.12);
  padding: 12px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: rgba(255,255,255,0.02);
}
.pdf-nav-btn {
  background: rgba(201,146,63,0.1);
  border: 1px solid rgba(201,146,63,0.2);
  color: var(--gold-light); border-radius: 3px;
  padding: 7px 18px; cursor: pointer; font-size: 0.82rem;
  transition: background 0.2s;
  font-family: 'Cormorant Garamond', serif;
}
.pdf-nav-btn:hover { background: rgba(201,146,63,0.22); }
.pdf-thumb-strip {
  display: flex; gap: 8px; overflow-x: auto;
  max-width: calc(100% - 160px); padding-bottom: 2px;
  scrollbar-width: thin; scrollbar-color: rgba(201,146,63,0.3) transparent;
}
.pdf-thumb {
  flex-shrink: 0; width: 44px; height: 58px;
  border: 2px solid transparent; border-radius: 2px;
  cursor: pointer; overflow: hidden; background: #1a1a2e;
  transition: border-color 0.2s;
}
.pdf-thumb.active { border-color: var(--gold); }
.pdf-thumb canvas { width: 100%; height: 100%; object-fit: contain; }
.pdf-cta-bar {
  background: linear-gradient(135deg, rgba(193,105,79,0.12), rgba(201,146,63,0.1));
  border-top: 1px solid rgba(201,146,63,0.2);
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.pdf-cta-text strong {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--gold-light);
}
.pdf-cta-text span { font-size: 0.8rem; color: rgba(247,243,238,0.45); }

/* Fullscreen PDF */
.pdf-viewer-wrap.fullscreen {
  position: fixed; inset: 0; z-index: 1000; border-radius: 0;
  max-width: 100%; margin: 0;
  display: flex; flex-direction: column;
}
.pdf-viewer-wrap.fullscreen .pdf-canvas-wrap { flex: 1; min-height: 0; }

/* ════════════════ CHECKOUT MODAL ════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(13,11,26,0.95);
  backdrop-filter: blur(12px);
  display: none; align-items: flex-start; justify-content: center;
  padding: 24px 16px; overflow-y: auto;
}
.modal-overlay.open { display: flex; }

.checkout-modal {
  background: var(--cream); color: var(--ink);
  border-radius: 6px; width: 100%; max-width: 860px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  overflow: hidden; margin: auto;
  position: relative;
}

/* Modal close */
.modal-close {
  position: absolute; top: 18px; right: 18px;
  background: rgba(60,47,30,0.1); border: none;
  border-radius: 50%; width: 36px; height: 36px;
  cursor: pointer; font-size: 1.1rem; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: background 0.2s;
}
.modal-close:hover { background: rgba(60,47,30,0.2); }

/* Modal layout */
.checkout-cols {
  display: grid; grid-template-columns: 1fr 1.1fr;
}
@media (max-width: 680px) {
  .checkout-cols { grid-template-columns: 1fr; }
}

/* Order summary sidebar */
.checkout-summary {
  background: linear-gradient(180deg, #1A1535 0%, #0D0B1A 100%);
  color: var(--white); padding: 40px 32px;
}
.cs-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 300;
  color: var(--gold-light); margin-bottom: 6px;
}
.cs-subtitle { font-size: 0.78rem; color: rgba(247,243,238,0.45); margin-bottom: 28px; }
.cs-product {
  background: rgba(201,146,63,0.08);
  border: 1px solid rgba(201,146,63,0.18);
  border-radius: 4px; padding: 18px 16px;
  margin-bottom: 24px;
}
.cs-product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--gold-light); margin-bottom: 4px;
}
.cs-product-desc { font-size: 0.75rem; color: rgba(247,243,238,0.45); }
.cs-line-items { margin-bottom: 20px; }
.cs-line {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem; color: rgba(247,243,238,0.55);
}
.cs-line-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0; font-size: 1rem;
}
.cs-line-total-label {
  font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--white);
}
.cs-line-total-price {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem;
  font-weight: 600; color: var(--gold);
}
.cs-security {
  margin-top: 24px; display: flex; flex-direction: column; gap: 10px;
}
.cs-sec-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.75rem; color: rgba(247,243,238,0.4);
}
.cs-sec-icon { font-size: 0.9rem; color: var(--sage); }
.cs-testimonial {
  margin-top: 28px;
  background: rgba(255,255,255,0.04);
  border-radius: 4px; padding: 16px;
  font-size: 0.8rem; font-style: italic;
  color: rgba(247,243,238,0.5); line-height: 1.6;
}
.cs-testimonial-author {
  margin-top: 8px; font-style: normal;
  font-size: 0.72rem; color: rgba(201,146,63,0.6);
}

/* Form side */
.checkout-form-wrap { padding: 40px 36px; }
@media (max-width: 500px) { .checkout-form-wrap { padding: 28px 20px; } }

.cf-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--ink); margin-bottom: 4px;
}
.cf-subtitle { font-size: 0.8rem; color: rgba(60,47,30,0.5); margin-bottom: 28px; }

/* Steps */
.cf-steps {
  display: flex; gap: 0; margin-bottom: 28px;
}
.cf-step {
  flex: 1; text-align: center; padding-bottom: 12px;
  border-bottom: 2px solid rgba(139,107,74,0.15);
  font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(60,47,30,0.35);
  transition: all 0.25s; cursor: default;
}
.cf-step.active {
  border-bottom-color: var(--terracotta);
  color: var(--terracotta); font-weight: 600;
}
.cf-step.done {
  border-bottom-color: var(--sage);
  color: var(--sage);
}

/* Form panels */
.cf-panel { display: none; }
.cf-panel.active { display: block; }

.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: var(--warm-brown); margin-bottom: 6px; letter-spacing: 0.04em;
}
.form-input, .form-select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid rgba(139,107,74,0.2);
  border-radius: 3px; background: #fff;
  color: var(--ink); font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(193,105,79,0.12);
}
.form-input.error { border-color: #C0392B; }
.form-error {
  font-size: 0.72rem; color: #C0392B; margin-top: 4px; display: none;
}
.form-error.show { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Card field styling */
.card-icon-wrap { position: relative; }
.card-icon-wrap .form-input { padding-right: 48px; }
.card-icons {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  display: flex; gap: 4px; pointer-events: none;
}
.card-icon {
  width: 28px; height: 18px; border-radius: 2px;
  background: rgba(139,107,74,0.1); border: 1px solid rgba(139,107,74,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; color: rgba(60,47,30,0.4); font-weight: 700;
}
.card-icon.visa   { color: #1a1f71; background: rgba(26,31,113,0.08); }
.card-icon.mc     { color: #eb001b; background: rgba(235,0,27,0.06); }

/* Promo code */
.promo-row {
  display: flex; gap: 10px; margin-bottom: 18px;
}
.promo-row .form-input { margin: 0; }
.promo-btn {
  flex-shrink: 0; padding: 12px 18px;
  background: rgba(193,105,79,0.1);
  border: 1.5px solid rgba(193,105,79,0.3);
  border-radius: 3px; color: var(--terracotta);
  font-size: 0.8rem; font-weight: 600; cursor: pointer;
  transition: background 0.2s; white-space: nowrap;
}
.promo-btn:hover { background: rgba(193,105,79,0.2); }
.promo-success {
  font-size: 0.75rem; color: var(--sage);
  margin-top: -10px; margin-bottom: 14px; display: none;
}
.promo-success.show { display: block; }

/* Submit button */
.cf-submit {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  color: #fff; font-family: 'Cinzel', serif;
  font-size: 0.85rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600;
  border: none; border-radius: 3px; cursor: pointer;
  margin-top: 8px;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(193,105,79,0.35);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.cf-submit:hover { opacity: 0.92; transform: translateY(-2px); box-shadow: 0 6px 32px rgba(193,105,79,0.5); }
.cf-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.cf-submit-spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  animation: spin-slow 0.8s linear infinite;
  display: none;
}
.cf-submit.loading .cf-submit-spinner { display: block; }
.cf-submit.loading .cf-submit-text { opacity: 0.6; }

.cf-terms {
  font-size: 0.72rem; color: rgba(60,47,30,0.4);
  text-align: center; margin-top: 12px; line-height: 1.5;
}
.cf-terms a { color: var(--terracotta); text-decoration: none; }

/* Payment method tabs */
.payment-tabs {
  display: flex; gap: 0; margin-bottom: 20px;
  border: 1.5px solid rgba(139,107,74,0.18); border-radius: 4px; overflow: hidden;
}
.pay-tab {
  flex: 1; padding: 10px; text-align: center;
  background: #fff; border: none; cursor: pointer;
  font-size: 0.78rem; color: rgba(60,47,30,0.5);
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, color 0.2s;
  border-right: 1px solid rgba(139,107,74,0.15);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.pay-tab:last-child { border-right: none; }
.pay-tab.active {
  background: rgba(193,105,79,0.08);
  color: var(--terracotta); font-weight: 600;
}
.pay-method { display: none; }
.pay-method.active { display: block; }

/* ════════════ ORDER CONFIRMATION ════════════ */
.confirm-modal {
  background: var(--cream); color: var(--ink);
  border-radius: 6px; width: 100%; max-width: 640px;
  padding: 56px 48px; text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  margin: auto; position: relative;
}
@media (max-width:500px) { .confirm-modal { padding: 36px 24px; } }
.confirm-seal {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(122,158,126,0.15), rgba(201,146,63,0.1));
  border: 2px solid var(--sage); margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  animation: pulse-glow 2.5s ease-in-out infinite;
}
.confirm-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300; color: var(--ink);
  margin-bottom: 10px; line-height: 1.1;
}
.confirm-title em { color: var(--terracotta); font-style: italic; }
.confirm-subtitle {
  font-size: 0.9rem; color: rgba(60,47,30,0.6);
  margin-bottom: 32px; line-height: 1.6; max-width: 420px; margin-left: auto; margin-right: auto;
}
.confirm-email-box {
  background: rgba(122,158,126,0.08);
  border: 1px solid rgba(122,158,126,0.25);
  border-radius: 4px; padding: 16px 20px; margin-bottom: 28px;
  font-size: 0.85rem; color: rgba(60,47,30,0.65); text-align: left;
}
.confirm-email-box strong { color: var(--ink); display: block; margin-bottom: 4px; }
.confirm-download-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--sage), rgba(122,158,126,0.8));
  color: #fff; font-family: 'Cinzel', serif;
  font-size: 0.82rem; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 600;
  padding: 18px 40px; border-radius: 3px;
  border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 24px rgba(122,158,126,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 16px; width: 100%; justify-content: center;
}
.confirm-download-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 32px rgba(122,158,126,0.55); }
.confirm-next-steps {
  text-align: left; margin-top: 28px;
  border-top: 1px solid rgba(139,107,74,0.12); padding-top: 24px;
}
.confirm-next-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 600; color: var(--ink);
  margin-bottom: 14px;
}
.confirm-next-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.confirm-next-list li {
  font-size: 0.82rem; color: rgba(60,47,30,0.6);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.confirm-next-list li::before { content: '✦'; color: var(--terracotta); flex-shrink:0; margin-top:2px; }
.confirm-share {
  margin-top: 24px;
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.share-label { font-size: 0.78rem; color: rgba(60,47,30,0.4); }
.share-btn {
  padding: 8px 16px; border-radius: 3px; font-size: 0.75rem;
  font-weight: 600; cursor: pointer; border: none; transition: opacity 0.2s;
  text-decoration: none; display: inline-block;
}
.share-btn:hover { opacity: 0.8; }
.share-ig { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); color:#fff; }
.share-pin { background: #E60023; color: #fff; }
.share-wa { background: #25D366; color: #fff; }


/* ════ PDF PAGE PREVIEW SECTION ════ */
.pages-preview-section {
  background: linear-gradient(180deg, #0D0B1A 0%, #130F2A 100%);
  padding: 110px 24px 80px;
}
.pp-subtitle {
  text-align:center; color:rgba(247,243,238,0.5);
  font-size:0.9rem; margin:14px auto 56px; max-width:520px; line-height:1.7;
}
.pp-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}
@media (max-width:900px) { .pp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:560px) { .pp-grid { grid-template-columns: 1fr; } }
.pp-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,146,63,0.15);
  border-radius: 6px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(201,146,63,0.18);
  border-color: rgba(201,146,63,0.4);
}
.pp-card--large { grid-row: span 1; }
.pp-card-badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: rgba(201,146,63,0.9);
  color: #0D0B1A; font-family: 'Cinzel', serif;
  font-size: 0.58rem; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 700;
  padding: 4px 10px; border-radius: 2px;
}
.pp-badge--terra { background: rgba(193,105,79,0.9); color:#fff; }
.pp-badge--sage  { background: rgba(122,158,126,0.9); color:#fff; }
.pp-badge--gold  { background: rgba(201,146,63,0.9);  color:#0D0B1A; }
.pp-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 0.707; /* A4 ratio */
  background: #1a1535;
}
.pp-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.pp-card:hover .pp-img { transform: scale(1.04); }
.pp-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,11,26,0.85) 0%, transparent 50%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 16px;
  opacity: 0; transition: opacity 0.3s;
}
.pp-card:hover .pp-card-overlay { opacity: 1; }
.pp-card-overlay span {
  font-family: 'Cormorant Garamond',serif;
  font-size: 1.1rem; color: var(--gold-light); font-weight: 500;
}
.pp-card-overlay em {
  font-size: 0.72rem; color: rgba(247,243,238,0.6);
  font-style: italic; margin-top: 2px;
}
.pp-card-label { padding: 14px 16px; }
.pp-card-name {
  font-family: 'Cormorant Garamond',serif;
  font-size: 0.95rem; color: var(--gold-light); font-weight: 500;
  margin-bottom: 4px;
}
.pp-card-desc { font-size: 0.72rem; color: rgba(247,243,238,0.4); line-height:1.5; }
.pp-bottom {
  max-width: 1100px; margin: 48px auto 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  background: rgba(201,146,63,0.06);
  border: 1px solid rgba(201,146,63,0.2);
  border-radius: 4px; padding: 22px 28px;
}
.pp-bottom-text strong {
  display: block; font-family:'Cormorant Garamond',serif;
  font-size: 1.1rem; color:var(--gold-light);
}
.pp-bottom-text span { font-size:0.8rem; color:rgba(247,243,238,0.45); }
/* Lazy load placeholder */
.pp-img[src=""] { background: linear-gradient(135deg,rgba(201,146,63,0.08),rgba(45,37,80,0.5)); }

/* ════ YOGA POSES GALLERY SECTION ════ */
.poses-gallery-section {
  background: linear-gradient(180deg, #FAF6EF 0%, #F5EDE0 100%);
  color: var(--ink);
  padding: 110px 24px 80px;
  position: relative; overflow: hidden;
}
.poses-gallery-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Cinzel',serif;
  font-size: clamp(8rem,22vw,18rem);
  font-weight: 600; letter-spacing: 0.2em;
  color: rgba(193,105,79,0.045);
  pointer-events: none; user-select: none;
  white-space: nowrap;
}
.pg-subtitle {
  text-align:center; color:rgba(60,47,30,0.55);
  font-size:0.92rem; margin:14px auto 56px; max-width:580px; line-height:1.75;
}
/* Featured pose display */
.pg-featured {
  max-width: 1060px; margin: 0 auto 56px;
  display: grid; grid-template-columns: 420px 1fr;
  gap: 56px; align-items: center;
}
@media (max-width:860px) { .pg-featured { grid-template-columns:1fr; } }
.pg-featured-image {
  position: relative; text-align: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 48px rgba(193,105,79,0.12);
  padding: 32px 24px 20px;
  border: 1px solid rgba(193,105,79,0.1);
}
.pg-featured-halo {
  position: absolute; inset: -2px;
  border-radius: 10px;
  background: linear-gradient(135deg,rgba(193,105,79,0.15),rgba(122,158,126,0.1),rgba(201,146,63,0.15));
  z-index: 0;
  animation: halo-glow 4s ease-in-out infinite;
}
@keyframes halo-glow {
  0%,100%{opacity:0.5} 50%{opacity:1}
}
.pg-feat-img {
  width: 100%; max-width: 320px;
  height: auto; position: relative; z-index: 1;
  transition: transform 0.4s cubic-bezier(.23,1,.32,1);
  filter: drop-shadow(0 4px 20px rgba(193,105,79,0.15));
}
.pg-featured:hover .pg-feat-img { transform: translateY(-6px); }
.pg-featured-label {
  margin-top: 16px; position: relative; z-index: 1;
}
.pg-featured-label span {
  display: block; font-family:'Cormorant Garamond',serif;
  font-size: 1.2rem; font-weight:600; color:var(--ink);
}
.pg-featured-label em {
  font-size:0.78rem; color:rgba(60,47,30,0.45);
  font-style:italic;
}
/* Featured info panel */
.pg-feat-tag {
  display: inline-block;
  background: rgba(193,105,79,0.12);
  color: var(--terracotta); font-family:'Cinzel',serif;
  font-size:0.62rem; letter-spacing:0.2em;
  text-transform:uppercase; font-weight:600;
  padding: 5px 14px; border-radius:2px;
  margin-bottom: 16px;
}
.pg-feat-title {
  font-family:'Cormorant Garamond',serif;
  font-size: 2.4rem; font-weight:300;
  color:var(--ink); line-height:1.1; margin-bottom:14px;
}
.pg-feat-desc {
  font-size: 0.9rem; color:rgba(60,47,30,0.65);
  line-height:1.75; margin-bottom:24px;
}
.pg-feat-details { display:flex; flex-direction:column; gap:12px; margin-bottom:28px; }
.pg-detail {
  display:grid; grid-template-columns:120px 1fr;
  gap:10px; align-items:baseline;
  padding-bottom:10px;
  border-bottom:1px solid rgba(139,107,74,0.1);
}
.pg-detail-label {
  font-family:'Cinzel',serif; font-size:0.58rem;
  letter-spacing:0.2em; color:var(--terracotta);
  text-transform:uppercase; font-weight:600;
}
.pg-detail-val { font-size:0.82rem; color:rgba(60,47,30,0.65); }
.pg-cta-btn {
  display:inline-flex; align-items:center; gap:8px;
  background:linear-gradient(135deg,var(--terracotta),var(--gold));
  color:#fff; font-family:'Cinzel',serif;
  font-size:0.72rem; letter-spacing:0.15em;
  text-transform:uppercase; font-weight:600;
  padding:14px 28px; border-radius:2px;
  text-decoration:none; border:none; cursor:pointer;
  box-shadow:0 4px 20px rgba(193,105,79,0.3);
  transition:transform 0.2s, box-shadow 0.2s;
}
.pg-cta-btn:hover { transform:translateY(-2px); box-shadow:0 6px 30px rgba(193,105,79,0.5); }
/* Pose selector grid */
.pg-grid {
  max-width: 1060px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
@media (max-width:900px) { .pg-grid { grid-template-columns:repeat(4,1fr); } }
@media (max-width:560px) { .pg-grid { grid-template-columns:repeat(3,1fr); } }
.pg-thumb {
  background: #fff;
  border: 2px solid rgba(193,105,79,0.1);
  border-radius: 6px; padding: 12px 8px 10px;
  cursor: pointer; text-align:center;
  transition: all 0.22s;
  display:flex; flex-direction:column; align-items:center; gap:8px;
}
.pg-thumb:hover {
  border-color: rgba(193,105,79,0.4);
  box-shadow: 0 4px 20px rgba(193,105,79,0.12);
  transform: translateY(-3px);
}
.pg-thumb.active {
  border-color: var(--terracotta);
  background: rgba(193,105,79,0.04);
  box-shadow: 0 4px 20px rgba(193,105,79,0.18);
}
.pg-thumb-img-wrap {
  width: 80px; height: 100px; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.pg-thumb-img {
  width:100%; height:100%; object-fit:contain;
  transition: transform 0.3s;
}
.pg-thumb:hover .pg-thumb-img, .pg-thumb.active .pg-thumb-img { transform: scale(1.06); }
.pg-thumb span {
  font-size:0.68rem; color:rgba(60,47,30,0.6); font-weight:500;
  line-height:1.2;
}
.pg-thumb.active span { color:var(--terracotta); font-weight:600; }