/* =====================================================================
   Surgical Recovery — Marketing Website
   Built on the Surgical Recovery Design System.
   - Primary brand: SR Teal #3ABCB4
   - High-contrast: SR Navy #1D2D3A
   - Type: Cormorant Garamond (display) + Montserrat (body / UI)
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  /* Brand */
  --sr-teal:        #3ABCB4;
  --sr-teal-deep:   #2A8F89;
  --sr-teal-soft:   #7DD3CD;
  --sr-navy:        #1D2D3A;
  --sr-navy-deep:   #15212C;

  /* Neutrals */
  --sr-white:       #FFFFFF;
  --sr-warm-white:  #F9FAFA;
  --sr-seafoam:     #D6F5F3;
  --sr-seafoam-soft:#EBFAF9;
  --sr-charcoal:    #2C3E50;
  --sr-mid-grey:    #6B7280;
  --sr-light-grey:  #E5E7EB;
  --sr-hair-grey:   #F1F3F4;

  /* Semantic */
  --fg-1:           var(--sr-charcoal);
  --fg-2:           var(--sr-mid-grey);
  --fg-3:           #94A3B0;
  --fg-on-dark:     var(--sr-white);
  --fg-link:        var(--sr-teal-deep);
  --bg-page:        var(--sr-warm-white);
  --bg-surface:     var(--sr-white);
  --bg-tinted:      var(--sr-seafoam-soft);
  --bg-dark:        var(--sr-navy);

  /* Type */
  --font-serif:     'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:      'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --container:      1200px;
  --gutter:         24px;
  --nav-h:          72px;

  /* Motion */
  --ease-out:       cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast:       140ms;
  --dur-base:       220ms;
  --dur-slow:       360ms;

  /* Shadows */
  --shadow-1: 0 1px 2px rgba(29,45,58,0.04), 0 1px 1px rgba(29,45,58,0.03);
  --shadow-2: 0 4px 12px rgba(29,45,58,0.06), 0 1px 2px rgba(29,45,58,0.04);
  --shadow-3: 0 12px 32px rgba(29,45,58,0.08), 0 2px 6px rgba(29,45,58,0.04);
  --shadow-teal: 0 8px 24px rgba(58,188,180,0.22);
}

/* =====================================================================
   Reset & base
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--fg-1);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}

::selection { background: var(--sr-teal); color: var(--sr-white); }

/* =====================================================================
   Typography
   ===================================================================== */
h1, h2, h3, h4 { color: var(--sr-navy); margin: 0; }

h1, .h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.005em;
}

h2, .h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.005em;
}

h3, .h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.35;
  letter-spacing: 0.005em;
}

h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  letter-spacing: 0.005em;
}

p { margin: 0 0 1rem 0; color: var(--fg-1); }

.lede {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  line-height: 1.55;
  color: var(--fg-1);
  font-weight: 400;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sr-teal-deep);
}

.muted { color: var(--fg-2); }

a.link, .link {
  color: var(--fg-link);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast) var(--ease-out);
}
a.link:hover, .link:hover { border-bottom-color: currentColor; }

/* Accent rule — premium hairline divider */
.rule-accent { display: flex; align-items: center; gap: 12px; margin: 0; }
.rule-accent::before { content: ''; width: 32px; height: 2px; background: var(--sr-teal); }
.rule-accent::after  { content: ''; flex: 1; height: 1px; background: var(--sr-light-grey); }

/* =====================================================================
   Layout primitives
   ===================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-sm { max-width: 880px; }

.section {
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
}

.section-tight {
  padding-top: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(40px, 6vw, 64px);
}

.bg-tinted   { background: var(--bg-tinted); }
.bg-seafoam  { background: var(--sr-seafoam); }
.bg-surface  { background: var(--bg-surface); }
.bg-dark     { background: var(--bg-dark); color: var(--fg-on-dark); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--sr-white); }
.bg-dark p   { color: rgba(255,255,255,0.85); }

/* =====================================================================
   Navigation
   ===================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--sr-warm-white);
  border-bottom: 1px solid var(--sr-light-grey);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--sr-navy);
  white-space: nowrap;
}
.nav-brand img { width: 28px; height: 28px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-1);
  padding: 8px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.nav-links a:hover { color: var(--sr-teal-deep); border-bottom-color: var(--sr-teal); }
.nav-links a.cta {
  background: var(--sr-teal);
  color: var(--sr-white);
  padding: 10px 18px;
  border-radius: 8px;
  border-bottom: 0;
  transition: background var(--dur-fast) var(--ease-out);
}
.nav-links a.cta:hover { background: var(--sr-teal-deep); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-right: -10px; /* optical alignment with container gutter */
  cursor: pointer;
  border-radius: 8px;
  position: relative;
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--sr-teal);
  outline-offset: 2px;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 50%;
  width: 22px; height: 2px;
  background: var(--sr-navy);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-fast);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }

/* Scrim covers the page behind the open menu (mobile only) */
.nav-scrim {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(29,45,58,0.32);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out);
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-scrim { display: block; }
  .nav.open .nav-scrim { opacity: 1; pointer-events: auto; }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--sr-white);
    padding: 8px var(--gutter) calc(24px + env(safe-area-inset-bottom));
    border-left: 1px solid var(--sr-light-grey);
    max-width: 360px;
    margin-left: auto;
    transform: translateX(100%);
    transition: transform var(--dur-base) var(--ease-out), visibility 0s linear var(--dur-base);
    visibility: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: var(--shadow-3);
  }
  .nav-links a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--sr-light-grey);
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-links a.cta {
    margin-top: 20px;
    text-align: center;
    justify-content: center;
    border-bottom: 0;
    padding: 16px 18px;
    box-shadow: var(--shadow-teal);
  }
  .nav.open .nav-links {
    transform: translateX(0);
    visibility: visible;
    transition: transform var(--dur-base) var(--ease-out), visibility 0s linear 0s;
  }
  .nav.open .nav-toggle span:nth-child(1) { top: 21px; transform: translateX(-50%) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { top: 21px; transform: translateX(-50%) rotate(-45deg); }

  /* Lock background scroll while the drawer is open */
  body.nav-open { overflow: hidden; touch-action: none; }
}

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  padding: 14px 24px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--sr-teal);
  color: var(--sr-white);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { background: var(--sr-teal-deep); }
.btn-secondary {
  background: transparent;
  color: var(--sr-navy);
  border-color: var(--sr-navy);
}
.btn-secondary:hover { background: var(--sr-navy); color: var(--sr-white); }
.btn-ghost {
  background: transparent;
  color: var(--sr-navy);
  padding: 14px 6px;
}
.btn-ghost:hover { color: var(--sr-teal-deep); }
.btn-on-dark {
  background: var(--sr-white);
  color: var(--sr-navy);
}
.btn-on-dark:hover { background: var(--sr-teal); color: var(--sr-white); }

.btn .arrow { display: inline-block; transition: transform var(--dur-base) var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }

/* =====================================================================
   Hero — used on home, /patients, /consultants
   ===================================================================== */
