/* ============================================================
   KAIZEN THERAPY — UNIFIED DESIGN SYSTEM
   Cormorant Garamond + DM Sans · Dark palette · Gold + Sage
   Extracted from WonderAxon & WonderFace landing pages
   ============================================================ */

/* --- DESIGN TOKENS --- */
:root {
  /* Backgrounds */
  --bg-deep: #0E0E0C;
  --bg-warm: #1A1917;
  --bg-card: #232220;
  --bg-accent: #2A2826;

  /* Text */
  --cream: #F5F0E8;
  --cream-soft: #EDE7DB;
  --text-primary: #F5F0E8;
  --text-secondary: #B8B0A2;
  --text-muted: #8A8279;

  /* WonderAxon / Master Brand Accent */
  --gold: #C8A96E;
  --gold-light: #DBBF8A;
  --gold-bright: #E8D5A8;

  /* WonderFace Accent */
  --sage: #8FA69B;
  --sage-light: #A8BDB3;
  --sage-bright: #C2D4CB;

  /* Status */
  --red-accent: #C45C4A;
  --green-accent: #6B9E6B;
  --success: #7DAF7D;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

/* --- TOGGLE VISIBILITY --- */
.nav-hidden { display: none !important; }

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* --- UTILITY --- */
.container { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.container--full { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.sage { color: var(--sage); }
.gold-bright { color: var(--gold-bright); }
.line-through { text-decoration: line-through; opacity: 0.5; }
.text-center { text-align: center; }
.text-muted { color: var(--text-secondary); }

/* --- SECTION RHYTHM --- */
.section {
  padding: 80px 0;
}
.section--tight {
  padding: 48px 0;
}
.section--alt {
  background: var(--bg-warm);
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-heading em {
  font-style: italic;
  color: var(--gold);
}
.section-sub {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
}
.section-sub.centered {
  margin: 0 auto;
  text-align: center;
}

/* --- ANNOUNCEMENT BAR --- */
.announcement {
  background: var(--gold);
  color: var(--bg-deep);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.announcement span { font-weight: 700; }
.announcement--sage { background: var(--sage); }

/* --- NAVIGATION --- */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
  background: rgba(14,14,12,0.95);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(200,169,110,0.1);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.nav-logo span { color: var(--gold); font-weight: 400; font-style: italic; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: color 0.2s;
  font-weight: 500;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--bg-deep);
  padding: 10px 22px;
  border: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--bg-warm);
  z-index: 150;
  transition: right 0.3s ease;
  padding: 80px 32px 32px;
  border-left: 1px solid rgba(200,169,110,0.1);
}
.mobile-nav.active { right: 0; }
.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(200,169,110,0.06);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .nav-cta {
  display: block;
  text-align: center;
  margin-top: 24px;
  padding: 14px;
}
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 140;
}
.mobile-nav-overlay.active { display: block; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav > .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav { display: block; }
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,169,110,0.2);
}
.btn-primary--sage {
  background: var(--sage);
}
.btn-primary--sage:hover {
  background: var(--sage-light);
  box-shadow: 0 8px 30px rgba(143,166,155,0.2);
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 14px 32px;
  border: 1px solid var(--gold);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: rgba(200,169,110,0.1);
}

/* --- HERO --- */
.hero {
  text-align: center;
  padding: 100px 24px 80px;
  background: var(--bg-deep);
  position: relative;
}
.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 20px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.hero-proof {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(200,169,110,0.1);
}
.hero-proof-item { text-align: center; }
.hero-proof-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
}
.hero-proof-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- TRUST BAR --- */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: var(--bg-warm);
  border-top: 1px solid rgba(200,169,110,0.06);
  border-bottom: 1px solid rgba(200,169,110,0.06);
  flex-wrap: wrap;
}
.trust-item {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.trust-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(200,169,110,0.3);
}

/* --- CARDS --- */
.card {
  background: var(--bg-warm);
  border: 1px solid rgba(200,169,110,0.08);
  border-radius: 2px;
  padding: 32px;
  transition: border-color 0.3s;
}
.card:hover {
  border-color: rgba(200,169,110,0.2);
}
.card-elevated {
  background: var(--bg-card);
}

/* --- SERVICE CARDS (Homepage) --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  background: var(--bg-warm);
  border: 1px solid rgba(200,169,110,0.08);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
}
.service-card:hover {
  border-color: rgba(200,169,110,0.25);
  transform: translateY(-4px);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-card .learn-more {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.service-card .learn-more:hover { color: var(--gold-light); }

/* WonderFace service card — sage accent */
.service-card.service-card--sage {
  border-color: rgba(143, 166, 155, 0.08);
}
.service-card.service-card--sage:hover {
  border-color: rgba(143, 166, 155, 0.25);
}
.service-card.service-card--sage h3 {
  color: var(--sage);
}
.service-card.service-card--sage .learn-more {
  color: var(--sage);
}
.service-card.service-card--sage .learn-more:hover {
  color: var(--sage-light);
}

