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

:root {
  --bg:       #ffffff;
  --surface:  #f7f9fc;
  --surface2: #eef2ff;
  --border:   #e2e8f0;
  --accent:   #4f6ef5;
  --accent2:  #0ea5e9;
  --accent-light: #eef0fe;
  --text:     #1e293b;
  --muted:    #64748b;
  --radius:   14px;
  --shadow:   0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 68px; gap: 2rem;
}
.nav-logo { font-size: 1.25rem; font-weight: 800; letter-spacing: -.03em; color: var(--text); }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links li a {
  display: block; padding: .5rem 1rem;
  font-size: .9rem; font-weight: 500; color: var(--muted);
  border-radius: 8px; transition: color .15s, background .15s;
}
.nav-links li a:hover { color: var(--text); background: var(--surface); }
.nav-cta {
  background: var(--accent); color: #fff;
  padding: .55rem 1.3rem; border-radius: 999px;
  font-size: .875rem; font-weight: 600;
  white-space: nowrap; transition: opacity .2s;
  flex-shrink: 0;
}
.nav-cta:hover { opacity: .85; }

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, #f0f4ff 0%, #f7f9fc 50%, #fff 100%);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2rem 5rem;
  text-align: center;
}
.hero-inner { max-width: 780px; margin: 0 auto; }
.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--accent-light); color: var(--accent);
  border-radius: 999px; padding: .35rem 1rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; margin-bottom: 1.75rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.03em; margin-bottom: 1.25rem; color: var(--text);
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p { font-size: 1.15rem; color: var(--muted); max-width: 580px; margin: 0 auto 2.5rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: #fff;
  padding: .9rem 2.25rem; border-radius: 999px;
  font-weight: 700; font-size: .95rem;
  box-shadow: 0 4px 14px rgba(79,110,245,.35);
  transition: opacity .2s, transform .2s;
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); }
.btn-secondary {
  background: #fff; color: var(--text);
  padding: .9rem 2.25rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  border: 1.5px solid var(--border);
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ── STATS ── */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 900px; margin: 0 auto;
  padding: 4rem 2rem 0;
  gap: 1.5rem;
}
.stat {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem 1.5rem;
  text-align: center; box-shadow: var(--shadow);
}
.stat-num {
  font-size: 2rem; font-weight: 800; letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: .8rem; color: var(--muted); margin-top: .3rem; font-weight: 500; }

/* ── SECTIONS ── */
.section { padding: 5.5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-tag {
  display: inline-block;
  background: var(--accent-light); color: var(--accent);
  padding: .25rem .8rem; border-radius: 999px;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: .85rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800; letter-spacing: -.025em;
  line-height: 1.15; margin-bottom: 1rem; color: var(--text);
}
.section-sub { color: var(--muted); max-width: 540px; font-size: 1.05rem; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem; margin-top: 3rem;
}
.service-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.1rem;
}
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.service-card p { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; gap: 1px; margin-top: 3rem; }
.step {
  display: flex; gap: 1.75rem; align-items: flex-start;
  background: #fff; padding: 2rem 2.25rem;
  border: 1px solid var(--border); border-bottom: none;
}
.step:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.step:last-child  { border-bottom: 1px solid var(--border); border-radius: 0 0 var(--radius) var(--radius); }
.step-num {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; color: #fff;
}
.step-body h3 { font-weight: 700; margin-bottom: .35rem; font-size: 1rem; }
.step-body p  { font-size: .875rem; color: var(--muted); }

/* ── INSURANCE ── */
.insurance-grid { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.ins-pill {
  padding: .5rem 1.1rem;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 999px; font-size: .85rem; color: var(--muted);
  font-weight: 500; transition: border-color .15s, color .15s;
}
.ins-pill:hover { border-color: var(--accent); color: var(--accent); }

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-text p { color: var(--muted); margin-top: .9rem; font-size: .975rem; line-height: 1.8; }
.about-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow);
}
.about-card h4 {
  font-size: .75rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: .85rem;
}
.about-card ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.about-card li { font-size: .9rem; padding-left: 1.3rem; position: relative; color: var(--text); }
.about-card li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  border-radius: var(--radius); padding: 4rem 2rem;
  text-align: center; margin: 5rem auto;
  max-width: 860px;
  box-shadow: 0 8px 32px rgba(79,110,245,.25);
}
.cta-banner h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; color: #fff; margin-bottom: .75rem; }
.cta-banner p  { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 2rem; }
.btn-white {
  background: #fff; color: var(--accent);
  padding: .9rem 2.25rem; border-radius: 999px;
  font-weight: 700; font-size: .95rem;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: opacity .2s;
}
.btn-white:hover { opacity: .9; }