.hero {
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(56px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 20px; display: inline-block; }
.hero-copy h1 { margin-bottom: clamp(24px, 2.4vw, 32px); }
.hero-copy .lede { margin-bottom: 32px; max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: 460px; margin: 0 auto; }
}

/* Hero visual — editorial composition */
.hero-visual {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: 24px;
  overflow: hidden;
}
.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(29,45,58,0.5) 100%);
  pointer-events: none;
}
.hero-visual-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  color: var(--sr-white);
  z-index: 2;
}
.hero-visual-caption .eyebrow { color: rgba(255,255,255,0.85); }
.hero-visual-caption strong { font-family: var(--font-serif); font-weight: 500; font-size: 1.4rem; display: block; margin-top: 4px; }

/* Abstract composition variant (no photo) */
.hero-art {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin: 0 auto;
}
.hero-art svg { width: 100%; height: 100%; }

/* Hero visual — brand composition (no portrait) */
.hero-visual-brand {
  background: linear-gradient(165deg, #EBFAF9 0%, #F9FAFA 55%, #D6F5F3 100%);
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.hero-visual-brand::after { display: none; }
.hero-brand-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.hero-brand-numeral {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--sr-navy);
  font-variant-numeric: tabular-nums;
}
.hero-brand-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sr-teal-deep);
}
.hero-brand-mark {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
  min-height: 220px;
}
.hero-brand-mark img {
  width: 58%;
  max-width: 260px;
  opacity: 0.92;
}
.hero-brand-bottom { margin-top: auto; }
.hero-brand-caption { margin-bottom: 18px; }
.hero-brand-pathway {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  position: relative;
  padding: 0 2px;
}
.hero-brand-pathway::before {
  content: '';
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 1.5px;
  background: var(--sr-teal);
  z-index: 0;
}
.hero-brand-pathway .pdot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--sr-warm-white);
  border: 1.5px solid var(--sr-teal);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-brand-pathway-labels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--fg-2);
  margin-top: 10px;
  text-align: center;
  letter-spacing: 0.02em;
}

.hero-brand-statement {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--sr-navy);
  margin: 0;
}

/* =====================================================================
   Patient stories — two-card editorial block
   ===================================================================== */
.stories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.story {
  background: var(--bg-surface);
  border: 1px solid var(--sr-light-grey);
  border-left: 3px solid var(--sr-teal);
  border-radius: 12px;
  padding: 32px;
}
.story-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.story-tag {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sr-navy);
  background: var(--sr-seafoam);
  padding: 4px 10px;
  border-radius: 999px;
}
.story-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--sr-navy);
  margin-bottom: 12px;
}
.story p:not(.story-attr):not(:last-of-type) { margin-bottom: 14px; }
.story-attr { margin-top: 12px; font-size: 0.85rem; font-style: italic; }

@media (max-width: 760px) { .stories { grid-template-columns: 1fr; } }

/* =====================================================================
   Testimonials block — stacked pull quotes
   ===================================================================== */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* =====================================================================
   Pricing footer note (consultants page)
   ===================================================================== */
.pricing-foot {
  text-align: center;
  max-width: 70ch;
  margin: 48px auto 0;
}
.pricing-foot p:first-child {
  font-size: 1.05rem;
  color: var(--sr-navy);
}
.pricing-foot .muted { font-size: 0.92rem; line-height: 1.55; }

/* =====================================================================
   5-step walkthrough (consultants page)
   ===================================================================== */
.walkthrough {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.walk-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--sr-light-grey);
}
.walk-step:last-child { border-bottom: 0; }
.walk-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--sr-teal);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.walk-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--sr-navy);
  margin-bottom: 8px;
}
.walk-body p { margin: 0; }

@media (max-width: 600px) {
  .walk-step { grid-template-columns: 60px 1fr; gap: 16px; }
  .walk-num { font-size: 1.6rem; }
}

/* =====================================================================
   Leadership cards (about page)
   ===================================================================== */
.leadership {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.lead-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
  background: var(--bg-surface);
  border: 1px solid var(--sr-light-grey);
  border-radius: 16px;
  padding: 28px;
}
.lead-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  background: var(--sr-seafoam);
}
.lead-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.lead-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #D6F5F3 0%, #EBFAF9 100%);
}
.lead-initials {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--sr-teal-deep);
  letter-spacing: -0.02em;
}
.lead-body .eyebrow { margin-bottom: 8px; display: inline-block; }
.lead-name {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--sr-navy);
  margin: 4px 0 14px;
}
.lead-body p { font-size: 0.95rem; line-height: 1.55; }
.lead-creds {
  list-style: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--sr-light-grey);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lead-creds li {
  position: relative;
  padding-left: 18px;
  font-size: 0.82rem;
  color: var(--fg-2);
}
.lead-creds li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1.5px;
  background: var(--sr-teal);
}

@media (max-width: 980px) {
  .leadership { grid-template-columns: 1fr; }
  .lead-card { grid-template-columns: 180px 1fr; }
}
@media (max-width: 580px) {
  .lead-card { grid-template-columns: 1fr; gap: 20px; }
  .lead-photo { max-width: 200px; }
}

/* =====================================================================
   Team categories (about page — wider team)
   ===================================================================== */
.team-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-cat {
  background: var(--bg-surface);
  border: 1px solid var(--sr-light-grey);
  border-radius: 12px;
  padding: 28px 24px;
}
.team-cat-mark {
  width: 52px;
  height: 52px;
  background: var(--sr-seafoam);
  color: var(--sr-teal-deep);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.team-cat-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--sr-navy);
  margin-bottom: 8px;
}
.team-cat p { font-size: 0.88rem; line-height: 1.5; color: var(--fg-2); margin: 0; }

@media (max-width: 880px) {
  .team-categories { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .team-categories { grid-template-columns: 1fr; }
}

/* =====================================================================
   Comparison table (about page outcomes)
   ===================================================================== */
.comparison {
  background: var(--bg-surface);
  border: 1px solid var(--sr-light-grey);
  border-radius: 16px;
  padding: 32px;
}
.comparison-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--sr-navy);
  margin-bottom: 20px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
}
.comparison-table th {
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sr-teal-deep);
  padding: 12px 16px;
  border-bottom: 1px solid var(--sr-light-grey);
}
.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid var(--sr-light-grey);
  font-size: 0.94rem;
  color: var(--fg-1);
}
.comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table .row-sr td { background: var(--sr-seafoam-soft); }
.comparison-table .row-sr td:first-child { border-left: 3px solid var(--sr-teal); padding-left: 13px; }

/* =====================================================================
   Hospital partners block
   ===================================================================== */
.hospital-partners { padding-top: 8px; }

/* =====================================================================
   Governance grid (dark band)
   ===================================================================== */
