:root {
  --copper: #AB7542;
  --copper-dark: #8A5D33;
  --copper-light: #C9976B;
  --deep: #6B4A2A;
  --cream: #FDF8F3;
  --cream-dark: #F5EDE3;
  --sand: #E8DDD1;
  --dark: #2D2119;
  --text: #4A3D33;
  --text-light: #8C7B6F;
  --white: #FFFFFF;
  --green: #2E7D32;
  --green-light: #E8F5E9;
  --red-soft: #FFF3F0;
  --shadow: 0 2px 20px rgba(107,74,42,0.08);
  --shadow-lg: 0 8px 40px rgba(107,74,42,0.12);
  --radius: 12px;
  --radius-lg: 20px;
}

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

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

h1, h2, h3, h4 { font-family: 'DM Serif Display', serif; color: var(--deep); line-height: 1.2; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(171,117,66,0.1);
  padding: 16px 0;
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 24px; color: var(--copper-dark);
  text-decoration: none; display: flex; align-items: center; gap: 10px;
}
.nav-logo span { color: var(--deep); font-weight: 400; }
.nav-leaf { width: 32px; height: 32px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--text); font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--copper); }
.nav-cta {
  background: var(--copper); color: var(--white) !important; padding: 10px 24px;
  border-radius: 8px; font-weight: 600 !important; transition: all 0.2s;
}
.nav-cta:hover { background: var(--copper-dark); transform: translateY(-1px); }
.mobile-menu { display: none; background: none; border: none; cursor: pointer; }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--cream-dark) 100%);
  padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(171,117,66,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { position: relative; z-index: 2; }

/* Audience Toggle */
.audience-toggle {
  display: inline-flex; background: var(--white); border-radius: 8px;
  padding: 4px; border: 1px solid var(--sand); margin-bottom: 28px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.audience-btn {
  padding: 8px 20px; border-radius: 6px; border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all 0.25s; background: transparent; color: var(--text-light);
}
.audience-btn.active { background: var(--copper); color: var(--white); box-shadow: 0 2px 8px rgba(171,117,66,0.3); }

.hero h1 { font-size: 44px; margin-bottom: 16px; color: var(--dark); }
.hero h1 em { font-style: italic; color: var(--copper); }
.hero-sub { font-size: 17px; color: var(--text-light); margin-bottom: 32px; line-height: 1.7; max-width: 520px; }
.hero-stats { display: flex; gap: 32px; margin-bottom: 36px; }
.stat { text-align: center; }
.stat-num { font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--copper); }
.stat-label { font-size: 12px; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: var(--copper); color: var(--white);
  border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 15px;
  transition: all 0.25s; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(171,117,66,0.25);
}
.btn-primary:hover { background: var(--copper-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(171,117,66,0.35); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: var(--white); color: var(--copper);
  border: 2px solid var(--copper); border-radius: 10px;
  text-decoration: none; font-weight: 600; font-size: 15px; transition: all 0.25s;
}
.btn-secondary:hover { background: var(--cream); }
.wa-icon { width: 20px; height: 20px; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(171,117,66,0.08);
  position: relative; z-index: 2;
}
.doctor-profile { display: flex; gap: 20px; margin-bottom: 24px; }
.doctor-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--copper-light), var(--copper));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: 'DM Serif Display', serif; font-size: 28px;
  flex-shrink: 0;
}
.doctor-info h3 { font-size: 18px; margin-bottom: 4px; }
.doctor-info p { font-size: 13px; color: var(--text-light); }
.doctor-info .credentials { font-size: 12px; color: var(--copper); font-weight: 600; margin-top: 4px; }
.outcome-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.outcome-card {
  background: var(--cream); border-radius: 10px; padding: 16px;
  border-left: 3px solid var(--copper);
}
.outcome-card .label { font-size: 11px; color: var(--text-light); text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; }
.outcome-card .value { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--deep); margin: 4px 0; }
.outcome-card .change { font-size: 12px; color: var(--green); font-weight: 600; }

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--deep); padding: 20px 0;
}
.trust-items { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--copper-light); font-size: 13px; font-weight: 500;
}
.trust-item svg { width: 18px; height: 18px; fill: currentColor; opacity: 0.8; }

