/* ============================================================
   WESTERN BOHEMIAN — DOCTOR2DOCTOR
   Playfair Display (headings) + DM Sans (body)
   Palette: parchment / terracotta / warm brown / sage
============================================================ */

/* ---- TOKENS ---- */
:root {
  /* Warm neutrals */
  --parchment:   #faf6f0;
  --cream:       #f2ead8;
  --cream-dark:  #e8dcc8;
  --white:       #ffffff;

  /* Warm ink */
  --ink:         #2c1a0e;
  --ink-light:   #3d2515;
  --ink-mid:     #5c3d25;
  --muted:       #8a6f5a;
  --border:      #ddd0be;
  --surface:     #f2ead8;

  /* Terracotta — primary accent */
  --terra:       #c1440e;
  --terra-dark:  #9e3510;
  --terra-light: #faf0eb;
  --terra-mid:   #e07050;

  /* Sage — secondary accent */
  --sage:        #4d7c52;
  --sage-bg:     #edf3ee;

  /* Amber — disclaimer */
  --amber-bg:    #fef8ee;
  --amber-text:  #92400e;
  --amber-border:#fde68a;

  /* Radii */
  --r-sm:   12px;
  --r-md:   18px;
  --r-lg:   28px;
  --r-xl:   40px;
  --r-pill: 100px;

  /* Shadows — warmer tint */
  --shadow-card: 0 2px 8px rgba(44,26,14,.07), 0 6px 20px rgba(44,26,14,.07);
  --shadow-lift: 0 8px 32px rgba(44,26,14,.16);
}

/* ---- BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='320' height='320' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* Headings use serif */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* ============================================================
   NAV
============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250,246,240,.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* NAV LOGO */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-row {
  display: flex;
  align-items: center;
  gap: 11px;
}
.nav-logo-mark {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav-logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
  white-space: nowrap;
}
.nav-logo-2 {
  color: var(--terra);
}
.nav-logo-sub {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .5625rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: .01em;
  color: var(--muted);
  white-space: nowrap;
  padding-left: 1px;
}

/* FOOTER LOGO */
.footer-logo-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  text-decoration: none;
  margin-bottom: 6px;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-mark {
  height: 46px;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: .75;
}
.footer-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
  white-space: nowrap;
}
.footer-2 {
  color: var(--terra-mid);
}
.footer-sub {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .5625rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: .01em;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
  padding-left: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--ink); background: var(--cream); }
.nav-cta {
  background: var(--terra) !important;
  color: var(--white) !important;
  margin-left: 6px;
  border-radius: var(--r-pill) !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--terra-dark) !important; }

.hamburger {
  display: none;
  padding: 6px;
  border-radius: var(--r-sm);
  transition: background .15s;
}
.hamburger:hover { background: var(--cream); }

/* ============================================================
   ANNOUNCEMENT BAR
============================================================ */
.announce-bar {
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 11px 32px;
  font-size: .875rem;
  font-weight: 500;
  flex-wrap: wrap;
  text-align: center;
}
.announce-link {
  color: var(--terra-mid);
  font-weight: 700;
  white-space: nowrap;
  transition: opacity .15s;
}
.announce-link:hover { opacity: .8; }

/* ============================================================
   HERO
============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 32px 80px;
  gap: 48px;
}
.hero-wrap {
  max-width: 640px;
  display: flex;
  flex-direction: column;
}
.hero-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 40px;
}
.hero-cta-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 16px;
}
.hero-p {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- BUTTONS ---- */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terra);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  transition: background .15s, transform .15s, box-shadow .15s;
}
.btn-dark:hover { background: var(--terra-dark); transform: translateY(-1px); box-shadow: var(--shadow-lift); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--parchment);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border);
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.btn-ghost:hover { border-color: var(--muted); transform: translateY(-1px); box-shadow: var(--shadow-card); }

.btn-white {
  display: inline-flex;
  align-items: center;
  background: var(--parchment);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  transition: background .15s, transform .15s;
}
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(250,246,240,.3);
  transition: border-color .15s, transform .15s;
}
.btn-outline:hover { border-color: rgba(250,246,240,.65); transform: translateY(-1px); }

.hero-graphic {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 56px; /* align stamp roughly with buttons */
}
.hero-phone-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  display: block;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}
.hero-stamp-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
}
.hero-svg {
  display: none; /* legacy, kept for safety */
}