.governance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.gov-item {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
}
.gov-item h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sr-teal-soft);
  margin-bottom: 12px;
}
.gov-value {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--sr-white);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.gov-note {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 760px) {
  .governance-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   Contact page — dual form cards
   ===================================================================== */
.forms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.form-card {
  background: var(--bg-surface);
  border: 1px solid var(--sr-light-grey);
  border-radius: 16px;
  padding: 36px;
}
.form-card-alt { background: var(--sr-seafoam-soft); }
.form-card-head { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--sr-light-grey); }
.form-card-head .eyebrow { display: inline-block; margin-bottom: 8px; }
.form-card-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--sr-navy);
  margin: 4px 0 12px;
}
.form-card-head p { margin: 0; color: var(--fg-1); font-size: 0.94rem; }
.form-actions { display: flex; justify-content: flex-start; margin-top: 8px; }
.visually-hidden { position: absolute; left: -9999px; }

@media (max-width: 880px) {
  .forms-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px; }
}

/* =====================================================================
   Contact direct strip (3 cards)
   ===================================================================== */
.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  display: block;
  background: var(--bg-surface);
  border: 1px solid var(--sr-light-grey);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: left;
  transition: box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.contact-card:hover { box-shadow: var(--shadow-2); border-color: var(--sr-teal-soft); }
.contact-mark {
  width: 44px;
  height: 44px;
  background: var(--sr-seafoam);
  color: var(--sr-teal-deep);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.contact-card h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sr-teal-deep);
  margin-bottom: 8px;
}
.contact-card p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--sr-navy);
  margin: 0;
}

@media (max-width: 760px) { .contact-strip { grid-template-columns: 1fr; } }

/* =====================================================================
   Services (home page — 3 cards)
   ===================================================================== */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  background: var(--bg-surface);
  border: 1px solid var(--sr-light-grey);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.service:hover { box-shadow: var(--shadow-2); border-color: var(--sr-teal-soft); }
.service-mark {
  width: 56px;
  height: 56px;
  background: var(--sr-seafoam);
  color: var(--sr-teal-deep);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sr-navy);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.service p { margin-bottom: 22px; font-size: 0.95rem; line-height: 1.55; }
.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sr-teal-deep);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
}
.service-link .arrow { transition: transform var(--dur-base) var(--ease-out); }
.service:hover .service-link .arrow { transform: translateX(4px); }

@media (max-width: 980px) { .services { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services { grid-template-columns: 1fr; } }

/* =====================================================================
   Peer band (home page — quiet "For consultants" section)
   ===================================================================== */
.peer-band {
  background: var(--sr-seafoam);
  border-radius: 24px;
  padding: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}
.peer-band-copy h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); }
.peer-band-copy p { margin: 16px 0 0; max-width: 50ch; }
.peer-band-cta { display: flex; justify-content: flex-end; }

@media (max-width: 760px) {
  .peer-band { grid-template-columns: 1fr; gap: 24px; }
  .peer-band-cta { justify-content: flex-start; }
}

/* =====================================================================
   Hero meta line (home — supporting credibility under buttons)
   ===================================================================== */
.hero-meta {
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--fg-2);
  letter-spacing: 0.005em;
}

/* =====================================================================
   Legal pages (privacy, terms)
   ===================================================================== */
.legal-body { font-size: 0.97rem; }
.legal-body h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sr-navy);
  margin-top: 40px;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--sr-navy);
  margin-top: 20px;
  margin-bottom: 8px;
}
.legal-body p { margin: 0 0 14px; line-height: 1.65; }
.legal-body ul { margin: 0 0 18px; padding: 0; list-style: none; }
.legal-body li {
  padding: 8px 0 8px 22px;
  position: relative;
  line-height: 1.55;
}
.legal-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 17px;
  width: 10px;
  height: 1.5px;
  background: var(--sr-teal);
}
.legal-disclaimer {
  background: var(--sr-seafoam-soft);
  border-left: 3px solid var(--sr-teal);
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-bottom: 32px;
}

/* =====================================================================
   Stat strip — four-tile credibility band
   ===================================================================== */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sr-light-grey);
  border: 1px solid var(--sr-light-grey);
  border-radius: 12px;
  overflow: hidden;
}
.stat {
  background: var(--bg-surface);
  padding: 28px 24px;
  text-align: left;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.6vw, 2.8rem);
  font-weight: 600;
  line-height: 1;
  color: var(--sr-navy);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.stat-num sub { font-size: 0.5em; font-weight: 500; color: var(--sr-teal-deep); vertical-align: baseline; margin-left: 2px; }
.stat-label {
  font-family: var(--font-sans);
  font-size: 0.83rem;
  line-height: 1.4;
  color: var(--fg-2);
  margin-top: 10px;
}
.stat-label strong { color: var(--sr-navy); font-weight: 600; }

/* Alternating tints */
.stat-strip .stat:nth-child(1) { background: var(--bg-surface); }
.stat-strip .stat:nth-child(2) { background: var(--sr-seafoam-soft); }
.stat-strip .stat:nth-child(3) { background: var(--bg-surface); }
.stat-strip .stat:nth-child(4) { background: var(--sr-seafoam-soft); }

@media (max-width: 760px) {
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat { padding: 22px 18px; }
}

/* =====================================================================
   Two-path router cards
   ===================================================================== */
.router {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.router-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--sr-light-grey);
  border-radius: 16px;
  padding: 36px 32px 32px;
  transition: box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.router-card:hover {
  box-shadow: var(--shadow-3);
  border-color: var(--sr-teal-soft);
}
.router-card .eyebrow { margin-bottom: 16px; }
.router-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--sr-navy);
  margin-bottom: 12px;
}
.router-card p { color: var(--fg-1); margin-bottom: 28px; }
.router-card .router-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sr-teal-deep);
  font-weight: 600;
  font-size: 0.93rem;
}
.router-card:hover .router-cta .arrow { transform: translateX(4px); }
.router-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
}
.router-card a.router-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

@media (max-width: 760px) { .router { grid-template-columns: 1fr; } }

/* =====================================================================
   Pricing tier cards
   ===================================================================== */
.tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.tier {
  background: var(--bg-surface);
  border: 1px solid var(--sr-light-grey);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.tier-recommended {
  border-color: var(--sr-teal);
  border-width: 1.5px;
  box-shadow: var(--shadow-2);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--sr-teal);
  color: var(--sr-white);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.tier-name {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sr-teal-deep);
}
.tier-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--sr-navy);
  margin: 6px 0 4px;
}
.tier-price {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--sr-navy);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin: 12px 0 8px;
}
.tier-price-sub {
  font-family: var(--font-sans);
  font-size: 0.83rem;
  color: var(--fg-2);
  margin-bottom: 22px;
}
.tier-list {
  list-style: none;
  margin: 8px 0 24px;
}
.tier-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-top: 1px solid var(--sr-light-grey);
  font-size: 0.92rem;
  line-height: 1.5;
}
.tier-list li:first-child { border-top: 0; }
.tier-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 14px;
  height: 8px;
  border-left: 1.8px solid var(--sr-teal);
  border-bottom: 1.8px solid var(--sr-teal);
  transform: rotate(-45deg);
}
.tier .btn { margin-top: auto; width: 100%; }

@media (max-width: 760px) { .tiers { grid-template-columns: 1fr; } }

/* =====================================================================
   Pathway timeline — patient page
   ===================================================================== */
