:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #161616;
  --fg: #f0ece4;
  --fg-muted: #a09b90;
  --fg-dim: #6b665c;
  --gold: #c9a96e;
  --gold-light: #dfc68a;
  --gold-glow: rgba(201, 169, 110, 0.15);
  --pink: #d4919b;
  --pink-light: #e8b4bc;
  --pink-glow: rgba(212, 145, 155, 0.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --container: 1100px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-pad { padding: var(--space-2xl) 0; }

.section-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: var(--space-md);
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink) 0%, var(--gold) 100%);
  color: #0a0a0a;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 4px 24px rgba(212, 145, 155, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 145, 155, 0.4);
  opacity: 0.95;
}
.btn-large { padding: 1.25rem 3rem; font-size: 1.0625rem; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--fg);
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-light); }

/* ============ SPARKLES ============ */
.sparkle {
  position: absolute;
  color: var(--pink-light);
  font-size: 0.75rem;
  opacity: 0.4;
  animation: sparkle-float 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.sparkle-1 { top: 15%; left: 15%; animation-delay: 0s; }
.sparkle-2 { top: 25%; right: 18%; animation-delay: 1.5s; }
.sparkle-3 { top: 70%; left: 10%; animation-delay: 3s; }
@keyframes sparkle-float {
  0%, 100% { opacity: 0.2; transform: translateY(0) scale(1); }
  50% { opacity: 0.6; transform: translateY(-8px) scale(1.2); }
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-lg) var(--space-md);
}
.hero-compact { min-height: 70vh; }

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--pink-glow) 0%, var(--gold-glow) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.hero-title em { font-style: italic; color: var(--pink-light); }
.hero-tagline {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  opacity: 0.8;
}
.hero-subtitle {
  font-family: var(--sans);
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto var(--space-md);
  line-height: 1.8;
}
.hero-micro {
  margin-top: var(--space-sm);
  font-size: 0.8125rem;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
}

/* ============ PAIN ============ */
.pain { border-top: 1px solid rgba(201, 169, 110, 0.08); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.06);
  border-radius: 16px;
  padding: var(--space-md);
}
.pain-icon {
  display: block;
  color: var(--pink);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  opacity: 0.7;
}
.pain-card p { font-size: 0.9375rem; color: var(--fg-muted); line-height: 1.8; }

/* ============ BRIDGE ============ */
.bridge { border-top: 1px solid rgba(212, 145, 155, 0.08); }
.bridge-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.bridge-butterfly { font-size: 2.5rem; margin-bottom: var(--space-md); display: block; }
.bridge-heading {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: var(--space-md);
}
.bridge-heading em { font-style: italic; color: var(--pink-light); }
.bridge-text {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.9;
}

/* ============ INSIDE / PILLARS ============ */
.inside { border-top: 1px solid rgba(201, 169, 110, 0.08); }
.inside-intro {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  max-width: 620px;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  text-align: left;
}
.pillar {
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: 12px;
  padding: var(--space-md);
  transition: border-color 0.3s ease;
}
.pillar:hover { border-color: rgba(212, 145, 155, 0.25); }
.pillar-number {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: var(--space-xs);
}
.pillar h3 { font-family: var(--serif); font-size: 1.375rem; font-weight: 500; color: var(--fg); margin-bottom: var(--space-xs); }
.pillar p { font-size: 0.9375rem; color: var(--fg-muted); line-height: 1.7; }

/* ============ FOR WHO ============ */
.for-who { border-top: 1px solid rgba(201, 169, 110, 0.08); }
.for-who-list {
  list-style: none;
  max-width: 640px;
  margin-top: var(--space-md);
}
.for-who-list li {
  font-size: 1rem;
  color: var(--fg-muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.06);
  padding-left: 1.5rem;
  position: relative;
}
.for-who-list li::before {
  content: '✦';
  color: var(--pink);
  font-size: 0.5rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
}

