*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FAF6F0;
  --cream-dark: #F2EBE0;
  --cream-deeper: #E8DDD0;
  --gold: #C4973A;
  --gold-light: #D4A94A;
  --gold-pale: #F5ECD8;
  --gold-deep: #8B6820;
  --brown: #3D2B1F;
  --brown-mid: #6B4E38;
  --brown-soft: #9C7A60;
  --text: #2A1F15;
  --text-soft: #6B5040;
  --text-muted: #9C8070;
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --shadow: 0 4px 24px rgba(61,43,31,0.08);
  --shadow-lg: 0 12px 48px rgba(61,43,31,0.14);

  /* Text presentation (U+FE0E) — Safari iOS otherwise renders as emoji */
  --gs-cross: '\271D\FE0E';
}

/* Typography symbols (not colorful emoji). Use var(--gs-cross) in content or .gs-text-symbol--cross in HTML. */
.gs-text-symbol {
  font-family: var(--serif), Georgia, 'Times New Roman', serif;
  font-variant-emoji: text;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════
   QUIZ SECTION
═══════════════════════════════════════ */
#quiz-section {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
}

.quiz-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--cream-deeper);
}

.quiz-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quiz-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.quiz-logo-text {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--brown);
}

.quiz-progress-wrap {
  padding: 16px 24px 0;
}

.quiz-progress-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.quiz-progress-bar {
  height: 4px;
  background: var(--cream-deeper);
  border-radius: 99px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 99px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-body {
  flex: 1;
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}

.quiz-question {
  display: none;
  flex-direction: column;
  flex: 1;
  animation: fadeSlideIn 0.4s ease forwards;
}

.quiz-question.active {
  display: flex;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

.quiz-q-number {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.quiz-q-text {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--brown);
  margin-bottom: 8px;
}

.quiz-q-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border: 1.5px solid var(--cream-deeper);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.22s ease;
  text-align: left;
}

.quiz-option:hover {
  border-color: var(--gold-light);
  background: var(--gold-pale);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.quiz-option.selected {
  border-color: var(--gold);
  background: var(--gold-pale);
  box-shadow: 0 0 0 3px rgba(196,151,58,0.15);
}

.quiz-option-icon {
  font-size: 22px;
  width: 44px;
  height: 44px;
  background: var(--cream-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.22s ease;
}

.quiz-option.selected .quiz-option-icon {
  background: rgba(196,151,58,0.2);
}

.quiz-option-text { font-size: 15px; font-weight: 500; color: var(--brown); line-height: 1.4; }
.quiz-option-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* Name input */
.quiz-name-input {
  width: 100%;
  padding: 18px 20px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  background: var(--white);
  border: 1.5px solid var(--cream-deeper);
  border-radius: 16px;
  color: var(--brown);
  outline: none;
  transition: border-color 0.22s;
  margin-bottom: 12px;
}

.quiz-name-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,151,58,0.12); }
.quiz-name-input::placeholder { color: var(--text-muted); font-size: 16px; font-family: var(--sans); }

.quiz-continue-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--white);
  border: none;
  border-radius: 99px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 4px 20px rgba(196,151,58,0.35);
  margin-top: auto;
  letter-spacing: 0.02em;
}

.quiz-continue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196,151,58,0.45);
}

.quiz-continue-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* Loading screen */
#quiz-loading {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--cream);
  padding: 40px 24px;
  text-align: center;
}

.loading-cross {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 32px;
  animation: pulse 1.5s ease-in-out infinite;
}

.loading-cross.gs-text-symbol,
.quiz-logo-icon.gs-text-symbol {
  line-height: 1;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(196,151,58,0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 16px rgba(196,151,58,0); }
}

.loading-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 8px;
}

.loading-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 40px; }

.loading-steps { display: flex; flex-direction: column; gap: 14px; width: 100%; max-width: 320px; }

.loading-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--cream-deeper);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.loading-step.visible { opacity: 1; transform: translateY(0); }