.pathway {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.pathway::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sr-teal);
  z-index: 0;
}
.pathway-step {
  position: relative;
  text-align: center;
  z-index: 1;
}
.pathway-dot {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  background: var(--bg-surface);
  border: 2px solid var(--sr-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sr-navy);
  position: relative;
  z-index: 2;
}
.pathway-dot small { font-size: 0.65rem; font-family: var(--font-sans); letter-spacing: 0.1em; font-weight: 600; color: var(--sr-teal-deep); display: block; line-height: 1; margin-top: 1px; text-transform: uppercase; }
.pathway-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sr-navy);
  margin-top: 14px;
  letter-spacing: 0.005em;
}
.pathway-desc {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--fg-2);
  line-height: 1.45;
  margin-top: 6px;
  padding: 0 4px;
}

@media (max-width: 880px) {
  .pathway { grid-template-columns: 1fr; gap: 0; }
  .pathway::before { left: 28px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; }
  .pathway-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    text-align: left;
    gap: 18px;
    padding: 12px 0;
    align-items: start;
  }
  .pathway-dot { margin: 0; }
  .pathway-label { margin-top: 4px; }
  .pathway-desc { padding: 0; margin-top: 4px; }
  .pathway-text { grid-column: 2; }
}

/* =====================================================================
   Two-column benefits — consultants page
   ===================================================================== */
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.benefits-col {
  padding: 36px 32px;
  border-radius: 16px;
}
.benefits-col-you      { background: var(--sr-seafoam); }
.benefits-col-patient  { background: var(--sr-seafoam-soft); }
.benefits-col h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sr-teal-deep);
  margin-bottom: 20px;
}
.benefits-col ul { list-style: none; }
.benefits-col li {
  padding: 14px 0 14px 28px;
  position: relative;
  border-top: 1px solid rgba(29,45,58,0.08);
  font-size: 0.93rem;
  line-height: 1.5;
}
.benefits-col li:first-of-type { border-top: 0; padding-top: 4px; }
.benefits-col li::before {
  content: '›';
  position: absolute;
  left: 4px;
  top: 12px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--sr-teal-deep);
  line-height: 1;
  font-weight: 600;
}
.benefits-col li:first-of-type::before { top: 2px; }

@media (max-width: 760px) { .benefits { grid-template-columns: 1fr; } }

/* =====================================================================
   Testimonial / pull quote
   ===================================================================== */
.pullquote {
  padding: 32px 0 32px 28px;
  border-left: 3px solid var(--sr-teal);
  max-width: 720px;
}
.pullquote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.32;
  color: var(--sr-navy);
  margin: 0 0 16px;
}
.pullquote-attr {
  font-family: var(--font-sans);
  font-size: 0.83rem;
  color: var(--fg-2);
  letter-spacing: 0.005em;
}

/* =====================================================================
   Team member cards
   ===================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--bg-surface);
  border: 1px solid var(--sr-light-grey);
  border-radius: 16px;
  padding: 24px;
}
.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  background: var(--sr-seafoam);
  margin-bottom: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--sr-teal-deep);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--sr-navy);
  margin: 0 0 4px;
}
.team-role {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sr-teal-deep);
  margin-bottom: 12px;
}
.team-bio { font-size: 0.88rem; color: var(--fg-1); margin: 0; line-height: 1.5; }

/* =====================================================================
   CTA band (dark)
   ===================================================================== */
.cta-band {
  background: var(--sr-navy);
  color: var(--sr-white);
  border-radius: 24px;
  padding: clamp(40px, 6vw, 72px);
  text-align: left;
}
.cta-band h2 { color: var(--sr-white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.82); margin-bottom: 28px; max-width: 56ch; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.cta-band-meta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}
.cta-band-meta a { color: var(--sr-teal-soft); }
.cta-band-meta a:hover { color: var(--sr-white); }

/* =====================================================================
   FAQ accordion
   ===================================================================== */
.faq { border-top: 1px solid var(--sr-light-grey); }
.faq-item { border-bottom: 1px solid var(--sr-light-grey); }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 24px 36px 24px 0;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--sr-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  transition: color var(--dur-fast) var(--ease-out);
}
.faq-q:hover { color: var(--sr-teal-deep); }
.faq-q::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform var(--dur-base) var(--ease-out);
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(-135deg) translate(-2px, -2px); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}
.faq-item.open .faq-a { max-height: 480px; }
.faq-a-inner { padding: 0 36px 24px 0; color: var(--fg-1); max-width: 68ch; }
.faq-a-inner p { margin: 0 0 12px; }

/* =====================================================================
   Trust strip (logos)
   ===================================================================== */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 56px);
}
.trust-strip img {
  height: 44px;
  width: auto;
  opacity: 0.78;
  filter: saturate(0.6);
  transition: opacity var(--dur-base) var(--ease-out);
}
.trust-strip img:hover { opacity: 1; }
.trust-strip .trust-cqc { height: 52px; }

/* =====================================================================
   Forms
   ===================================================================== */
.form { display: grid; gap: 18px; }
.form-row { display: grid; gap: 18px; }
@media (min-width: 680px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sr-navy);
  letter-spacing: 0.01em;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--sr-light-grey);
  border-radius: 8px;
  background: var(--bg-surface);
  color: var(--fg-1);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--sr-teal);
  box-shadow: 0 0 0 3px rgba(58,188,180,0.18);
}
.field textarea { min-height: 110px; resize: vertical; }
.field-hint { font-size: 0.78rem; color: var(--fg-2); }
.form-note { font-size: 0.8rem; color: var(--fg-2); line-height: 1.5; }

/* =====================================================================
   Footer
   ===================================================================== */
.footer {
  background: var(--sr-navy);
  color: rgba(255,255,255,0.72);
  padding: 64px 0 32px;
}
.footer a { color: rgba(255,255,255,0.82); }
.footer a:hover { color: var(--sr-teal-soft); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand img { width: 36px; height: 36px; margin-bottom: 16px; }
.footer-brand .wordmark {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--sr-white);
  margin-bottom: 12px;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.55; color: rgba(255,255,255,0.65); }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sr-teal-soft);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 0.88rem; }

.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom .reg { display: flex; flex-wrap: wrap; gap: 6px 18px; }

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

/* =====================================================================
   Utilities
   ===================================================================== */
.eyebrow-on-dark { color: var(--sr-teal-soft); }
.center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 48px; }
.max-prose { max-width: 64ch; }

.section-header { margin-bottom: clamp(32px, 4vw, 56px); }
.section-header .eyebrow { display: inline-block; margin-bottom: 14px; }
.section-header h2 { max-width: 22ch; margin-bottom: 12px; }
.section-header .lede { max-width: 60ch; color: var(--fg-2); }

/* Skip-link for accessibility */
.skip {
  position: absolute;
  left: -9999px;
  background: var(--sr-navy);
  color: var(--sr-white);
  padding: 12px 16px;
  border-radius: 8px;
  z-index: 200;
}
.skip:focus { left: 16px; top: 16px; }

/* =====================================================================
   Mobile + web optimisation — appended sweep
   Hardens the existing styles for phones, small tablets, and touch.
   Nothing above this block is changed; this is purely additive.
   ===================================================================== */