/* ============ TESTIMONIALS ============ */
.proof { border-top: 1px solid rgba(201, 169, 110, 0.08); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.testimonial-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(212, 145, 155, 0.08);
  border-radius: 16px;
  padding: var(--space-md);
}
.testimonial-text {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}
.testimonial-author { font-size: 0.8125rem; color: var(--gold); letter-spacing: 0.05em; }

/* ============ PRICING ============ */
.pricing { border-top: 1px solid rgba(201, 169, 110, 0.08); }
.pricing-box {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212, 145, 155, 0.04) 50%, rgba(201, 169, 110, 0.04) 100%);
  border: 1px solid rgba(212, 145, 155, 0.2);
  border-radius: 24px;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  overflow: hidden;
}
.pricing-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 145, 155, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink-light);
  background: rgba(212, 145, 155, 0.1);
  padding: 0.3rem 1rem;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}
.pricing-format { font-size: 0.875rem; color: var(--fg-dim); margin-bottom: var(--space-md); letter-spacing: 0.05em; }
.pricing-amount { margin-bottom: var(--space-md); }
.pricing-price {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 400;
  color: var(--fg);
  line-height: 1;
}
.pricing-sub { font-size: 0.875rem; color: var(--fg-dim); display: block; margin-top: 0.25rem; }
.pricing-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.pricing-was { font-size: 1rem; color: var(--fg-dim); text-decoration: line-through; }
.pricing-arrow { color: var(--fg-dim); }
.pricing-includes {
  list-style: none;
  text-align: left;
  margin: 0 auto var(--space-lg);
  max-width: 400px;
}
.pricing-includes li {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-includes li:last-child { border-bottom: none; }
.pricing-micro { margin-top: var(--space-sm); font-size: 0.8125rem; color: var(--fg-dim); }

/* ============ FAQ ============ */
.faq { border-top: 1px solid rgba(201, 169, 110, 0.08); }
.faq-list { margin-top: var(--space-xl); max-width: 720px; }
.faq-item { margin-bottom: var(--space-md); padding-bottom: var(--space-md); border-bottom: 1px solid rgba(201, 169, 110, 0.06); }
.faq-item h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; color: var(--fg); margin-bottom: 0.5rem; }
.faq-item p { font-size: 0.9375rem; color: var(--fg-muted); line-height: 1.8; }
.faq-item a { color: var(--gold); text-decoration: none; }
.faq-item a:hover { color: var(--gold-light); }

/* ============ FINAL CTA ============ */
.final-cta { border-top: 1px solid rgba(212, 145, 155, 0.08); }
.final-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.final-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: var(--space-md);
}
.final-sub { font-size: 1.0625rem; color: var(--fg-muted); line-height: 1.8; margin-bottom: var(--space-lg); }

/* ============ BUNDLE ============ */
.bundle-save-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(212, 145, 155, 0.15) 0%, rgba(201, 169, 110, 0.15) 100%);
  border: 1px solid rgba(212, 145, 155, 0.25);
  color: var(--pink-light);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.bundle-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: 16px;
  padding: var(--space-md);
  transition: border-color 0.3s ease;
}
.bundle-card:hover { border-color: rgba(212, 145, 155, 0.2); }
.bundle-main {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212, 145, 155, 0.04) 100%);
  border-color: rgba(212, 145, 155, 0.12);
}
.bundle-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-sm); }
.bundle-price-tag { font-size: 0.8125rem; color: var(--fg-dim); font-weight: 500; }
.bundle-card h3 { font-family: var(--serif); font-size: 1.375rem; font-weight: 500; color: var(--fg); margin-bottom: 0.25rem; }
.bundle-card p:not(.product-format):not(.bundle-price-tag) { font-size: 0.9375rem; color: var(--fg-muted); line-height: 1.7; }

.alt-offer { border-top: 1px solid rgba(201, 169, 110, 0.06); }
.alt-inner { text-align: center; }
.alt-inner p { font-size: 0.9375rem; color: var(--fg-dim); margin-bottom: var(--space-sm); }