/* ============================================================
   STATS BAR
============================================================ */
.stats-bar {
  background: var(--ink);
  color: var(--white);
}
.stats-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 40px 16px;
  text-align: center;
}
.stat-n {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--terra-mid);
  line-height: 1;
}
.stat-l {
  font-size: .8125rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* ============================================================
   DISCLAIMER
============================================================ */
.disclaimer {
  background: var(--amber-bg);
  border-top: 1px solid var(--amber-border);
  border-bottom: 1px solid var(--amber-border);
}
.disclaimer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .8375rem;
  color: var(--amber-text);
  line-height: 1.6;
}

/* ============================================================
   SHARED SECTION STYLES
============================================================ */
.section {
  padding: 100px 0;
}
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-inner.narrow {
  max-width: 720px;
}
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 14px;
}
.section-label.teal       { color: var(--terra); }
.section-label.teal-light { color: var(--terra-mid); }
.section > .section-inner > h2,
.section-inner > h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 64px;
}

/* ============================================================
   HOW IT WORKS — STEPS GRID
============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  transition: box-shadow .2s, transform .2s;
  position: relative;
}
.step-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }

.step-num {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--border);
  margin-bottom: 20px;
}
.step-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-icon-wrap.teal  { background: var(--terra); }
.step-icon-wrap.navy  { background: var(--ink); }
.step-icon-wrap.green { background: var(--sage); }

.step-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.step-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}

.example-pill {
  margin-top: 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-size: .8125rem;
  color: var(--ink-mid);
  line-height: 1.6;
  font-style: italic;
}
.pill-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  font-style: normal;
}

/* ============================================================
   SPLIT SECTIONS
============================================================ */
.split-section {
  padding: 100px 0;
}
.bg-light { background: var(--parchment); }
.bg-dark  { background: #1a0c06; }
.bg-mid   { background: var(--ink-mid); }

.split-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Clinicians page — graphic column */
.clin-graphic-col {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.clin-page-graphic {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lift);
}
@media (max-width: 1024px) {
  .clin-graphic-col { justify-content: center; }
  .clin-page-graphic { max-width: min(400px, 90vw); }
}
@media (max-width: 768px) {
  .clin-page-graphic { max-width: 92vw; }
}
.split-flip .split-inner {
  direction: rtl;
}
.split-flip .split-inner > * {
  direction: ltr;
}

.split-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 16px;
}
.split-content.light h2 { color: #faf6f0; }
.split-content > p {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
}
.split-content.light > p { color: rgba(250,246,240,.78); }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9375rem;
  color: var(--ink-mid);
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list.light li { color: rgba(250,246,240,.88); border-color: rgba(255,255,255,.12); }

.conditions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.conditions-grid span {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--terra);
  background: var(--terra-light);
  border: 1px solid rgba(193,68,14,.2);
  padding: 5px 14px;
  border-radius: 100px;
}

/* ============================================================
   FORM CARDS
============================================================ */
.form-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-lift);
}
.form-card.glass {
  background: rgba(250,246,240,.06);
  border-color: rgba(250,246,240,.14);
  box-shadow: none;
}

/* Warm peach card — matches skin-tone palette of clinicians graphic */
.form-card.form-card--peach {
  background: #f0cba8;
  border-color: #d9a87c;
}
.form-card.form-card--peach .form-card-header h3 {
  color: var(--ink);
}
.form-card.form-card--peach .form-card-header p {
  color: var(--ink-mid);
}
.form-card.form-card--peach .field label {
  color: var(--ink);
}
.form-card.form-card--peach .field input {
  background: rgba(255,255,255,.7);
  border-color: #c99070;
}
.form-card.form-card--peach .field input:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(193,68,14,.12);
}
.form-card.form-card--peach .form-fine {
  color: var(--ink-mid);
}

.form-card-header {
  margin-bottom: 28px;
}
.form-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-card.glass .form-card-header h3 { color: var(--parchment); }
.form-card-header p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
}
.form-card.glass .form-card-header p { color: rgba(250,246,240,.45); }

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-mid);
  letter-spacing: .01em;
}
.form-card.glass .field label { color: rgba(250,246,240,.5); }