/* iOS / Android touch hygiene applied site-wide */
button,
.btn,
a.btn,
a.cta,
.faq-q,
.nav-toggle {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Wide tables — let them scroll cleanly on phones rather than overflow the page */
@media (max-width: 760px) {
  .comparison { padding: 24px 20px; }
  .comparison-title { font-size: 1.15rem; }
  .comparison-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
    white-space: nowrap;
    /* fade hint that there's more to the right */
    mask-image: linear-gradient(to right, #000 calc(100% - 28px), transparent);
  }
  .comparison-table thead, .comparison-table tbody { display: table; width: max-content; min-width: 100%; }
  .comparison-table tr { display: table-row; }
  .comparison-table th, .comparison-table td { display: table-cell; }
  .comparison-table td { white-space: normal; }
  .comparison-table th:first-child,
  .comparison-table td:first-child { white-space: nowrap; }
}

/* Forms — bump font to 16px so iOS doesn't auto-zoom on focus, and grow the
   touch target above the 44px minimum. */
@media (max-width: 760px) {
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;       /* prevents iOS zoom-on-focus */
    padding: 14px 14px;
    min-height: 48px;
    border-radius: 10px;
  }
  .field textarea { min-height: 132px; }
  .field label { font-size: 0.88rem; }
  .form-card { padding: 24px 20px; border-radius: 14px; }
  .form-card-head { margin-bottom: 22px; padding-bottom: 18px; }
  .form-card-title { font-size: 1.35rem; }
  .form .btn { width: 100%; }
}

/* Tighter container padding so copy stops hitting the edge on a 360–375 px screen */
@media (max-width: 480px) {
  :root { --gutter: 20px; }
  .container { padding: 0 var(--gutter); }
}

/* Type — small-print left from desktop is too small on a phone */
@media (max-width: 760px) {
  .hero-meta,
  .stat-label,
  .pathway-desc,
  .pricing-foot .muted,
  .footer-bottom { font-size: 0.85rem; line-height: 1.5; }
  .footer-brand p,
  .footer-col li { font-size: 0.92rem; }
  .footer-bottom .reg { gap: 4px 14px; }
  .legal-body { font-size: 1rem; }
}

/* Hero — make Dr Asadi's photo lighter and shorter on phones so the headline
   and CTA buttons land above the fold on a 6.1" screen. */
@media (max-width: 880px) {
  .hero { padding-top: 32px; padding-bottom: 40px; }
  .hero-grid { gap: 28px; }
  .hero-copy h1 { font-size: clamp(2.05rem, 7.6vw, 2.6rem); line-height: 1.1; }
  .hero-copy .lede { font-size: 1.02rem; margin-bottom: 24px; }
  .hero-actions { gap: 10px; width: 100%; }
  .hero-actions .btn { flex: 1 1 auto; min-height: 52px; }
  .hero-actions .btn-ghost { flex: 0 1 auto; padding: 14px 4px; }
  .hero-visual {
    order: 0;            /* photo sits BELOW headline + CTAs on mobile */
    max-width: 100%;
    aspect-ratio: 4 / 3; /* shorter on phones — less scrolling to reach value props */
    border-radius: 18px;
  }
  .hero-visual-img { object-position: center 22%; }
  .hero-visual-caption { left: 20px; right: 20px; bottom: 18px; }
  .hero-visual-caption strong { font-size: 1.25rem; }
}

/* Buttons — make sure every primary CTA is a fat, thumb-sized target */
@media (max-width: 760px) {
  .btn { min-height: 48px; padding: 14px 20px; font-size: 0.95rem; }
  .btn-primary { font-size: 1rem; }
  .cta-band-actions { width: 100%; }
  .cta-band-actions .btn { flex: 1 1 240px; min-height: 52px; }
}

/* Stat strip — keep 2 columns but make the numbers a touch smaller so the
   labels don't wrap awkwardly inside each tile */
@media (max-width: 480px) {
  .stat { padding: 18px 14px; }
  .stat-num { font-size: 1.85rem; }
  .stat-label { font-size: 0.82rem; margin-top: 6px; }
}

/* Service / tier / router cards — same gutter, tighter padding */
@media (max-width: 480px) {
  .service,
  .tier,
  .router-card,
  .story,
  .contact-card,
  .team-card { padding: 22px 20px; border-radius: 14px; }
  .service-title { font-size: 1.3rem; }
  .tier-title { font-size: 1.4rem; }
  .tier-price { font-size: 2.4rem; }
}

/* Peer band / CTA band — tighter padding + full-width buttons on phones */
@media (max-width: 760px) {
  .peer-band { padding: 28px 22px; border-radius: 18px; }
  .cta-band { padding: 32px 24px; border-radius: 18px; }
  .cta-band h2 { font-size: 1.6rem; line-height: 1.2; }
  .cta-band-meta { gap: 6px 0; flex-direction: column; align-items: flex-start; }
}

/* Trust strip — keep all three regulatory marks visible on a tight screen */
@media (max-width: 480px) {
  .trust-strip { gap: 22px; }
  .trust-strip img { height: 36px; }
}

/* FAQ — full-width tap target on the question button */
@media (max-width: 760px) {
  .faq-q { padding: 22px 32px 22px 0; font-size: 1rem; min-height: 56px; }
  .faq-a-inner { padding-right: 0; }
}

/* Inline CTAs inside cards — service-link arrows act as primary "Read more"
   actions, so they need a proper tap target on touch devices. Same for the
   testimonial / pricing link rows. */
@media (max-width: 760px) {
  .service-link,
  .router-cta,
  .link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 0;
  }
}

/* Nav brand — wordmark + mark should be a thumb-friendly home link */
@media (max-width: 760px) {
  .nav-brand { min-height: 44px; padding: 6px 4px 6px 0; }
}

/* Leadership card — initials photo placeholder feels enormous on phones */
@media (max-width: 580px) {
  .lead-card { padding: 22px 20px; }
  .lead-photo { max-width: 160px; aspect-ratio: 1 / 1; border-radius: 10px; }
  .lead-name { font-size: 1.45rem; }
}

/* Walkthrough — bigger numerals back on phones since they sit alone in a column */
@media (max-width: 600px) {
  .walk-step { padding: 20px 0; }
  .walk-num { font-size: 1.8rem; }
  .walk-title { font-size: 1.2rem; }
}