/* ============ PRODUCT TAGS ============ */
.product-tag {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink-light);
  background: rgba(212, 145, 155, 0.1);
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}
.product-format {
  font-size: 0.8125rem;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

/* ============ CHECKOUT ============ */
.checkout-body {
  background: var(--bg);
  min-height: 100vh;
}
.checkout-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.checkout-summary {
  background: var(--bg-elevated);
  border-right: 1px solid rgba(201, 169, 110, 0.08);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.checkout-brand {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}
.checkout-item {
  background: var(--bg-card);
  border: 1px solid rgba(212, 145, 155, 0.1);
  border-radius: 16px;
  padding: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
}
.checkout-item-main { border-color: rgba(212, 145, 155, 0.2); }
.checkout-item-info h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; margin-bottom: 0.25rem; }
.checkout-item-detail { font-size: 0.8125rem; color: var(--fg-dim); margin-top: 0.25rem; }
.checkout-item-price { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; color: var(--fg); white-space: nowrap; }

/* ORDER BUMPS */
.order-bumps { display: flex; flex-direction: column; gap: var(--space-sm); }
.bumps-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.bump-card {
  display: flex;
  gap: var(--space-sm);
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 14px;
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  user-select: none;
}
.bump-card:hover { border-color: rgba(212, 145, 155, 0.25); }
.bump-selected {
  background: rgba(212, 145, 155, 0.04);
  border-color: rgba(212, 145, 155, 0.35) !important;
}
.bump-checkbox-col { display: flex; align-items: flex-start; padding-top: 0.1rem; flex-shrink: 0; }
.bump-checkbox { display: none; }
.bump-check-visual {
  width: 20px; height: 20px;
  border: 1.5px solid rgba(201, 169, 110, 0.3);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease;
  position: relative;
}
.bump-checkbox:checked + .bump-check-visual {
  background: linear-gradient(135deg, var(--pink) 0%, var(--gold) 100%);
  border-color: transparent;
}
.bump-checkbox:checked + .bump-check-visual::after {
  content: '✓';
  color: #0a0a0a;
  font-size: 0.75rem;
  font-weight: 700;
  position: absolute;
}
.bump-info { flex: 1; }
.bump-name { font-weight: 500; font-size: 0.9375rem; color: var(--fg); margin-bottom: 0.25rem; }
.bump-desc { font-size: 0.8125rem; color: var(--fg-muted); line-height: 1.6; margin-bottom: 0.35rem; }
.bump-price { font-size: 0.8125rem; color: var(--gold); font-weight: 500; }

.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}
.total-label { font-weight: 500; color: var(--fg-muted); font-size: 0.9375rem; }
.total-price { font-family: var(--serif); font-size: 1.75rem; color: var(--fg); }
.checkout-guarantee {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.8125rem;
  color: var(--fg-dim);
  line-height: 1.6;
}
.guarantee-icon { font-size: 1rem; flex-shrink: 0; }

/* CHECKOUT ACTION */
.checkout-action {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}
.checkout-action-inner {
  position: relative;
  max-width: 420px;
  width: 100%;
  text-align: center;
  z-index: 1;
}
.checkout-action-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}
.checkout-action-title em { font-style: italic; color: var(--pink-light); }
.checkout-action-sub { font-size: 0.9375rem; color: var(--fg-muted); line-height: 1.7; margin-bottom: var(--space-lg); }
.btn-checkout { width: 100%; }
.checkout-security {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  font-size: 0.75rem;
  color: var(--fg-dim);
  margin-top: var(--space-sm);
  flex-wrap: wrap;
}
.checkout-also {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(201, 169, 110, 0.06);
  font-size: 0.875rem;
  color: var(--fg-dim);
}
.checkout-also a { color: var(--gold); text-decoration: none; }
.checkout-also a:hover { color: var(--gold-light); }