/* ============ PROBLEM ============ */
.problem { padding: 80px 0; background: var(--white); }
.problem .container { max-width: 900px; text-align: center; }
.problem h2 { font-size: 36px; margin-bottom: 20px; }
.problem h2 em { color: var(--copper); font-style: italic; }
.problem-text { font-size: 16px; color: var(--text-light); margin-bottom: 40px; line-height: 1.8; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.problem-card {
  background: var(--cream); border-radius: var(--radius); padding: 28px;
  border: 1px solid rgba(171,117,66,0.08); transition: transform 0.2s;
}
.problem-card:hover { transform: translateY(-4px); }
.problem-card .number { font-family: 'DM Serif Display', serif; font-size: 36px; color: var(--copper); margin-bottom: 8px; }
.problem-card h4 { font-size: 15px; margin-bottom: 8px; color: var(--deep); }
.problem-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ============ HOW IT WORKS ============ */
.how { padding: 80px 0; background: var(--cream); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .tag { display: inline-block; background: rgba(171,117,66,0.1); color: var(--copper); padding: 6px 16px; border-radius: 20px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.section-header h2 { font-size: 36px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  text-align: center; box-shadow: var(--shadow); position: relative;
  border: 1px solid rgba(171,117,66,0.06);
}
.step-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 20px;
  margin: 0 auto 20px;
}
.step h3 { font-size: 18px; margin-bottom: 12px; }
.step p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ============ SERVICES ============ */
.services { padding: 80px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  background: var(--cream); border-radius: var(--radius-lg); padding: 36px;
  border: 1px solid rgba(171,117,66,0.08); transition: all 0.3s;
  display: flex; flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(171,117,66,0.1); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; font-size: 24px;
}
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; flex-grow: 1; }
.service-tag { display: inline-block; margin-top: 16px; font-size: 12px; font-weight: 600; color: var(--copper); text-transform: uppercase; letter-spacing: 0.5px; }

/* ============ COMPARISON ============ */
.compare { padding: 80px 0; background: var(--cream); }
.compare-table { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.compare-row { display: grid; grid-template-columns: 2fr 1fr 1fr; border-bottom: 1px solid var(--sand); }
.compare-row:last-child { border-bottom: none; }
.compare-header { background: var(--deep); }
.compare-cell { padding: 16px 24px; font-size: 14px; display: flex; align-items: center; }
.compare-header .compare-cell { color: var(--white); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }
.compare-feature { font-weight: 500; color: var(--dark); }
.compare-check { color: var(--green); font-weight: 700; font-size: 18px; justify-content: center; }
.compare-cross { color: #ccc; font-size: 18px; justify-content: center; }
.compare-row:nth-child(even):not(.compare-header) { background: var(--cream); }

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 80px 0; background: var(--white); }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.testimonial {
  background: var(--cream); border-radius: var(--radius-lg); padding: 36px;
  border-left: 4px solid var(--copper); position: relative;
}
.testimonial-quote { font-size: 16px; line-height: 1.8; color: var(--text); margin-bottom: 20px; font-style: italic; }
.testimonial-result {
  background: var(--white); border-radius: 10px; padding: 16px 20px;
  display: inline-flex; gap: 24px; margin-bottom: 16px;
}
.result-item { text-align: center; }
.result-item .label { font-size: 11px; color: var(--text-light); text-transform: uppercase; font-weight: 600; }
.result-item .value { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--copper); }
.testimonial-author { font-size: 14px; font-weight: 600; color: var(--deep); }
.testimonial-author span { font-weight: 400; color: var(--text-light); }

/* ============ EMPLOYER CTA ============ */
.employer-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--deep) 0%, #3D2E24 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.employer-cta::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(171,117,66,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.employer-cta .container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.employer-cta h2 { font-size: 36px; color: var(--white); margin-bottom: 16px; }
.employer-cta p { font-size: 16px; color: var(--copper-light); margin-bottom: 28px; line-height: 1.7; }
.employer-features { list-style: none; display: grid; gap: 12px; }
.employer-features li {
  display: flex; align-items: start; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.85);
}
.employer-features li::before { content: '✓'; color: var(--copper-light); font-weight: 700; font-size: 16px; flex-shrink: 0; }
.pricing-card {
  background: rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 36px;
  border: 1px solid rgba(171,117,66,0.2); backdrop-filter: blur(8px);
}
.pricing-card h3 { font-size: 20px; color: var(--white); margin-bottom: 20px; }
.price-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 14px; }
.price-row:last-of-type { border-bottom: none; }
.price-label { color: rgba(255,255,255,0.7); }
.price-value { color: var(--copper-light); font-weight: 600; }