.loading-step-check {
  width: 28px; height: 28px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.loading-step.done .loading-step-check { background: #4CAF50; }
.loading-step-text { font-size: 14px; color: var(--brown-mid); font-weight: 500; }

.loading-bar-wrap { width: 100%; max-width: 320px; margin-top: 28px; }
.loading-bar-bg { height: 6px; background: var(--cream-deeper); border-radius: 99px; overflow: hidden; }
.loading-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 99px;
  width: 0%;
  transition: width 0.3s ease;
}
.loading-pct { font-size: 13px; color: var(--gold-deep); font-weight: 600; margin-top: 8px; text-align: right; }

/* ═══════════════════════════════════════
   BRIDGE SECTION
═══════════════════════════════════════ */
#bridge-section {
  display: none;
  background: var(--cream);
  padding-bottom: 100px;
}

.bridge-hero {
  background: linear-gradient(160deg, var(--brown) 0%, #5C3D28 100%);
  padding: 48px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bridge-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C4973A' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.bridge-tag {
  display: inline-block;
  background: rgba(196,151,58,0.2);
  border: 1px solid rgba(196,151,58,0.4);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.bridge-hero-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.bridge-hero-title span { color: var(--gold-light); font-style: italic; }

.bridge-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 340px;
  margin: 0 auto 28px;
}

.bridge-profile-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 20px;
  max-width: 360px;
  margin: 0 auto;
  text-align: left;
  backdrop-filter: blur(10px);
}

.bridge-profile-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bridge-profile-row:last-child { border-bottom: none; }
.bridge-profile-check { color: var(--gold-light); font-size: 14px; flex-shrink: 0; }
.bridge-profile-label { font-size: 12px; color: rgba(255,255,255,0.5); width: 120px; flex-shrink: 0; }
.bridge-profile-value { font-size: 14px; color: var(--white); font-weight: 500; }

.bridge-section-pad { padding: 40px 24px; max-width: 520px; margin: 0 auto; }

.bridge-section-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 6px;
}

.bridge-section-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.5; }

/* Styles horizontal scroll */
.styles-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 0 16px;
  scrollbar-width: none;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}

.styles-scroll::-webkit-scrollbar { display: none; }

.style-card {
  flex-shrink: 0;
  width: 140px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--cream-deeper);
}