/* ── INNER PAGE CONTENT ── */
.page-hero {
  background: linear-gradient(160deg, #f0f4ff 0%, #f7f9fc 100%);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem 2rem;
}
.page-hero-inner { max-width: 800px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; letter-spacing: -.025em;
  margin-bottom: .75rem;
}
.page-hero .lead { font-size: 1.1rem; color: var(--muted); }

.page-content {
  max-width: 800px; margin: 0 auto;
  padding: 3.5rem 2rem 5rem;
}
.page-content h1 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.page-content h2 {
  font-size: 1.3rem; font-weight: 700;
  margin-top: 2.5rem; margin-bottom: .75rem;
  color: var(--text);
}
.page-content p  { color: var(--muted); margin-bottom: 1rem; line-height: 1.8; font-size: .975rem; }
.page-content ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.page-content ul li { padding-left: 1.4rem; position: relative; color: var(--muted); font-size: .95rem; }
.page-content ul li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.page-content a { color: var(--accent); text-decoration: underline; }

/* ── CONDITIONS GRID ── */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.condition-pill {
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 1rem 1.25rem;
  font-size: .9rem; font-weight: 500; color: var(--text);
  display: flex; align-items: center; gap: .6rem;
  box-shadow: var(--shadow);
}
.condition-pill span { color: var(--accent); font-weight: 700; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.faq-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem 2rem;
  box-shadow: var(--shadow);
}
.faq-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; color: var(--text); }
.faq-card p  { font-size: .9rem; color: var(--muted); margin: 0; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.testimonial-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 1rem;
}
.testimonial-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: .1em; }
.testimonial-card p { font-size: .9rem; color: var(--muted); line-height: 1.75; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: .85rem; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .8rem; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .9rem; color: var(--text); }
.testimonial-author span  { font-size: .78rem; color: var(--muted); }

/* ── COST HIGHLIGHT ── */
.cost-highlight {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
@media (max-width: 768px) { .cost-highlight { grid-template-columns: 1fr; gap: 2rem; } }
.cost-highlight-cards { display: flex; flex-direction: column; gap: 1rem; }
.cost-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: var(--shadow);
}
.cost-card-label { font-size: .9rem; font-weight: 600; color: var(--text); }
.cost-card-price { font-size: 1.1rem; font-weight: 800; color: var(--accent); text-align: right; }
.cost-card-price span { display: block; font-size: .72rem; font-weight: 500; color: var(--muted); }

/* ── TEAM ── */
.team-grid { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.team-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem;
  display: flex; gap: 2.5rem; align-items: flex-start;
  box-shadow: var(--shadow);
}
@media (max-width: 640px) { .team-card { flex-direction: column; gap: 1.5rem; } }
.team-avatar {
  width: 90px; height: 90px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: #fff;
}
.team-info h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: .25rem; }
.team-title  { font-size: .875rem; color: var(--accent); font-weight: 600; margin-bottom: .85rem; }
.team-tags   { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.team-tag {
  background: var(--accent-light); color: var(--accent);
  border-radius: 999px; padding: .25rem .8rem;
  font-size: .75rem; font-weight: 600;
}
.team-info p { font-size: .9rem; color: var(--muted); line-height: 1.75; }

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 4rem; align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form-wrap {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: .7rem 1rem; font-size: .9rem; font-family: inherit;
  color: var(--text); background: var(--surface);
  transition: border-color .15s; outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); background: #fff; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow);
}
.contact-info-card .service-icon { margin-bottom: .6rem; }
.contact-info-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.contact-info-card p  { font-size: .875rem; color: var(--muted); }
.contact-info-card a  { color: var(--accent); }