.field input,
.field select {
  width: 100%;
  background: var(--parchment);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 11px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(193,68,14,.12);
}
.field input::placeholder { color: #b09070; }

.form-card.glass .field input,
.form-card.glass .field select {
  background: rgba(250,246,240,.07);
  border-color: rgba(250,246,240,.18);
  color: var(--parchment);
}
.form-card.glass .field input::placeholder { color: rgba(250,246,240,.3); }
.form-card.glass .field input:focus,
.form-card.glass .field select:focus {
  border-color: var(--terra-mid);
  box-shadow: 0 0 0 3px rgba(224,112,80,.15);
}
.form-card.glass .field select option { background: var(--ink); }

.btn-submit {
  width: 100%;
  background: var(--terra);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  padding: 14px;
  border-radius: var(--r-pill);
  transition: background .15s, transform .15s;
  margin-top: 4px;
}
.btn-submit:hover { background: var(--terra-dark); transform: translateY(-1px); }
.btn-submit.light { background: var(--terra-mid); }
.btn-submit.light:hover { background: var(--terra); }

.form-fine {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}
.form-fine.light { color: rgba(250,246,240,.3); }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 48px 24px;
}
.form-success.visible { display: flex; }
.form-success h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}
.form-card.glass .form-success h4 { color: var(--parchment); }
.form-success p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
}
.form-card.glass .form-success p { color: rgba(250,246,240,.5); }

/* ============================================================
   FAQ
============================================================ */
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow .15s;
}
.faq-item:hover { box-shadow: var(--shadow-card); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  transition: background .15s;
}
.faq-q:hover { background: var(--cream); }
.faq-q[aria-expanded="true"] { color: var(--terra); background: var(--cream); }
.faq-chevron { flex-shrink: 0; transition: transform .2s; }
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-q[aria-expanded="true"] .faq-chevron path { stroke: var(--terra); }

.faq-a {
  display: none;
  padding: 0 24px 20px;
}
.faq-a.open { display: block; }
.faq-a p {
  font-size: .9125rem;
  color: var(--muted);
  line-height: 1.78;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ============================================================
   BOTTOM CTA
============================================================ */
.cta-section {
  background: #1a0c06;
  padding: 100px 0;
}
.cta-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.cta-inner h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: #faf6f0;
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 1.0625rem;
  color: rgba(250,246,240,.72);
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
============================================================ */
.footer { background: #1a0c06; }
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 32px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-left p {
  font-size: .875rem;
  color: rgba(250,246,240,.65);
  line-height: 1.7;
}
.footer-contact a {
  font-size: .875rem;
  color: rgba(250,246,240,.7);
  transition: color .15s;
}
.footer-contact a:hover { color: var(--terra-mid); }

.footer-links {
  display: flex;
  gap: 64px;
  padding-top: 4px;
}
.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 4px;
}
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color .15s;
}
.footer-links a:hover { color: rgba(255,255,255,.92); }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,.06);
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-legal p {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

/* ============================================================
   PAGE HERO (subpages)
============================================================ */
.page-hero {
  background: var(--parchment);
  border-bottom: 1px solid var(--border);
  padding: 72px 32px 64px;
  text-align: center;
}
.page-hero--dark {
  background: #1a0c06;
  border-bottom-color: rgba(255,255,255,.07);
}
.page-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.14;
  color: var(--ink);
  margin-bottom: 16px;
}
.page-hero--dark h1 { color: #faf6f0; }
.page-hero p {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.7;
}
.page-hero--dark p { color: rgba(250,246,240,.78); }
.page-hero .section-label { margin-bottom: 12px; }

/* ============================================================
   AUDIENCE CARDS (landing page)
============================================================ */
.audience-section {
  padding: 80px 0;
}
.audience-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.audience-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.audience-card--dark {
  background: var(--ink);
  border-color: transparent;
}
.audience-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--ink);
}
.audience-card--dark h3 { color: var(--parchment); }
.audience-card > p {
  font-size: .9375rem;
  color: var(--ink-mid);
  line-height: 1.78;
}
.audience-card--dark > p { color: rgba(250,246,240,.52); }

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.audience-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--ink-mid);
}
.audience-list--light li { color: rgba(250,246,240,.65); }
.audience-btn {
  align-self: flex-start;
  margin-top: 4px;
}