.style-card-img {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.style-card-img.c1 { background: linear-gradient(135deg, #2D1B0E, #5C3D28); }
.style-card-img.c2 { background: linear-gradient(135deg, #1A2A1A, #3A5A3A); }
.style-card-img.c3 { background: linear-gradient(135deg, #1A1A2A, #3A3A6A); }
.style-card-img.c4 { background: linear-gradient(135deg, #2A1A0A, #6A4A1A); }
.style-card-img.c5 { background: linear-gradient(135deg, #2A0A0A, #6A2A2A); }
.style-card-img.c6 { background: linear-gradient(135deg, #0A1A2A, #2A5A6A); }

.style-card-body { padding: 12px; }
.style-card-name { font-size: 13px; font-weight: 600; color: var(--brown); margin-bottom: 4px; }
.style-card-desc { font-size: 11px; color: var(--text-muted); line-height: 1.4; }

/* Song theme cards */
.songs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.song-card {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  border: 1.5px solid var(--cream-deeper);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.song-card:hover { transform: translateY(-2px); }

.song-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
}

.song-card-icon.bg1 { background: linear-gradient(135deg, #F5ECD8, #E8DDD0); }
.song-card-icon.bg2 { background: linear-gradient(135deg, #E8F0E8, #D0E8D0); }
.song-card-icon.bg3 { background: linear-gradient(135deg, #F0E8F0, #E0D0E8); }
.song-card-icon.bg4 { background: linear-gradient(135deg, #F0F0E8, #E0E0C8); }
.song-card-icon.bg5 { background: linear-gradient(135deg, #F0E8E8, #E8D0D0); }
.song-card-icon.bg6 { background: linear-gradient(135deg, #E8F0F0, #D0E8E8); }

.song-card-title { font-size: 13px; font-weight: 600; color: var(--brown); line-height: 1.3; }

/* How it works */
.how-steps { display: flex; flex-direction: column; gap: 16px; }

.how-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: 20px;
  border: 1.5px solid var(--cream-deeper);
  box-shadow: var(--shadow);
}

.how-step-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}

.how-step-title { font-size: 15px; font-weight: 600; color: var(--brown); margin-bottom: 4px; }
.how-step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Trust badges bridge */
.trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-badge {
  flex: 1;
  min-width: 130px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  border: 1.5px solid var(--cream-deeper);
  box-shadow: var(--shadow);
}

.trust-badge-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 4px;
}

.trust-badge-label { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

.bridge-cta-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px 28px;
  background: linear-gradient(to top, var(--cream) 70%, transparent);
  z-index: 100;
}

.bridge-cta-btn {
  width: 100%;
  max-width: 520px;
  display: block;
  margin: 0 auto;
  padding: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--white);
  border: none;
  border-radius: 99px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 6px 28px rgba(196,151,58,0.4);
  letter-spacing: 0.02em;
}

.bridge-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(196,151,58,0.5);
}

/* ═══════════════════════════════════════
   LANDING SECTION
═══════════════════════════════════════ */
#landing-section {
  display: none;
  background: var(--cream);
  padding-bottom: 120px;
}

/* Sticky bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brown);
  padding: 12px 20px 24px;
  z-index: 200;
  display: none;
}

.sticky-bar.visible { display: block; }

.sticky-bar-inner {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  padding: 6px 12px;
  flex-shrink: 0;
}

.sticky-timer-icon { font-size: 14px; }
.sticky-timer-text { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500; }
.sticky-timer-count { font-size: 14px; color: var(--gold-light); font-weight: 700; font-family: var(--serif); }

.sticky-btn {
  flex: 1;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--white);
  border: none;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Landing hero */
.land-hero {
  background: linear-gradient(160deg, var(--brown) 0%, #4A2E1A 100%);
  padding: 48px 24px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.land-hero::after {
  content: '\201CHe put a new song in my mouth,\00000aa hymn of praise to our God.\201D';
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  white-space: pre;
  text-align: center;
  width: 100%;
}

.land-hero-tag {
  display: inline-block;
  background: rgba(196,151,58,0.2);
  border: 1px solid rgba(196,151,58,0.35);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.land-hero-title {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}

.land-hero-title em { color: var(--gold-light); font-style: italic; }

.land-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 340px;
  margin: 0 auto 36px;
}

/* First CTA */
.land-cta-block {
  padding: 32px 24px;
  max-width: 520px;
  margin: 0 auto;
}

.land-cta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-align: center;
  margin-bottom: 12px;
}

.land-main-btn {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--white);
  border: none;
  border-radius: 99px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 6px 28px rgba(196,151,58,0.38);
  font-family: var(--sans);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.land-main-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(196,151,58,0.5); }

.land-cta-sub {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Pain section */
.land-pain {
  padding: 40px 24px;
  max-width: 520px;
  margin: 0 auto;
}

.land-section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.land-section-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--brown);
  line-height: 1.25;
  margin-bottom: 8px;
}

.land-section-sub { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }

.pain-items { display: flex; flex-direction: column; gap: 12px; }

.pain-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--white);
  border-radius: 18px;
  border: 1.5px solid var(--cream-deeper);
}

.pain-item-icon {
  font-size: 22px;
  width: 44px;
  height: 44px;
  background: var(--cream-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pain-item-title { font-size: 15px; font-weight: 600; color: var(--brown); margin-bottom: 4px; }
.pain-item-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Agitation */
.land-agitation {
  margin: 0 24px;
  padding: 28px;
  background: linear-gradient(135deg, var(--brown), #5C3D28);
  border-radius: 24px;
  text-align: center;
  max-width: 472px;
  margin-left: auto;
  margin-right: auto;
}

.land-agitation-quote {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 12px;
}

.land-agitation-sub { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* Transformation */
.transform-weeks { display: flex; flex-direction: column; gap: 10px; }

.transform-week {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: var(--white);
  border-radius: 18px;
  border: 1.5px solid var(--cream-deeper);
}

.transform-week-num {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.transform-week-label { font-size: 9px; font-weight: 600; color: var(--gold-deep); letter-spacing: 0.06em; text-transform: uppercase; }
.transform-week-n { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--gold-deep); line-height: 1; }
.transform-week-title { font-size: 15px; font-weight: 600; color: var(--brown); margin-bottom: 3px; }
.transform-week-desc { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

/* Reviews */
.reviews-list { display: flex; flex-direction: column; gap: 14px; }

.review-card {
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  border: 1.5px solid var(--cream-deeper);
  box-shadow: var(--shadow);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--cream-deeper));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.review-name { font-size: 15px; font-weight: 600; color: var(--brown); }
.review-meta { font-size: 12px; color: var(--text-muted); }
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-left: auto; }

.review-text {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
  font-family: var(--serif);
  font-style: italic;
}

.review-text mark {
  background: none;
  color: var(--gold-deep);
  font-weight: 600;
  font-style: normal;
}

/* What's included */
.included-list { display: flex; flex-direction: column; gap: 10px; }

.included-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: 16px;
  border: 1.5px solid var(--cream-deeper);
}

.included-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.included-text { font-size: 14px; font-weight: 500; color: var(--brown); line-height: 1.4; }

/* Social proof number */
.social-proof-block {
  margin: 0 24px;
  padding: 36px 24px;
  background: linear-gradient(135deg, #2A1A0E, var(--brown));
  border-radius: 28px;
  text-align: center;
  max-width: 472px;
  margin-left: auto;
  margin-right: auto;
}

.social-avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.social-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--brown);
  background: linear-gradient(135deg, var(--gold-pale), var(--cream-deeper));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-left: -10px;
}

.social-avatar:first-child { margin-left: 0; }

.social-proof-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.social-proof-num span { color: var(--gold-light); }
.social-proof-text { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* Emotional peak */
.emotional-card {
  margin: 0 24px;
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  border: 1.5px solid var(--cream-deeper);
  box-shadow: var(--shadow-lg);
  max-width: 472px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.emotional-card::before {
  content: var(--gs-cross);
  position: absolute;
  right: -10px;
  top: -20px;
  font-size: 120px;
  color: var(--cream-dark);
  font-family: var(--serif), Georgia, 'Times New Roman', serif;
  font-variant-emoji: text;
  pointer-events: none;
}

.emotional-card-quote {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--brown);
  line-height: 1.5;
  margin-bottom: 20px;
  position: relative;
}

.emotional-card-quote::before {
  content: '\201C';
  font-size: 60px;
  color: var(--gold-pale);
  line-height: 0;
  position: absolute;
  top: 20px;
  left: -8px;
  font-family: var(--serif);
}

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

.emotional-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--cream-deeper));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.emotional-card-name { font-size: 15px; font-weight: 600; color: var(--brown); }
.emotional-card-role { font-size: 12px; color: var(--text-muted); }

/* Risk free */
.risk-block {
  margin: 0 24px;
  padding: 32px;
  background: linear-gradient(135deg, #1A3020, #2A5040);
  border-radius: 28px;
  text-align: center;
  max-width: 472px;
  margin-left: auto;
  margin-right: auto;
}

.risk-badge {
  width: 80px;
  height: 80px;
  border: 3px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
}

.risk-title { font-family: var(--serif); font-size: 26px; color: var(--white); margin-bottom: 10px; font-weight: 500; }
.risk-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 24px; }

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.pay-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

.security-badges { display: flex; justify-content: center; gap: 16px; }
.security-badge { display: flex; align-items: center; gap: 6px; font-size: 11px; color: rgba(255,255,255,0.4); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--white);
  border-radius: 16px;
  border: 1.5px solid var(--cream-deeper);
  overflow: hidden;
}

.faq-question {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--brown);
  gap: 12px;
}

.faq-chevron {
  font-size: 12px;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

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

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--cream-deeper);
  padding-top: 14px;
}

/* Final CTA */
.final-cta {
  padding: 40px 24px;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 8px;
  line-height: 1.25;
}

.final-cta-title em { color: var(--gold-deep); font-style: italic; }
.final-cta-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }

.final-cta-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
}

/* Footer */
.site-footer {
  padding: 32px 24px 40px;
  text-align: center;
  border-top: 1px solid var(--cream-deeper);
  max-width: 520px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}

.footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; }
.footer-copy { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* Divider */
.section-divider { height: 1px; background: var(--cream-deeper); margin: 0 24px; max-width: 472px; margin-left: auto; margin-right: auto; }

/* Spacing helper */
.sp-40 { height: 40px; }
.sp-32 { height: 32px; }
.sp-24 { height: 24px; }

/* ═══════════════════════════════════════
   PAYMENT FORM (inline on landing)
═══════════════════════════════════════ */
.payment-wrap {
  padding: 0 24px;
  max-width: 520px;
  margin: 0 auto;
}

.payment-card {
  background: var(--white);
  border-radius: 20px;
  border: 1.5px solid var(--cream-deeper);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.payment-header {
  padding: 20px 20px 16px;
  text-align: center;
}

.payment-stat {
  font-size: 17px;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 4px;
  line-height: 1.3;
}

.payment-stat-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.payment-form {
  padding: 0 20px 20px;
  transition: opacity 0.2s ease;
}

.payment-field-group {
  margin-bottom: 14px;
}

.payment-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--brown-mid);
  display: block;
  margin-bottom: 6px;
}

.payment-input-wrap {
  position: relative;
}

.payment-input {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--cream-deeper);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: var(--sans);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.payment-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,151,58,0.12);
}

.payment-input::placeholder { color: var(--text-muted); }

.payment-email-note {
  font-size: 11px;
  color: var(--text-muted);
  margin: 6px 0 0;
  line-height: 1.5;
}

.payment-methods-card {
  background: var(--white);
  border-radius: 14px;
  border: 0.5px solid var(--cream-deeper);
  overflow: hidden;
  margin-bottom: 14px;
}

.payment-apple-pay {
  padding: 14px 16px;
  border-bottom: 0.5px solid var(--cream-dark);
}

#payment-request-button {
  min-height: 48px;
}

.payment-divider-row {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-divider-line {
  flex: 1;
  height: 0.5px;
  background: var(--cream-deeper);
}

.payment-divider-text {
  font-size: 12px;
  color: var(--text-muted);
}

.payment-card-fields {
  padding: 0 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-card-row {
  display: flex;
  gap: 10px;
}

.payment-card-row-half > div {
  flex: 1;
}

.payment-stripe-field {
  background: var(--white);
  border: 1.5px solid var(--cream-deeper);
  border-radius: 12px;
  padding: 13px 14px;
  flex: 1;
  min-height: 48px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.payment-stripe-field.StripeElement--focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,151,58,0.12);
}

.payment-stripe-field.StripeElement--invalid {
  border-color: #D32F2F;
}

.payment-stripe-field [data-link-autofill-target],
.payment-stripe-field .LinkAutofillPrompt,
.payment-stripe-field .__PrivateStripeElement + div[style*="position: absolute"] {
  display: none !important;
  visibility: hidden !important;
}

.payment-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--white);
  border: none;
  border-radius: 99px;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 4px 20px rgba(196,151,58,0.35);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.payment-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196,151,58,0.45);
}

.payment-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.payment-submit-icon { font-size: 18px; }
.payment-submit-arrow { font-size: 16px; opacity: 0.8; }

.payment-price-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 10px;
  line-height: 1.5;
}

.payment-secure-badge {
  background: #EFF8F2;
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
  margin-bottom: 10px;
}

.payment-secure-text {
  font-size: 12px;
  color: #3F7A4D;
  font-weight: 500;
  margin: 0;
}

.payment-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-bottom: 8px;
}

.payment-badge-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-muted);
}

.payment-legal {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  padding: 8px 0 0;
  line-height: 1.6;
  margin: 0;
}

.payment-error {
  padding: 12px 14px;
  background: #FFF0F0;
  color: #D32F2F;
  font-size: 13px;
  text-align: center;
  border-radius: 10px;
  margin: 0 0 14px;
  line-height: 1.45;
}

.payment-processing {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  padding: 20px 28px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.payment-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--cream-deeper);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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