:root {
  --bg: #f7f5f0;
  --bg-warm: #efece5;
  --fg: #1a1a1a;
  --fg-muted: #5a5a52;
  --sage: #4a6741;
  --sage-light: #5f8254;
  --sage-bg: #e8ede6;
  --cream: #faf8f3;
  --sand: #d4cfc4;
  --accent: #8b6e4e;
  --radius: 12px;
  --radius-sm: 8px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
}
.nav-tag {
  font-size: 13px;
  color: var(--fg-muted);
  background: var(--sage-bg);
  padding: 6px 14px;
  border-radius: 20px;
}

/* Hero */
.hero {
  position: relative;
  padding: 160px 24px 100px;
  overflow: hidden;
}
.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 24px;
}
h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 600px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--sand);
}
.stat-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--sage);
}
.stat-label {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--sand);
}
.hero-gradient {
  position: absolute;
  top: -200px;
  right: -300px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 103, 65, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Trust */
.trust {
  padding: 80px 24px;
  background: var(--sage);
  color: white;
}
.trust-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.trust-icon {
  margin-bottom: 32px;
}
.trust-icon svg {
  --sage: white;
}
.trust h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}
.trust p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.85;
}

/* How */
.how {
  padding: 100px 24px;
}
.how-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.how-header {
  margin-bottom: 64px;
}
.how-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  margin-bottom: 12px;
}
.how-header p {
  font-size: 17px;
  color: var(--fg-muted);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step-number {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--sage-bg);
  margin-bottom: 16px;
  line-height: 1;
}
.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Features */
.features {
  padding: 60px 24px 100px;
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-right {
  direction: rtl;
}
.feature-right > * {
  direction: ltr;
}
.feature-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--sage-bg);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.feature-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}
.feature-content p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Feature Visual: Cards */
.feature-visual {
  position: relative;
}
.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.feature-card-offset {
  margin-top: 12px;
  margin-left: 40px;
  opacity: 0.85;
}
.card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-bg), var(--sage));
  flex-shrink: 0;
}
.card-lines {
  flex: 1;
}
.card-line {
  height: 10px;
  border-radius: 5px;
  background: var(--bg-warm);
  margin-bottom: 8px;
}
.card-line-wide { width: 80%; }
.card-line-medium { width: 55%; }
.card-tags {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}
.card-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  background: var(--sage-bg);
  color: var(--sage);
}

/* Feature Visual: Dashboard */
.therapist-dashboard {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.dash-header {
  background: var(--fg);
  padding: 12px 16px;
  display: flex;
  gap: 6px;
}
.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.dash-body {
  padding: 24px;
}
.dash-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--bg-warm);
}
.dash-row:last-child {
  border-bottom: none;
}
.dash-label {
  font-size: 14px;
  color: var(--fg-muted);
}
.dash-value {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--sage);
}

/* Closing */
.closing {
  padding: 100px 24px;
  background: var(--bg-warm);
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
}
.closing p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.value {
  font-size: 14px;
  font-weight: 600;
  color: var(--sage);
}
.value-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sand);
}

/* Footer */
.footer {
  padding: 40px 24px;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-weight: 700;
  font-size: 16px;
}
.footer-text {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Mobile */
@media (max-width: 768px) {
  .hero { padding: 120px 20px 60px; }
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .stat-divider { display: none; }
  .hero-search-fields { grid-template-columns: 1fr; gap: 12px; }
  .hero-search { padding: 16px; }
  .how-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-right {
    direction: ltr;
  }
  .feature-card-offset {
    margin-left: 20px;
  }
  .featured { padding: 60px 20px; }
  .featured-grid { grid-template-columns: 1fr; gap: 16px; }
  .closing-values {
    flex-direction: column;
    gap: 12px;
  }
  .value-dot { display: none; }
  .nav-tag { display: none; }
  /* Stack nav links vertically on mobile */
  .nav-inner { flex-wrap: wrap; gap: 8px; padding: 12px 16px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}