/* ============================================================
   CLINICIAN SECTION EXTRAS
============================================================ */
.use-cases-lead {
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.launch-note {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 8px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* ============================================================
   SPECIALIST SECTION EXTRAS
============================================================ */
.spec-steps-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terra-mid);
  margin-top: 32px;
  margin-bottom: 14px;
  opacity: .9;
}
.spec-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}
.spec-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .9rem;
  color: rgba(250,246,240,.6);
  line-height: 1.65;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.spec-step:last-child { border-bottom: none; }
.spec-step strong { color: rgba(250,246,240,.9); font-weight: 600; }
.spec-step-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(224,112,80,.15);
  border: 1px solid rgba(224,112,80,.3);
  color: var(--terra-mid);
  font-size: .72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.spec-how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}
.spec-how-card {
  background: rgba(250,246,240,.06);
  border: 1px solid rgba(250,246,240,.12);
  border-radius: var(--r-md);
  padding: 18px 20px;
}
.spec-how-num {
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--terra-mid);
  margin-bottom: 7px;
}
.spec-how-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 6px;
  line-height: 1.35;
}
.spec-how-card p {
  font-size: .82rem;
  color: rgba(250,246,240,.45);
  line-height: 1.6;
}

.spec-flex {
  margin-bottom: 28px;
}
.spec-flex-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terra-mid);
  margin-bottom: 12px;
  opacity: .9;
}
.spec-flex-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.spec-flex-list li {
  font-size: .9rem;
  color: rgba(250,246,240,.55);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.spec-flex-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(224,112,80,.6);
  font-size: .85rem;
}
.spec-impact {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--terra-mid);
  letter-spacing: -.005em;
  margin-top: 8px;
  margin-bottom: 0 !important;
}

/* Remote Work Icon Section
   ============================================================ */
.spec-remote-section {
  background: var(--ink);
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}
.spec-remote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(193,68,14,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 15% 80%, rgba(77,124,82,.08) 0%, transparent 55%);
  pointer-events: none;
}
.spec-remote-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}
.spec-remote-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--parchment);
  text-align: center;
  line-height: 1.25;
  letter-spacing: -.02em;
  margin-bottom: 56px;
}
.spec-remote-title em {
  color: var(--terra-mid);
  font-style: italic;
}
.spec-remote-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.spec-remote-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 36px 20px;
  border: 1px solid rgba(250,246,240,.07);
  border-radius: var(--r-lg);
  background: rgba(250,246,240,.03);
  transition: background .2s;
}
.spec-remote-card:hover {
  background: rgba(250,246,240,.06);
}
.spec-remote-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 600;
  color: var(--terra-mid);
  text-align: center;
  margin-top: 40px;
  margin-bottom: 0;
  letter-spacing: -.01em;
}
.spec-remote-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid rgba(193,68,14,.35);
  background: rgba(193,68,14,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.spec-remote-label {
  font-size: .95rem;
  font-weight: 500;
  color: rgba(250,246,240,.8);
  line-height: 1.45;
  margin: 0;
}
@media (max-width: 768px) {
  .spec-remote-section { padding: 56px 20px; }
  .spec-remote-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .spec-remote-grid { grid-template-columns: 1fr; }
  .spec-remote-card { flex-direction: row; text-align: left; padding: 20px; }
}

/* How It Works — full width horizontal
   ============================================================ */
.spec-howitworks-section {
  background: #1a0c06;
  padding: 72px 32px 80px;
}
.spec-howitworks-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.spec-howitworks-section .spec-steps-label {
  text-align: center;
  margin-bottom: 40px;
}
.spec-how-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.spec-how-full-card {
  background: rgba(250,246,240,.04);
  border: 1px solid rgba(250,246,240,.08);
  border-radius: var(--r-lg);
  padding: 32px 24px 28px;
  position: relative;
}
.spec-how-full-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 16px;
  opacity: .7;
}
.spec-how-full-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 10px;
  line-height: 1.35;
}
.spec-how-full-card p {
  font-size: .85rem;
  color: rgba(250,246,240,.45);
  line-height: 1.6;
  margin: 0;
}
/* Connector lines between cards */
.spec-how-full-card:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 32px;
  color: rgba(193,68,14,.4);
  font-size: 1.1rem;
  z-index: 1;
}
/* Form + Remote panel side by side */
.spec-form-remote-row {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}
.spec-form-remote-row .form-card {
  width: 100%;
}
.spec-remote-panel {
  background: rgba(250,246,240,.04);
  border: 1px solid rgba(250,246,240,.08);
  border-radius: var(--r-xl);
  padding: 32px 28px;
}
.spec-remote-panel-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--parchment);
  line-height: 1.3;
  margin-bottom: 24px;
}
.spec-remote-panel-title em {
  color: var(--terra-mid);
  font-style: italic;
}
.spec-remote-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.spec-remote-panel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 18px 12px;
  border: 1px solid rgba(250,246,240,.06);
  border-radius: var(--r-lg);
  background: rgba(250,246,240,.03);
}
.spec-remote-panel-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(193,68,14,.3);
  background: rgba(193,68,14,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.spec-remote-panel-item span {
  font-size: .8rem;
  font-weight: 500;
  color: rgba(250,246,240,.7);
  line-height: 1.4;
}
.spec-remote-panel-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: .95rem;
  font-style: italic;
  font-weight: 600;
  color: var(--terra-mid);
  text-align: center;
  margin: 0;
}
@media (max-width: 900px) {
  .spec-how-full-grid { grid-template-columns: 1fr 1fr; }
  .spec-how-full-card::after { display: none; }
  .spec-form-remote-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .spec-how-full-grid { grid-template-columns: 1fr; }
  .spec-howitworks-section { padding: 56px 20px; }
}