/* ============ PODCAST ============ */
.podcast { padding: 80px 0; background: var(--cream); }
.podcast-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.podcast-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.2s;
}
.podcast-card:hover { transform: translateY(-4px); }
.podcast-thumb {
  height: 180px; background: linear-gradient(135deg, var(--deep), var(--copper-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 48px; position: relative;
}
.podcast-thumb .play-btn {
  width: 56px; height: 56px; background: rgba(255,255,255,0.2);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 24px;
  backdrop-filter: blur(4px); border: 2px solid rgba(255,255,255,0.3);
}
.podcast-body { padding: 20px; }
.podcast-series { font-size: 11px; text-transform: uppercase; color: var(--copper); font-weight: 700; letter-spacing: 1px; margin-bottom: 8px; }
.podcast-body h4 { font-size: 16px; margin-bottom: 8px; color: var(--deep); }
.podcast-body p { font-size: 13px; color: var(--text-light); }

/* ============ DOCTOR ============ */
.doctor { padding: 80px 0; background: var(--white); }
.doctor .container { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; }
.doctor-photo {
  width: 100%; aspect-ratio: 3/4; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--cream-dark), var(--sand));
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 72px; color: var(--copper);
  position: relative; overflow: hidden;
}
.doctor-photo::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(transparent, rgba(107,74,42,0.1));
}
.doctor-content h2 { font-size: 36px; margin-bottom: 8px; }
.doctor-content .title { font-size: 16px; color: var(--copper); font-weight: 600; margin-bottom: 20px; }
.doctor-content p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.doctor-creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.cred-tag {
  background: var(--cream); border: 1px solid var(--sand); padding: 6px 14px;
  border-radius: 6px; font-size: 12px; font-weight: 500; color: var(--deep);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--dark); color: rgba(255,255,255,0.6); padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { color: var(--white); font-size: 14px; margin-bottom: 16px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; }
.footer p { font-size: 13px; line-height: 1.7; }
.footer a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; display: block; margin-bottom: 8px; transition: color 0.2s; }
.footer a:hover { color: var(--copper-light); }
.footer-brand { font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--copper-light); margin-bottom: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; font-size: 12px; }

/* ============ WHATSAPP FAB ============ */
.wa-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); cursor: pointer;
  transition: all 0.3s; text-decoration: none;
  animation: pulse-wa 2s infinite;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-fab svg { width: 32px; height: 32px; fill: white; }
@keyframes pulse-wa { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); } }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 32px; }
  .hero-visual { order: -1; }
  .nav-links { display: none; }
  .mobile-menu { display: block; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1.5fr 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .employer-cta .container { grid-template-columns: 1fr; }
  .doctor .container { grid-template-columns: 1fr; }
  .podcast-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
  .trust-items { gap: 20px; }
}

/* ============ ADDED: condition pages, FAQ, longform, notices ============ */
.faq-list { max-width: 820px; margin: 0 auto; }
details.faq {
  border-bottom: 1px solid var(--sand);
  padding: 20px 0;
}
details.faq summary {
  font-family: 'DM Serif Display', serif;
  font-size: 19px; color: var(--deep);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: '+'; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px; color: var(--copper); flex-shrink: 0; transition: transform 0.2s;
}
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq p { margin-top: 14px; color: var(--text); font-size: 15.5px; line-height: 1.75; }

.longform { text-align: left; max-width: 820px; }
.longform h3 {
  font-size: 24px; margin: 36px 0 14px;
}
.longform p { margin-bottom: 16px; font-size: 16px; line-height: 1.8; }
.longform ul { margin: 0 0 20px 22px; }
.longform li { margin-bottom: 9px; font-size: 16px; line-height: 1.7; }
.longform a { color: var(--copper-dark); }

.problem-text.longform { text-align: left; }

.notice {
  background: var(--cream); border-left: 3px solid var(--copper);
  border-radius: 8px; padding: 18px 22px; margin: 26px 0;
  font-size: 15px; line-height: 1.7;
}

.service-card h3 a { color: var(--deep); text-decoration: none; }
.service-card h3 a:hover { color: var(--copper); }

.footer-disclaimer {
  margin-top: 26px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; line-height: 1.7; color: rgba(255,255,255,0.4);
  max-width: 860px;
}

/* condition-page hero sits a little tighter than the homepage hero */
.longform + * { margin-top: 0; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  details.faq summary { font-size: 17px; }
  .longform h3 { font-size: 21px; }
}

/* single-column hero for condition / legal / about pages */
.hero-solo .container { grid-template-columns: 1fr; }
.hero-solo .hero-content { max-width: 780px; }

/* longform blocks inside condition-page sections stay centered as a column */
.how .longform { margin: 0 auto; }
.how .section-header + .longform { margin-top: 8px; }

/* ---- mobile nav: keep the booking CTA visible (nav-links was display:none) ---- */
@media (max-width: 768px) {
  .nav-links { display: flex !important; gap: 0; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 9px 18px; font-size: 13px; }
  .nav-logo { font-size: 19px; }
}

/* ---- mobile sticky action bar ---- */
.sticky-bar { display: none; }
@media (max-width: 768px) {
  .sticky-bar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
    border-top: 1px solid var(--sand); box-shadow: 0 -2px 16px rgba(107,74,42,0.10);
  }
  .sticky-bar a {
    flex: 1; text-align: center; padding: 13px 10px; border-radius: 10px;
    font-size: 14.5px; font-weight: 600; text-decoration: none; line-height: 1.2;
  }
  .sticky-bar .sb-book { background: var(--copper); color: var(--white); }
  .sticky-bar .sb-wa   { background: var(--cream-dark); color: var(--deep); border: 1px solid var(--sand); }
  body { padding-bottom: 76px; }
}
