:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #111627;
  --bg-card: #161b2e;
  --bg-accent: #1c2240;
  --text-primary: #f0f0f5;
  --text-secondary: #9a9eb8;
  --text-muted: #6b7094;
  --gold: #d4a853;
  --gold-bright: #f0c95c;
  --gold-dim: #a88a3d;
  --border: rgba(212, 168, 83, 0.15);
  --border-strong: rgba(212, 168, 83, 0.3);
}

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

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ========== HERO ========== */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px 60px;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 168, 83, 0.08) 0%, transparent 60%),
    var(--bg-primary);
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.hero-accent {
  color: var(--gold);
}

.hero-sub {
  max-width: 580px;
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px 48px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-strong);
}

/* ========== PRICING ========== */
.pricing {
  padding: 100px 24px;
  background: var(--bg-secondary);
}

.pricing-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pricing-context h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.strikethrough {
  text-decoration: line-through;
  color: var(--text-muted);
  opacity: 0.6;
}

.pricing-compare {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
}

.price-tag {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
}

.price-detail {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-includes {
  list-style: none;
  text-align: left;
}

.price-includes li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.price-includes li:last-child { border-bottom: none; }

.price-includes li::before {
  content: '\2713';
  color: var(--gold);
  margin-right: 12px;
  font-weight: 700;
}

/* ========== PROCESS ========== */
.process {
  padding: 100px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.process h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  padding: 36px 28px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-dim);
  opacity: 0.5;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========== CREDENTIALS ========== */
.credentials {
  padding: 100px 24px;
  background: var(--bg-secondary);
}

.credentials-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.credentials-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.credentials-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.credentials-bio {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cert {
  padding: 8px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.03em;
}

.trust-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 16px;
}

.trust-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.trust-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ========== SERVICES ========== */
.services {
  padding: 100px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.services h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-item {
  padding: 32px 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s;
}

.service-item:hover {
  border-color: var(--border-strong);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.service-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.service-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ========== CLOSING ========== */
.closing {
  padding: 120px 24px;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(212, 168, 83, 0.06) 0%, transparent 60%),
    var(--bg-secondary);
}

.closing-inner {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.closing-text {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 60px 24px 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.footer-brand p,
.footer-contact p,
.footer-legal p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-contact strong,
.footer-legal strong {
  color: var(--text-secondary);
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--gold);
  color: #0a0e1a;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  padding: 16px 36px;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 100px;
  text-decoration: none;
  border: 1.5px solid var(--border-strong);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.btn-secondary:hover { border-color: var(--gold); background: rgba(212,168,83,0.07); transform: translateY(-1px); }

.btn-large { padding: 18px 44px; font-size: 1.05rem; }
.btn-block { display: block; text-align: center; width: 100%; }
.btn-glow { box-shadow: 0 0 24px rgba(212, 168, 83, 0.35); }
.btn-glow:hover { box-shadow: 0 0 36px rgba(212, 168, 83, 0.5); }

/* ========== HERO CTAs ========== */
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}

/* ========== CLOSING CTAs ========== */
.closing-ctas {
  margin-top: 44px;
}

/* ========== BOOK PAGE ========== */
.book-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-primary);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
}
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-price {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.nav-help {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
}
.nav-help:hover { color: var(--gold); }

.book-header {
  padding: 60px 24px 40px;
  text-align: center;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 168, 83, 0.07) 0%, transparent 60%), var(--bg-primary);
}
.book-header-inner { max-width: 680px; margin: 0 auto; }
.book-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 12px;
}
.book-header-sub {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.book-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.book-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 64px;
}

.book-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  transition: border-color 0.2s;
}
.book-card:hover { border-color: var(--border-strong); }
.book-card--instant { border-color: var(--border-strong); }

.book-card-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(212, 168, 83, 0.15);
  color: var(--gold);
  margin-bottom: 20px;
}
.book-card-badge--calm {
  background: rgba(154, 158, 184, 0.1);
  color: var(--text-secondary);
}

.book-card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.book-card h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.book-card-desc {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.book-card-details {
  list-style: none;
  margin-bottom: 28px;
}
.book-card-details li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.92rem;
}
.book-card-details li:last-child { border-bottom: none; }
.book-card-details li::before {
  content: '\2713';
  color: var(--gold);
  margin-right: 10px;
  font-weight: 700;
}

.book-card-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold-bright);
  margin-bottom: 24px;
  line-height: 1;
}
.book-card-price span {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.book-card-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 12px;
}

/* ========== SCHEDULE FORM ========== */
.schedule-form-section {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  margin-bottom: 64px;
}

.schedule-form-inner { max-width: 700px; margin: 0 auto; }

.schedule-form-inner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.schedule-form-sub {
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text-primary);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.97rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 90px; }

.form-error {
  background: rgba(255, 80, 80, 0.1);
  border: 1px solid rgba(255, 80, 80, 0.3);
  border-radius: 10px;
  color: #ff8080;
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
}
.form-success-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 168, 83, 0.15);
  border: 2px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.form-success p { color: var(--text-secondary); }

.form-disclaimer {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

/* ========== BOOK TRUST BAR ========== */
.book-trust {
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.book-trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.trust-point {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.87rem;
}
.trust-point-icon { font-size: 1.1rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 60px 20px 48px; }
  .hero h1 { font-size: 2.6rem; }
  .hero-stats { flex-direction: column; gap: 20px; padding: 24px 32px; }
  .stat-divider { width: 48px; height: 1px; }
  
  .pricing-inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing-context h2 { font-size: 1.8rem; }
  
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .process h2 { font-size: 1.8rem; }
  
  .credentials-inner { grid-template-columns: 1fr; gap: 40px; }
  .credentials-text h2 { font-size: 1.8rem; }
  
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .services h2 { font-size: 1.8rem; }
  
  .closing h2 { font-size: 1.5rem; }
  .closing { padding: 80px 20px; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }

  /* Book page */
  .hero-ctas { flex-direction: column; align-items: center; }
  .book-nav { padding: 16px 20px; }
  .book-options { grid-template-columns: 1fr; gap: 20px; }
  .book-card { padding: 32px 24px; }
  .schedule-form-section { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .book-trust-inner { gap: 20px; flex-direction: column; align-items: center; text-align: center; }
}