/* ============ BUNDLE UPSELL (checkout) ============ */
.bundle-upsell {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.bundle-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201, 169, 110, 0.04) 100%);
  border-color: rgba(201, 169, 110, 0.2) !important;
}
.bundle-card:hover { border-color: rgba(201, 169, 110, 0.4) !important; }
.bundle-card.bump-selected {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.08) 0%, rgba(212, 145, 155, 0.06) 100%) !important;
  border-color: rgba(201, 169, 110, 0.4) !important;
}
.bundle-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}
.bundle-value-tag {
  font-size: 0.75rem;
  color: var(--fg-dim);
  text-decoration: line-through;
}

/* Sparkles small */
.sparkle-sm-1 { top: 10%; left: 5%; font-size: 0.6rem; }
.sparkle-sm-2 { bottom: 15%; right: 8%; font-size: 0.6rem; animation-delay: 2s; }

/* ============ UPSELL ============ */
.upsell-body { background: var(--bg); min-height: 100vh; display: flex; flex-direction: column; }
.upsell-body .site-header { padding: 1.5rem 0 0; }
.upsell-wrap { width: 100%; padding: var(--space-lg) var(--space-md) var(--space-xl); flex: 1; display: flex; align-items: center; }
.upsell-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.upsell-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(circle, var(--pink-glow) 0%, transparent 70%);
  pointer-events: none;
}
.upsell-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}
.upsell-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}
.upsell-title em { font-style: italic; color: var(--pink-light); }
.upsell-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(212, 145, 155, 0.2);
  border-radius: 24px;
  padding: var(--space-xl) var(--space-lg);
  text-align: left;
  overflow: hidden;
}
.upsell-card-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-light);
  background: rgba(212, 145, 155, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}
.upsell-card-inner { display: grid; grid-template-columns: 1fr auto; gap: var(--space-lg); align-items: start; }
.upsell-product h2 { font-family: var(--serif); font-size: 1.75rem; font-weight: 400; margin-bottom: 0.25rem; }
.upsell-product-detail { font-size: 0.8125rem; color: var(--fg-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-sm); }
.upsell-product-desc { font-size: 0.9375rem; color: var(--fg-muted); line-height: 1.8; margin-bottom: var(--space-sm); }
.upsell-features { list-style: none; }
.upsell-features li { font-size: 0.875rem; color: var(--fg-muted); padding: 0.3rem 0; }
.upsell-price-block { text-align: center; flex-shrink: 0; min-width: 120px; }
.upsell-price-was { font-size: 0.875rem; color: var(--fg-dim); text-decoration: line-through; margin-bottom: 0.25rem; }
.upsell-price { font-family: var(--serif); font-size: 3rem; color: var(--fg); line-height: 1; }
.upsell-price-note { font-size: 0.75rem; color: var(--fg-dim); margin-top: 0.25rem; }
.upsell-actions {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}
.upsell-skip {
  font-size: 0.8125rem;
  color: var(--fg-dim);
  text-decoration: none;
  padding: 0.5rem;
  transition: color 0.2s ease;
}
.upsell-skip:hover { color: var(--fg-muted); }
.upsell-reassure {
  margin-top: var(--space-md);
  font-size: 0.8125rem;
  color: var(--fg-dim);
  text-align: center;
}

/* ============ THANKS ============ */
.thanks-body { background: var(--bg); min-height: 100vh; display: flex; flex-direction: column; }
.thanks-body .site-header { padding: 1.5rem 0 0; }
.thanks-wrap { width: 100%; padding: var(--space-lg) var(--space-md) var(--space-xl); flex: 1; display: flex; align-items: center; }
.thanks-content {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.thanks-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 145, 155, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.thanks-icon { font-size: 3rem; margin-bottom: var(--space-sm); display: block; }
.thanks-eyebrow { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--space-sm); }
.thanks-title { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 400; line-height: 1.1; margin-bottom: var(--space-sm); }
.thanks-title em { font-style: italic; color: var(--pink-light); }
.thanks-sub { font-size: 1.0625rem; color: var(--fg-muted); margin-bottom: var(--space-xl); }