/* ── FAQ SECTION TITLE ── */
.faq-section-title {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--accent);
  margin-bottom: .85rem; margin-top: 1rem;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 2.5rem 2rem;
  text-align: center;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-links {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border); margin-bottom: 1.75rem;
  text-align: left;
}
@media (max-width: 768px) { .footer-links { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-links { grid-template-columns: 1fr; } }
.footer-brand { font-size: 1.1rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: .5rem; color: var(--text); }
.footer-brand span { color: var(--accent); }
.footer-tagline { font-size: .875rem; color: var(--muted); margin-bottom: .75rem; }
.footer-email { font-size: .875rem; color: var(--accent); }
.footer-col { display: flex; flex-direction: column; gap: .5rem; }
.footer-col-title { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text); margin-bottom: .25rem; }
.footer-col a { font-size: .875rem; color: var(--muted); transition: color .15s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { text-align: center; }
.footer-bottom p { color: var(--muted); font-size: .82rem; }
.footer-disclaimer { margin-top: .5rem; font-size: .77rem; color: #94a3b8; }

/* ── CONDITION PAGES ── */
.condition-hero {
  background: linear-gradient(160deg, #eef0fe 0%, #f7f9fc 100%);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem 2.5rem;
}
.condition-hero-inner {
  max-width: 820px; margin: 0 auto;
}
.condition-breadcrumb {
  font-size: .82rem; color: var(--muted); margin-bottom: 1rem;
}
.condition-breadcrumb a { color: var(--accent); }
.condition-breadcrumb span { margin: 0 .35rem; }
.condition-tag {
  display: inline-block;
  background: var(--accent-light); color: var(--accent);
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; padding: .3rem .75rem; border-radius: 999px;
  margin-bottom: 1rem;
}
.condition-hero h1 { font-size: clamp(1.75rem,4vw,2.5rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: .85rem; line-height: 1.2; }
.condition-hero .lead { font-size: 1.1rem; color: var(--muted); margin-bottom: 1.75rem; max-width: 680px; }

.condition-layout {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start;
}
.condition-main { min-width: 0; }
.condition-block { margin-bottom: 2.75rem; }
.condition-block h2 { font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 1rem; }
.condition-block p { color: var(--muted); margin-bottom: .85rem; line-height: 1.7; }

.condition-types {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 1rem; margin-top: 1rem;
}
.condition-type-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.1rem 1.25rem;
}
.condition-type-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; }
.condition-type-card p  { font-size: .875rem; color: var(--muted); margin: 0; line-height: 1.6; }

.symptoms-grid {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem;
}
.symptom-chip {
  background: var(--accent-light); color: var(--accent);
  font-size: .82rem; font-weight: 600; padding: .35rem .85rem;
  border-radius: 999px; border: 1px solid rgba(79,110,245,.15);
}

.condition-list { padding-left: 1.25rem; color: var(--muted); line-height: 1.8; }
.condition-list li { margin-bottom: .5rem; }
.condition-list strong { color: var(--text); }

.treatment-approaches { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1rem; }
.treatment-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
}
.treatment-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.treatment-item h4 { font-size: .975rem; font-weight: 700; margin-bottom: .35rem; }
.treatment-item p  { font-size: .875rem; color: var(--muted); margin: 0; line-height: 1.65; }

/* Sidebar */
.condition-sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 84px; }
.sidebar-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
}
.sidebar-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: .75rem; }
.sidebar-list { padding-left: 1.1rem; color: var(--muted); font-size: .875rem; line-height: 1.9; }
.sidebar-cta { background: var(--accent); border-color: var(--accent); }
.sidebar-cta h4, .sidebar-cta p { color: #fff; }
.sidebar-cta p { font-size: .875rem; margin-bottom: 1rem; opacity: .9; }
.sidebar-links { display: flex; flex-direction: column; gap: .4rem; }
.sidebar-links a { font-size: .875rem; color: var(--accent); transition: opacity .15s; }
.sidebar-links a:hover { opacity: .75; }

/* Conditions index cards */
.conditions-cards-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 1.25rem; margin-top: 2rem;
}
.condition-card {
  display: block;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  text-decoration: none; color: inherit;
}
.condition-card:hover {
  border-color: var(--accent); box-shadow: 0 4px 20px rgba(79,110,245,.12);
  transform: translateY(-2px);
}
.condition-card-icon { font-size: 2rem; margin-bottom: .75rem; }
.condition-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; line-height: 1.35; }
.condition-card p  { font-size: .875rem; color: var(--muted); line-height: 1.6; margin-bottom: .75rem; }
.condition-card-cta { font-size: .82rem; font-weight: 600; color: var(--accent); }

/* Condition pills as links */
a.condition-pill {
  display: flex; align-items: center; gap: .5rem;
  text-decoration: none; color: var(--text);
  transition: background .15s, border-color .15s, color .15s;
}
a.condition-pill:hover {
  background: var(--accent-light); border-color: rgba(79,110,245,.3); color: var(--accent);
}