/* Peer Learning Section
   ============================================================ */
.spec-peers-section {
  background: var(--parchment);
  padding: 96px 32px;
}
.spec-peers-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.spec-peers-graphic {
  display: flex;
  justify-content: center;
}
.spec-inbox-svg {
  width: 100%;
  max-width: 340px;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(44,26,14,.18));
}
.spec-peers-content .section-label {
  margin-bottom: 12px;
}
.spec-peers-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.spec-peers-sub {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}
.spec-peers-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.spec-peers-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.spec-peers-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.spec-peers-list strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.spec-peers-list p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) {
  .spec-peers-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .spec-inbox-svg { max-width: 280px; }
}

/* ============================================================
   NETWORK CONNECTIONS SECTION
============================================================ */
.network-section {
  padding: 56px 0 40px;
  background: var(--parchment);
}
.network-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.network-lead {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 28px;
}
.network-pairs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.network-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.net-from {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}
.net-to {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}
.net-line {
  width: 100%;
  height: 12px;
  flex: 1;
}

/* ============================================================
   TEXTAREA FIELD
============================================================ */
.field textarea {
  width: 100%;
  background: var(--parchment);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 11px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--ink);
  line-height: 1.6;
  resize: vertical;
  min-height: 88px;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(193,68,14,.12);
}
.field textarea::placeholder { color: #b09070; }
.form-card.glass .field textarea {
  background: rgba(250,246,240,.07);
  border-color: rgba(250,246,240,.18);
  color: var(--parchment);
}
.form-card.glass .field textarea::placeholder { color: rgba(250,246,240,.3); }
.form-card.glass .field textarea:focus {
  border-color: var(--terra-mid);
  box-shadow: 0 0 0 3px rgba(224,112,80,.15);
}

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
============================================================ */
/* ── Tablet ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding: 56px 32px 0;
    text-align: center;
  }
  .hero-wrap {
    align-items: center;
    max-width: 100%;
  }
  .hero h1 { font-size: clamp(2.6rem, 7vw, 3.6rem); }
  .hero-cta-label { font-size: 1rem; }
  .hero-actions { justify-content: center; }
  .hero-phone-img {
    max-width: min(520px, 90vw);
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
  }
  /* Stamp sits below phone, centered */
  .hero-graphic {
    display: flex;
    justify-content: center;
    padding-top: 24px;
    padding-bottom: 56px;
  }
  .hero-stamp-img { max-width: min(240px, 55vw); }
  .steps-grid { grid-template-columns: 1fr; }
  .split-inner { grid-template-columns: 1fr; gap: 48px; }
  .split-flip .split-inner { direction: ltr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .audience-inner { grid-template-columns: 1fr; }
}

/* ── Mobile ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    inset: 68px 0 auto;
    background: var(--parchment);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 16px;
    gap: 2px;
    box-shadow: var(--shadow-lift);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: var(--r-pill); }
  .nav-cta { text-align: center; margin-left: 0; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 48px 20px 0; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); margin-bottom: 28px; }
  .hero-cta-label { font-size: .9375rem; margin-bottom: 12px; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .hero-actions a { width: 100%; justify-content: center; max-width: 340px; }
  .hero-phone-img { max-width: 92vw; margin-top: 28px; }
  .hero-graphic { padding-top: 16px; padding-bottom: 40px; }
  .hero-stamp-img { max-width: min(200px, 50vw); }

  /* Misc */
  .stats-inner { flex-wrap: wrap; gap: 0; }
  .stat-item { width: 50%; padding: 28px 16px; }
  .stat-divider { display: none; }
  .spec-how-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 24px; }
  .footer-links { gap: 40px; }
  .footer-legal { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions a { width: 100%; max-width: 280px; justify-content: center; }
}