/* Footer — single column from very small screens */
@media (max-width: 480px) {
  .footer { padding: 48px 0 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { margin-top: 32px; flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* Honour the user's preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* =====================================================================
   v2 home — full-bleed hero, minimal services, trust band, compact footer
   ===================================================================== */

/* --- Nav over the full-bleed hero (transparent at top, solid on scroll) --- */
body.has-hero-full { padding-top: 0; }
.nav.nav-over-hero {
  background: transparent;
  border-bottom-color: transparent;
  position: fixed;
  inset: 0 0 auto 0;
}
.nav.nav-over-hero .nav-brand,
.nav.nav-over-hero .nav-links a:not(.cta) { color: var(--sr-white); }
.nav.nav-over-hero .nav-brand img { filter: brightness(0) invert(1); }
.nav.nav-over-hero .nav-toggle span { background: var(--sr-white); }
.nav.nav-over-hero .nav-links a:hover { color: var(--sr-teal-soft); }
.nav.nav-over-hero .nav-links a.cta {
  background: rgba(255,255,255,0.16);
  color: var(--sr-white);
  border: 1px solid rgba(255,255,255,0.32);
}
.nav.nav-over-hero .nav-links a.cta:hover { background: var(--sr-teal); border-color: var(--sr-teal); }

/* When scrolled past the hero, the nav goes solid */
.nav.nav-over-hero.is-scrolled {
  background: var(--sr-warm-white);
  border-bottom-color: var(--sr-light-grey);
  transition: background 200ms var(--ease-out), border-color 200ms var(--ease-out);
}
.nav.nav-over-hero.is-scrolled .nav-brand,
.nav.nav-over-hero.is-scrolled .nav-links a:not(.cta) { color: var(--fg-1); }
.nav.nav-over-hero.is-scrolled .nav-brand img { filter: none; }
.nav.nav-over-hero.is-scrolled .nav-toggle span { background: var(--sr-navy); }
.nav.nav-over-hero.is-scrolled .nav-links a.cta {
  background: var(--sr-teal);
  border-color: transparent;
}

/* When the mobile drawer is open, the nav must be readable on its own background */
@media (max-width: 880px) {
  .nav.nav-over-hero.open {
    background: var(--sr-warm-white);
    border-bottom-color: var(--sr-light-grey);
  }
  .nav.nav-over-hero.open .nav-brand,
  .nav.nav-over-hero.open .nav-links a:not(.cta) { color: var(--fg-1); }
  .nav.nav-over-hero.open .nav-brand img { filter: none; }
  .nav.nav-over-hero.open .nav-toggle span { background: var(--sr-navy); }
}

/* Brand link needs the same 44px mobile tap target as the rest of the nav,
   even in transparent-over-hero mode (the base .nav-brand rule loses to
   the nav-over-hero cascade at this breakpoint). */
@media (max-width: 880px) {
  .nav.nav-over-hero .nav-brand {
    min-height: 44px;
    padding: 10px 4px 10px 0;
  }
}

/* --- Full-bleed hero --- */
.hero-full {
  position: relative;
  min-height: 70vh;
  min-height: 70svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  color: var(--sr-white);
  margin-top: 0;
  padding: calc(var(--nav-h) + 32px) 0 clamp(56px, 8vw, 96px);
}
.hero-full-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Tuned for the hands photo — keeps both hands in the right third
     of the frame on desktop, and centered above-the-fold on phones. */
  object-position: 70% 60%;
  z-index: -2;
}
.hero-full-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    /* vertical: gentle darken top + bottom so headline+CTA reads */
    linear-gradient(180deg, rgba(19,28,38,0.50) 0%, rgba(19,28,38,0.10) 45%, rgba(19,28,38,0.70) 100%),
    /* horizontal: strong wash on left where headline sits, fading by 60% */
    linear-gradient(90deg, rgba(19,28,38,0.78) 0%, rgba(19,28,38,0.45) 28%, rgba(19,28,38,0.05) 60%, rgba(19,28,38,0) 80%);
}
.hero-full-inner {
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-full-copy { max-width: min(960px, 100%); }
.hero-full-copy h1 {
  color: var(--sr-white);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.012em;
  margin: 0 0 32px;
  /* The <br> tags drive breaks; nowrap stops layout from re-wrapping each line. */
  white-space: nowrap;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
/* At small widths, let the headline soft-wrap rather than overflow the screen */
@media (max-width: 760px) {
  .hero-full-copy h1 { white-space: normal; }
}
.hero-full-sub {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  max-width: 42ch;
  margin: 0 0 36px;
  font-weight: 400;
  text-shadow: 0 1px 12px rgba(0,0,0,0.22);
}
.hero-full-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.btn-hero {
  padding: 18px 28px;
  font-size: 1rem;
  border-radius: 10px;
  min-height: 56px;
}
.hero-quiet-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.32);
  padding: 6px 0 2px;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
@media (max-width: 760px) {
  .hero-quiet-link {
    min-height: 44px;
    padding: 12px 0 8px;
    display: inline-flex;
    align-items: center;
  }
}
.hero-quiet-link:hover { color: var(--sr-white); border-bottom-color: var(--sr-white); }

@media (max-width: 760px) {
  .hero-full { min-height: 80vh; min-height: 80svh; padding-bottom: 56px; }
  .hero-full-copy h1 { font-size: clamp(2.2rem, 9vw, 2.8rem); }
  .hero-full-sub { font-size: 1.05rem; margin-bottom: 28px; max-width: 34ch; }
  .hero-full-actions { gap: 14px 20px; }
  .btn-hero { width: 100%; justify-content: center; }
  .hero-quiet-link { font-size: 0.95rem; }
  /* On portrait phones the hands need to recenter — they're off to the
     right of the wide frame, so pull the focal point back toward middle. */
  .hero-full-img { object-position: 60% 55%; }
  /* Phones see less of the right side of the image, so we lean
     the dark wash slightly further right to keep the headline legible. */
  .hero-full-veil {
    background:
      linear-gradient(180deg, rgba(19,28,38,0.55) 0%, rgba(19,28,38,0.15) 40%, rgba(19,28,38,0.75) 100%),
      linear-gradient(90deg, rgba(19,28,38,0.65) 0%, rgba(19,28,38,0.25) 70%, rgba(19,28,38,0) 100%);
  }
}

/* --- "Why we exist" prose block --- */
.section-prose { padding-top: clamp(72px, 9vw, 112px); padding-bottom: clamp(40px, 6vw, 72px); }
.section-prose .eyebrow { display: inline-block; margin-bottom: 18px; }
.prose-h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--sr-navy);
  margin: 0 0 24px;
  text-wrap: balance;
}
.section-prose .lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  color: var(--fg-1);
  max-width: 56ch;
}

/* --- Minimal service icons --- */
.section-services-min { padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(72px, 9vw, 112px); }
.services-min {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 5vw, 72px);
  text-align: center;
}
.service-min { padding: 0 8px; }
.service-min-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sr-teal-deep);
  background: var(--sr-seafoam-soft);
  border-radius: 50%;
}
.service-min-icon svg { width: 44px; height: 44px; opacity: 0.92; }
.service-min-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--sr-navy);
  letter-spacing: -0.005em;
  margin: 0 0 10px;
}
.service-min-sub {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}
.services-min-cta {
  text-align: center;
  margin: clamp(40px, 5vw, 64px) 0 0;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sr-teal-deep);
  border-bottom: 1px solid var(--sr-teal);
  padding-bottom: 4px;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.link-arrow:hover { color: var(--sr-navy); border-bottom-color: var(--sr-navy); }
.link-arrow .arrow { transition: transform var(--dur-base) var(--ease-out); }
.link-arrow:hover .arrow { transform: translateX(4px); }

@media (max-width: 760px) {
  .services-min { grid-template-columns: 1fr; gap: 48px; }
}