/* ── PROVIDER DIRECTORY ── */
.choose-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 1.25rem; margin-top: 2rem;
}
.choose-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem;
}
.choose-icon { font-size: 1.75rem; margin-bottom: .65rem; }
.choose-card h4 { font-size: .975rem; font-weight: 700; margin-bottom: .45rem; }
.choose-card p  { font-size: .875rem; color: var(--muted); line-height: 1.65; margin: 0; }

.provider-grid { display: flex; flex-direction: column; gap: 2rem; margin-top: 2rem; }
.provider-card {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 2rem; background: var(--bg); border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px); padding: 1.75rem;
  transition: box-shadow .2s, border-color .2s;
}
.provider-card:hover { box-shadow: var(--shadow); border-color: rgba(79,110,245,.25); }

.provider-photo-wrap { position: relative; }
.provider-photo-placeholder {
  width: 100%; aspect-ratio: 1/1; border-radius: var(--radius);
  background: var(--surface); display: flex; align-items: center;
  justify-content: center; font-size: 4rem; border: 1px solid var(--border);
}
.provider-badge {
  position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  font-size: .72rem; font-weight: 700; white-space: nowrap;
  padding: .28rem .85rem; border-radius: 999px;
}
.provider-badge.accepting { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.provider-badge.waitlist  { background: #fef9c3; color: #92400e; border: 1px solid #fde68a; }

.provider-name  { font-size: 1.2rem; font-weight: 800; margin-bottom: .2rem; }
.provider-title { font-size: .875rem; color: var(--muted); margin-bottom: .2rem; }
.provider-exp   { font-size: .82rem; color: var(--accent); font-weight: 600; margin-bottom: .75rem; }
.provider-chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .75rem; }
.provider-chip  {
  font-size: .75rem; font-weight: 600; padding: .25rem .65rem;
  background: var(--accent-light); color: var(--accent);
  border-radius: 999px; border: 1px solid rgba(79,110,245,.15);
}
.provider-approaches {
  font-size: .82rem; color: var(--muted); margin-bottom: .85rem;
}
.approach-label { font-weight: 700; color: var(--text); }
.provider-bio {
  font-size: .875rem; color: var(--muted); line-height: 1.7;
  margin-bottom: .85rem;
}
.provider-good-for {
  font-size: .82rem; color: var(--muted); background: var(--surface);
  border-left: 3px solid var(--accent); padding: .6rem .9rem;
  border-radius: 0 8px 8px 0; margin-bottom: 1rem; line-height: 1.65;
}
.good-for-label { font-weight: 700; color: var(--accent); }

.btn-outline-small {
  display: inline-block; padding: .5rem 1.1rem;
  border: 1.5px solid var(--accent); border-radius: 999px;
  font-size: .82rem; font-weight: 700; color: var(--accent);
  transition: background .15s, color .15s;
}
.btn-outline-small:hover { background: var(--accent); color: #fff; }

/* Match table */
.match-table { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 2rem; }
.match-row {
  display: grid; grid-template-columns: 1fr 1fr;
  padding: .85rem 1.25rem; border-bottom: 1px solid var(--border);
  font-size: .875rem; gap: 1rem;
}
.match-row:last-child { border-bottom: none; }
.match-header { background: var(--surface); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.match-row:not(.match-header):hover { background: var(--accent-light); }

/* ── RESOURCES PAGE ── */
.resources-org-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.resource-org-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
}
.resource-org-logo { font-size: 2rem; margin-bottom: .65rem; }
.resource-org-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: .5rem; line-height: 1.35; }
.resource-org-desc  { font-size: .875rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.resource-link-list { display: flex; flex-direction: column; gap: .45rem; }
.resource-link-list a {
  font-size: .82rem; color: var(--accent); font-weight: 500;
  transition: opacity .15s; text-decoration: none;
}
.resource-link-list a:hover { opacity: .7; text-decoration: underline; }

/* Self-assessment cards */
.assessment-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.assessment-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.assessment-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.assessment-header h4 { font-size: .975rem; font-weight: 700; margin: 0; }
.assessment-badge {
  font-size: .72rem; font-weight: 700; background: var(--surface);
  color: var(--muted); padding: .25rem .7rem; border-radius: 999px;
  border: 1px solid var(--border); white-space: nowrap;
}
.assessment-card p { font-size: .875rem; color: var(--muted); margin: 0; line-height: 1.65; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .condition-layout { grid-template-columns: 1fr; }
  .condition-sidebar { position: static; }
}
@media (max-width: 768px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; }
  .condition-types { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .hero { padding: 4rem 1.25rem 3rem; }
}