/* --- BEFORE/AFTER GRID --- */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 640px) {
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
}
.ba-card {
  background: var(--bg-warm);
  border: 1px solid rgba(200,169,110,0.08);
  overflow: hidden;
  position: relative;
}
.ba-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.ba-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(14,14,12,0.85);
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ba-tag .name {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.ba-tag .result {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
}

/* --- HOW IT WORKS --- */
.steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  text-align: center;
  padding: 24px;
  flex: 1;
  min-width: 180px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.step-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.step-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  padding: 0 8px;
}
@media (max-width: 640px) {
  .step-arrow { display: none; }
  .steps { flex-direction: column; gap: 8px; }
}

/* --- GUARANTEE --- */
.guarantee {
  text-align: center;
  padding: 48px 32px;
  background: var(--bg-warm);
  border: 1px solid rgba(200,169,110,0.15);
}
.guarantee-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.guarantee h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 12px;
}
.guarantee h3 em { color: var(--gold); font-style: italic; }
.guarantee p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- TESTIMONIALS --- */
.google-badge {
  text-align: center;
  margin-bottom: 24px;
  font-size: 0.88rem;
  color: var(--cream);
}
.google-rating {
  font-weight: 700;
  color: var(--gold);
  margin-right: 4px;
}
.google-count { opacity: 0.7; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
  background: var(--bg-warm);
  border: 1px solid rgba(200,169,110,0.08);
  padding: 28px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-name {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* --- PRICING PREVIEW --- */
.pricing-preview {
  text-align: center;
  padding: 48px 32px;
  background: var(--bg-warm);
  border: 1px solid rgba(200,169,110,0.1);
}
.pricing-preview h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.pricing-preview h3 em { color: var(--gold); font-style: italic; }
.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  margin: 16px 0 8px;
}
.pricing-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.pricing-compare {
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 24px;
}

/* --- FAQ ACCORDION --- */
.faq-item {
  border-bottom: 1px solid rgba(200,169,110,0.08);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cream);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 300px; }

/* --- COMPARISON TABLE --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.comparison-table th {
  text-align: left;
  padding: 14px 16px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(200,169,110,0.15);
}
.comparison-table td {
  padding: 14px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(200,169,110,0.06);
}
.comparison-table tr:hover td {
  background: rgba(200,169,110,0.03);
}
.comparison-table .highlight {
  color: var(--gold);
  font-weight: 600;
}

/* --- FINAL CTA --- */
.final-cta {
  text-align: center;
  padding: 80px 24px;
  background: var(--bg-deep);
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 24px;
}
.final-cta h2 em { color: var(--gold); font-style: italic; }

/* --- FOOTER --- */
.footer {
  background: var(--bg-warm);
  border-top: 1px solid rgba(200,169,110,0.08);
  padding: 60px 24px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer-brand span { color: var(--gold); font-style: italic; }
.footer-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-heading {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(200,169,110,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* --- STICKY MOBILE CTA --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-warm);
  border-top: 1px solid rgba(200,169,110,0.15);
  padding: 12px 20px;
  z-index: 90;
}
.sticky-cta .btn-primary {
  width: 100%;
  text-align: center;
  padding: 14px;
}
@media (max-width: 768px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 70px; }
}

/* --- FORM OVERLAY --- */
.overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,8,0.85);
  backdrop-filter: blur(8px);
  z-index: 200;
  justify-content: center;
  align-items: flex-start;
  padding: 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.overlay.active { display: flex; }
.form-card {
  background: var(--bg-warm);
  border: 1px solid rgba(200,169,110,0.2);
  max-width: 440px;
  width: 100%;
  position: relative;
  animation: formSlideUp 0.4s ease;
  margin: auto 0;
  max-height: calc(100dvh - 48px);
  display: flex;
  flex-direction: column;
}
@keyframes formSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.form-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none; border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
}
.form-close:hover { color: var(--cream); }
.form-header {
  background: var(--gold);
  color: var(--bg-deep);
  padding: 20px 28px;
  text-align: center;
}
.form-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.form-header p {
  font-size: 0.78rem;
  opacity: 0.85;
}
.form-body {
  padding: 28px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  min-height: 0;
}
.form-step { display: none; }
.form-step.active { display: block; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid rgba(200,169,110,0.15);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.form-group input:focus { border-color: var(--gold); }
.form-group input::placeholder { color: var(--text-muted); }
.form-step-indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(200,169,110,0.2);
}
.step-dot.active { background: var(--gold); }
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 16px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}
.form-submit:hover { background: var(--gold-light); }
.confirmation-icon { font-size: 2.8rem; margin-bottom: 16px; }
.confirmation h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}
.confirmation p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}
.confirmation .expect-list {
  text-align: left;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.confirmation .expect-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.confirmation .expect-item .check { color: var(--gold); flex-shrink: 0; }
.form-privacy {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 16px;
}
.concern-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.concern-option {
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1px solid rgba(200,169,110,0.1);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-family: var(--font-body);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}
.concern-option:hover { border-color: rgba(200,169,110,0.3); color: var(--cream); }
.concern-option.selected {
  border-color: var(--gold);
  background: rgba(200,169,110,0.08);
  color: var(--gold);
  font-weight: 600;
}

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