/* --- Single centered emotional quote --- */
.section-quote { padding-top: clamp(72px, 9vw, 120px); padding-bottom: clamp(72px, 9vw, 120px); }
.hero-quote {
  margin: 0;
  text-align: center;
  position: relative;
}
.hero-quote::before {
  content: '“';
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 8vw, 7rem);
  color: var(--sr-teal);
  line-height: 0.8;
  display: block;
  margin-bottom: 12px;
}
.hero-quote-text {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.4;
  color: var(--sr-navy);
  margin: 0 auto 32px;
  max-width: 28ch;
  text-wrap: balance;
}
.hero-quote-attr {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--fg-2);
}

/* --- Compressed pathway --- */
.section-pathway { padding-top: clamp(56px, 7vw, 88px); padding-bottom: clamp(56px, 7vw, 88px); }
.center-header { text-align: center; }
.center-header .eyebrow { display: inline-block; margin-bottom: 14px; }
.center-header h2 { margin: 0 auto 12px; max-width: 22ch; }

.pathway-mini {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  align-items: start;
  position: relative;
}
.pathway-mini::before {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  top: 20px;
  height: 2px;
  background: var(--sr-teal);
  opacity: 0.4;
  z-index: 0;
}
.pathway-mini-step {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.pathway-mini-mark {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sr-navy);
  background: var(--sr-warm-white);
  border: 1.5px solid var(--sr-teal);
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  min-width: 76px;
}
.pathway-mini-label {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--fg-1);
  line-height: 1.4;
  max-width: 18ch;
}

@media (max-width: 760px) {
  .pathway-mini { grid-template-columns: 1fr; gap: 0; }
  .pathway-mini::before {
    left: 38px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
  }
  .pathway-mini-step {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 14px 0;
  }
  .pathway-mini-mark { min-width: 76px; }
  .pathway-mini-label { max-width: none; }
}

/* --- Quiet trust band --- */
.trust-band {
  padding: clamp(48px, 6vw, 72px) 0;
  background: var(--bg-page);
  border-top: 1px solid var(--sr-hair-grey);
}
.trust-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.trust-stat-num {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  color: var(--sr-navy);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.trust-stat-num sub {
  font-size: 0.45em;
  vertical-align: baseline;
  color: var(--sr-teal-deep);
  margin-left: 2px;
  font-weight: 500;
}
.trust-stat-lab {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--fg-2);
  letter-spacing: 0.005em;
}
.trust-band-divider {
  height: 1px;
  background: var(--sr-light-grey);
  margin: clamp(28px, 4vw, 44px) auto;
  max-width: 320px;
}
.trust-band-marks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 56px);
  flex-wrap: wrap;
}
.trust-band-marks img {
  height: 36px;
  width: auto;
  opacity: 0.65;
  filter: saturate(0.5);
  transition: opacity var(--dur-base) var(--ease-out);
}
.trust-band-marks img:hover { opacity: 0.95; }

@media (max-width: 760px) {
  .trust-band-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .trust-band-marks { gap: 28px; }
  .trust-band-marks img { height: 30px; }
}

/* --- Compact footer --- */
.footer-compact {
  background: var(--sr-navy);
  padding: 36px 0 28px;
  color: rgba(255,255,255,0.7);
}
.footer-compact-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-brand-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--sr-white);
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 44px;
  padding: 10px 0;
}
.footer-brand-line img { width: 26px; height: 26px; }
.footer-compact-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 28px;
}
.footer-compact-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 0;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-compact-links a:hover { color: var(--sr-teal-soft); }
.footer-fineprint {
  margin: 18px 0 0;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  text-wrap: pretty;
}
.footer-fineprint a {
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.footer-fineprint a:hover { color: var(--sr-white); border-bottom-color: rgba(255,255,255,0.5); }

@media (max-width: 760px) {
  .footer-compact-top { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-compact-links { gap: 12px 22px; }
  .footer-fineprint { font-size: 0.82rem; }
}

/* Utility — no top margin override for the final CTA heading */
.cta-band h2.mt-0 { margin-top: 0; }

/* =====================================================================
   v2 components — 3-phase pathway, ROI panel, consultant onboarding,
   outcomes report mock, 3-tier CTAs, alt-billing details
   ===================================================================== */

/* --- Three-phase pathway (patients page) --- */
.phases {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.phase {
  background: var(--bg-surface);
  border: 1px solid var(--sr-light-grey);
  border-top: 3px solid var(--sr-teal);
  border-radius: 14px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.phase-head { display: flex; flex-direction: column; gap: 10px; }
.phase-mark {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sr-teal-deep);
  background: var(--sr-seafoam);
  padding: 6px 12px;
  border-radius: 999px;
}
.phase-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--sr-navy);
  margin: 0;
  letter-spacing: -0.005em;
}
.phase-lede {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--fg-1);
  margin: 0;
}
.phase-detail summary {
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sr-teal-deep);
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  min-height: 44px;
}
.phase-detail summary::-webkit-details-marker { display: none; }
.phase-detail summary::after {
  content: '▾';
  font-size: 0.85em;
  transition: transform var(--dur-base) var(--ease-out);
}
.phase-detail[open] summary::after { transform: rotate(180deg); }
.phase-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
.phase-list li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--fg-1);
}
.phase-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 1.5px;
  background: var(--sr-teal);
}

@media (max-width: 760px) {
  .phases { grid-template-columns: 1fr; gap: 18px; }
  .phase { padding: 22px 20px; }
}

/* --- ROI calculator (consultants page) --- */
.roi-calc {
  background: var(--bg-surface);
  border: 1px solid var(--sr-light-grey);
  border-radius: 18px;
  padding: clamp(24px, 3.5vw, 40px);
  box-shadow: var(--shadow-2);
}
.roi-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 20px 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--sr-hair-grey);
}
.roi-field { display: flex; flex-direction: column; gap: 6px; }
.roi-field label {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sr-navy);
  letter-spacing: 0.01em;
}
.roi-field input,
.roi-select select {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sr-navy);
  padding: 12px 14px;
  border: 1.5px solid var(--sr-light-grey);
  border-radius: 8px;
  background: var(--bg-surface);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  width: 100%;
}
.roi-field input:focus,
.roi-select select:focus {
  outline: 0;
  border-color: var(--sr-teal);
  box-shadow: 0 0 0 3px rgba(58,188,180,0.18);
}
.roi-select { position: relative; }
.roi-select::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--sr-teal-deep);
}
.roi-select select { appearance: none; padding-right: 36px; }
.roi-hint {
  font-size: 0.78rem;
  color: var(--fg-2);
  line-height: 1.4;
}
.roi-output {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.roi-output-card {
  background: var(--sr-warm-white);
  border: 1px solid var(--sr-light-grey);
  border-radius: 12px;
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.roi-output-primary {
  background: var(--sr-navy);
  border-color: var(--sr-navy);
  color: var(--sr-white);
}
.roi-output-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.roi-output-primary .roi-output-label { color: rgba(255,255,255,0.7); }
.roi-output-value {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--sr-navy);
  font-variant-numeric: tabular-nums;
}
.roi-output-primary .roi-output-value { color: var(--sr-teal-soft); }
.roi-output-sub {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--fg-2);
  margin-top: 4px;
}
.roi-output-primary .roi-output-sub { color: rgba(255,255,255,0.75); }
.roi-foot {
  margin: 18px 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--fg-2);
  text-wrap: pretty;
}