.downloads-section {
  background: var(--bg-card);
  border: 1px solid rgba(212, 145, 155, 0.12);
  border-radius: 20px;
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  text-align: left;
}
.downloads-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}
.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.06);
}
.download-card:last-child { border-bottom: none; }
.download-main { padding-bottom: var(--space-sm); margin-bottom: var(--space-xs); }
.download-info h3 { font-family: var(--serif); font-size: 1.125rem; font-weight: 500; margin-bottom: 0.2rem; }
.download-info p { font-size: 0.8125rem; color: var(--fg-dim); }
.btn-download {
  display: inline-block;
  background: transparent;
  color: var(--pink-light);
  border: 1px solid rgba(212, 145, 155, 0.25);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-download:hover { background: rgba(212, 145, 155, 0.08); border-color: rgba(212, 145, 155, 0.5); }

.upsell-success-banner {
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 12px;
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-md);
  font-size: 0.9375rem;
  color: var(--gold-light);
  text-align: center;
}
.upsell-success-banner strong { color: var(--gold); }

.start-here {
  background: var(--bg-elevated);
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: 20px;
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  text-align: left;
}
.start-here-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}
.start-here-card { display: flex; gap: var(--space-sm); margin-bottom: var(--space-md); }
.start-here-card:last-child { margin-bottom: 0; }
.start-number {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--pink);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
}
.start-title { font-weight: 500; color: var(--fg); margin-bottom: 0.25rem; }
.start-desc { font-size: 0.9375rem; color: var(--fg-muted); line-height: 1.7; }

.thanks-support {
  font-size: 0.875rem;
  color: var(--fg-dim);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.thanks-support a { color: var(--gold); text-decoration: none; }
.thanks-support a:hover { color: var(--gold-light); }
.thanks-support-note { margin-top: 0.5rem; opacity: 0.7; }
.thanks-footer-links a { font-size: 0.875rem; color: var(--fg-dim); text-decoration: none; }
.thanks-footer-links a:hover { color: var(--fg-muted); }

/* ============ FOOTER ============ */
.site-footer { padding: var(--space-xl) 0 var(--space-lg); border-top: 1px solid rgba(201, 169, 110, 0.06); }
.footer-inner { text-align: center; }
.footer-brand { font-family: var(--serif); font-size: 1.125rem; font-weight: 500; color: var(--fg); margin-bottom: 0.25rem; }
.footer-tagline { font-size: 0.8125rem; color: var(--fg-dim); letter-spacing: 0.1em; margin-bottom: var(--space-sm); }
.footer-links { font-size: 0.8125rem; color: var(--fg-dim); }
.footer-links a { color: var(--fg-dim); text-decoration: none; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold); }

/* ============ SITE HEADER / LOGO ============ */
.site-header {
  padding: 1.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}
.header-logo-link {
  display: inline-block;
  text-decoration: none;
}
.header-logo-img {
  display: block;
  max-height: 72px;
  width: auto;
}
.checkout-summary .checkout-brand-logo {
  display: block;
  max-height: 52px;
  width: auto;
  margin-bottom: var(--space-sm);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .checkout-wrap { grid-template-columns: 1fr; }
  .checkout-summary { border-right: none; border-bottom: 1px solid rgba(201, 169, 110, 0.08); padding: var(--space-lg) var(--space-md); }
  .checkout-action { padding: var(--space-lg) var(--space-md); }
  .upsell-card-inner { grid-template-columns: 1fr; }
  .upsell-price-block { text-align: left; }
}

@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .bundle-grid { grid-template-columns: 1fr; }
  .bundle-main { grid-column: 1; }
}

@media (max-width: 600px) {
  .pillars { grid-template-columns: 1fr; }
  .checkout-security { gap: var(--space-sm); }
  .download-card { flex-direction: column; align-items: flex-start; gap: var(--space-xs); }
}

@media (max-width: 480px) {
  :root {
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 5rem;
  }
  .hero-title { font-size: 2.5rem; }
  .pricing-box { padding: var(--space-lg) var(--space-md); }
  .upsell-card { padding: var(--space-lg) var(--space-md); }
  .thanks-wrap { padding: var(--space-lg) var(--space-sm); }
}