/* ============================================================
   CLINICIANS PAGE — VISUAL REDESIGN
============================================================ */

/* ── Hero ── */
.clin-hero {
  background: var(--parchment);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px 72px;
  text-align: center;
}
.clin-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}
.clin-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 32px;
}
.clin-confirm-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.clin-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink);
}

/* ── Section shell ── */
.clin-section {
  padding: 80px 0;
}
.clin-section--cream { background: var(--cream); }
.clin-section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}
.clin-section-head {
  text-align: center;
  margin-bottom: 52px;
}
.clin-section-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-top: 10px;
}

/* ── How it works steps ── */
.clin-steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.clin-step {
  flex: 1;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  transition: transform .2s, box-shadow .2s;
}
.clin-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.clin-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.clin-step-icon--terra { background: var(--terra); }
.clin-step-icon--sage  { background: var(--sage); }
.clin-step-icon--ink   { background: var(--ink); }
.clin-step-num {
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.clin-step h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.clin-step-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.5;
}
.clin-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  margin-top: 58px; /* vertically align with icon center */
  flex-shrink: 0;
}

/* ── Use-case grid ── */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.use-case-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: transform .2s, box-shadow .2s;
}
.use-case-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.use-case-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.use-case-icon--terra { background: var(--terra); }
.use-case-icon--sage  { background: var(--sage); }
.use-case-card h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.075rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

/* ── Benefits bar ── */
.benefits-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 180px;
}
.benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.benefit-text strong {
  font-family: 'DM Sans', sans-serif;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--ink);
}
.benefit-text span {
  font-family: 'DM Sans', sans-serif;
  font-size: .8125rem;
  color: var(--muted);
}
.benefit-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Waitlist form section ── */
.clin-form-section {
  background: var(--parchment);
  padding: 96px 32px;
  border-top: 1px solid var(--border);
}
.clin-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.clin-form-head {
  text-align: center;
  margin-bottom: 40px;
}
.clin-form-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  margin-top: 10px;
}
.clin-form-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--muted);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .use-case-grid { grid-template-columns: repeat(2, 1fr); }
  .clin-steps-row { flex-direction: column; align-items: center; gap: 16px; }
  .clin-step { max-width: 100%; width: 100%; flex-direction: row; text-align: left; padding: 28px; }
  .clin-step-icon { margin-bottom: 0; margin-right: 20px; }
  .clin-step-num { display: none; }
  .clin-step-arrow { transform: rotate(90deg); margin: 0; }
  .benefit-divider { display: none; }
  .benefits-row { padding: 32px; gap: 28px; }
}
@media (max-width: 600px) {
  .clin-hero { padding: 56px 20px 48px; }
  .clin-section { padding: 56px 0; }
  .clin-section-inner { padding: 0 20px; }
  .use-case-grid { grid-template-columns: 1fr; }
  .clin-confirm-pills { gap: 8px; }
  .clin-pill { font-size: .8125rem; padding: 7px 13px; }
  .clin-form-section { padding: 64px 20px; }
  .benefits-row { padding: 24px 20px; }
  .benefit-item { min-width: 100%; }
}

/* ── Small phones ────────────────────────────────────────────── */
@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; }
  .section-inner, .split-inner, .stats-inner,
  .cta-inner, .footer-inner, .footer-legal,
  .audience-inner { padding-left: 16px; padding-right: 16px; }
  .hero { padding: 40px 16px 0; }
  .hero h1 { font-size: clamp(2rem, 10vw, 2.6rem); }
  .page-hero { padding: 48px 16px 40px; }
  .audience-card { padding: 32px 20px; }
  .step-card, .form-card { border-radius: var(--r-lg); }
}