@media (max-width: 880px) {
  .roi-inputs { grid-template-columns: 1fr; }
  .roi-output { grid-template-columns: 1fr; }
}

/* --- Consultant onboarding (Day 0 / Week 1 / Week 4) --- */
.onboard {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: onboard;
}
.onboard-step {
  background: var(--bg-surface);
  border: 1px solid var(--sr-light-grey);
  border-radius: 14px;
  padding: 28px 26px;
  position: relative;
}
.onboard-when {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sr-teal-deep);
  background: var(--sr-seafoam-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}
.onboard-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--sr-navy);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.onboard-body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--fg-1);
}
@media (max-width: 760px) {
  .onboard { grid-template-columns: 1fr; gap: 16px; }
  .onboard-step { padding: 22px 20px; }
}

/* --- Outcomes report mock --- */
.report-mock { margin: 0; }
.report-card {
  background: var(--bg-surface);
  border: 1px solid var(--sr-light-grey);
  border-radius: 14px;
  box-shadow: 0 30px 60px -20px rgba(29,45,58,0.18), 0 8px 18px rgba(29,45,58,0.08);
  overflow: hidden;
}
.report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 24px;
  background: var(--sr-navy);
  color: var(--sr-white);
}
.report-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
}
.report-brand img { width: 22px; height: 22px; filter: brightness(0) invert(1); }
.report-date {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.report-body { padding: 28px clamp(20px, 3vw, 36px); display: grid; gap: 24px; }
.report-patient {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--sr-light-grey);
}
.report-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.85rem;
  padding: 4px 0;
}
.report-row span:first-child {
  color: var(--fg-2);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.report-row strong {
  color: var(--sr-navy);
  font-weight: 600;
  text-align: right;
}
.report-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sr-light-grey);
  border: 1px solid var(--sr-light-grey);
  border-radius: 10px;
  overflow: hidden;
}
.report-metric {
  background: var(--bg-surface);
  padding: 18px 16px;
  text-align: center;
}
.report-metric-num {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--sr-navy);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.report-metric-lab {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-top: 10px;
  line-height: 1.35;
}
.report-section { display: flex; flex-direction: column; gap: 10px; }
.report-section h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sr-teal-deep);
  margin: 0;
}
.report-bar {
  display: grid;
  grid-template-columns: 80px 1fr 70px;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
}
.report-bar-label {
  font-weight: 600;
  color: var(--sr-navy);
}
.report-bar-track {
  height: 10px;
  background: var(--sr-hair-grey);
  border-radius: 999px;
  overflow: hidden;
}
.report-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sr-teal) 0%, var(--sr-teal-deep) 100%);
  border-radius: 999px;
}
.report-bar-value {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--sr-navy);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.report-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--sr-navy);
  margin: 0;
  padding-left: 18px;
  border-left: 3px solid var(--sr-teal);
}
.report-quote em {
  display: block;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-top: 6px;
}
.report-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 24px;
  border-top: 1px solid var(--sr-light-grey);
  background: var(--bg-tinted);
  font-size: 0.75rem;
  color: var(--fg-2);
  letter-spacing: 0.005em;
}
.report-cap {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: var(--fg-2);
  text-align: center;
}

@media (max-width: 720px) {
  .report-patient { grid-template-columns: 1fr; }
  .report-metrics { grid-template-columns: 1fr 1fr; }
  .report-bar { grid-template-columns: 56px 1fr 56px; gap: 10px; font-size: 0.78rem; }
}

/* --- "Your cost: £0" pricing reframe (consultants) --- */
.zero-cost {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.005em;
  margin: 0 auto 14px;
  color: var(--sr-navy);
}
.zero-cost-num {
  font-weight: 600;
  color: var(--sr-teal-deep);
  font-variant-numeric: tabular-nums;
}

/* --- Alt-billing details + tier-detail (collapsible) --- */
.alt-billing,
.tier-detail {
  max-width: 720px;
  margin: 0 auto 16px;
  background: var(--bg-surface);
  border: 1px solid var(--sr-light-grey);
  border-radius: 12px;
  overflow: hidden;
}
.alt-billing summary,
.tier-detail summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  min-height: 56px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sr-navy);
  transition: background var(--dur-fast) var(--ease-out);
}
.alt-billing summary::-webkit-details-marker,
.tier-detail summary::-webkit-details-marker { display: none; }
.alt-billing summary:hover,
.tier-detail summary:hover { background: var(--sr-seafoam-soft); color: var(--sr-teal-deep); }
.alt-billing-chev {
  font-size: 0.85em;
  color: var(--sr-teal-deep);
  transition: transform var(--dur-base) var(--ease-out);
}
.alt-billing[open] .alt-billing-chev,
.tier-detail[open] .alt-billing-chev { transform: rotate(180deg); }
.alt-billing-body {
  padding: 4px 22px 22px;
  border-top: 1px solid var(--sr-hair-grey);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--fg-1);
}
.alt-billing-body p { margin: 14px 0 0; }
.tier-detail { max-width: none; }

/* --- Consultant testimonial trio (C5) --- */
.consultant-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cq {
  background: var(--bg-surface);
  border: 1px solid var(--sr-light-grey);
  border-left: 3px solid var(--sr-teal);
  border-radius: 12px;
  padding: 26px 24px;
  margin: 0;
}
.cq-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--sr-navy);
  margin: 0 0 18px;
  text-wrap: balance;
}
.cq-attr {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fg-2);
}
@media (max-width: 760px) {
  .consultant-quotes { grid-template-columns: 1fr; gap: 18px; }
}

/* --- Three tiered next-step cards (C3) --- */
.next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.next-card {
  background: var(--bg-surface);
  border: 1px solid var(--sr-light-grey);
  border-radius: 14px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.next-card:hover { border-color: var(--sr-teal-soft); box-shadow: var(--shadow-2); transform: translateY(-2px); }
.next-card-primary {
  background: var(--sr-navy);
  border-color: var(--sr-navy);
  color: var(--sr-white);
}
.next-card-primary:hover { border-color: var(--sr-teal); }
.next-rank {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sr-teal-deep);
}
.next-card-primary .next-rank { color: var(--sr-teal-soft); }
.next-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--sr-navy);
  margin: 0;
  letter-spacing: -0.005em;
}
.next-card-primary .next-title { color: var(--sr-white); }
.next-card p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--fg-1);
  flex: 1;
}
.next-card-primary p { color: rgba(255,255,255,0.85); }
.next-card .btn { align-self: flex-start; margin-top: 8px; }
.next-card-primary .btn-primary {
  background: var(--sr-teal);
  color: var(--sr-white);
}
.next-card-primary .btn-primary:hover { background: var(--sr-teal-soft); color: var(--sr-navy); }

@media (max-width: 880px) {
  .next-grid { grid-template-columns: 1fr; gap: 18px; }
}
