/* ============================================================
   TOKENS.CSS — Design Variables
   All color, typography, spacing, and radius tokens.
   Import this first in every page stylesheet.
   ============================================================ */

:root {
  /* Colors */
  --bg:             #0a1628;
  --bg-alt:         #0f1f35;
  --surface:        #112236;
  --surface-light:  #f4f6f8;
  --border:         #1e3450;
  --border-light:   #e2e8ef;

  --accent:         #00b4c8;
  --accent-hover:   #009eb1;
  --accent-dim:     rgba(0, 180, 200, 0.10);
  --accent-glow:    rgba(0, 180, 200, 0.22);

  --gold:           #c9a84c;
  --gold-dim:       rgba(201, 168, 76, 0.15);

  --text:           #e8edf2;
  --text-muted:     #7a93ab;
  --text-dimmed:    #3d5870;
  --text-dark:      #1a2e42;
  --text-dark-muted:#5a7080;

  /* Typography */
  --font-serif:     'Cormorant Garamond', Georgia, serif;
  --font-sans:      'Inter', system-ui, sans-serif;
  --font-display:   'Space Grotesk', system-ui, sans-serif;

  /* Spacing scale */
  --sp-xs:   8px;
  --sp-sm:   16px;
  --sp-md:   32px;
  --sp-lg:   64px;
  --sp-xl:   100px;

  /* Radius */
  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-lg: 12px;

  /* Nav height */
  --nav-h: 72px;
}
/* ============================================================
   LAYOUT.CSS — Shared Components
   Nav, footer, and utility classes used across all pages.
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY BASE ---- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.15; }

/* ---- NAV ---- */
.shs-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.shs-nav-logo img { height: 42px; width: auto; display: block; }

.shs-nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.shs-nav-badge {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.shs-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.shs-nav-links a {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.shs-nav-links a:hover,
.shs-nav-links a.active { color: var(--text); }

.shs-nav-btn-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shs-nav-cta,
.shs-nav-links a.shs-nav-btn {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.shs-nav-cta:hover,
.shs-nav-links a.shs-nav-btn:hover {
  background: var(--accent);
  color: var(--bg);
}

.shs-nav-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shs-nav-login {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.shs-nav-login:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

/* Mobile nav toggle */
.shs-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.shs-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  margin: 5px 0;
  transition: 0.3s;
}

/* ---- FOOTER ---- */
.shs-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 48px 28px;
}

.shs-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.shs-footer-brand img {
  height: 38px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0.7);
}

.shs-footer-brand p {
  font-size: 13px;
  color: var(--text-dimmed);
  line-height: 1.7;
  max-width: 260px;
}

.shs-footer-col h6 {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.shs-footer-col ul {
  list-style: none;
}

.shs-footer-col ul li {
  margin-bottom: 10px;
}

.shs-footer-col ul li a {
  font-size: 13px;
  color: var(--text-dimmed);
  text-decoration: none;
  transition: color 0.2s;
}

.shs-footer-col ul li a:hover { color: var(--text-muted); }

.shs-footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.shs-footer-bottom p,
.shs-footer-bottom a {
  font-size: 11px;
  color: var(--text-dimmed);
  text-decoration: none;
}

.shs-footer-bottom a:hover { color: var(--text-muted); }

.shs-footer-legal-links { display: flex; gap: 20px; }

/* ---- SHARED UTILITIES ---- */
.tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
}

.tag::before,
.tag::after {
  content: '';
  display: block;
  height: 1px;
  width: 30px;
  background: var(--accent);
  opacity: 0.45;
}

.tag.tag-left::after { display: none; }
.tag.tag-left::before { display: none; }
.tag.tag-left { gap: 0; }
.tag.tag-left::after { display: none; }

.serif-em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--accent);
  transition: background 0.2s, opacity 0.2s;
  cursor: pointer;
}

.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.btn-outline {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  color: var(--text);
  padding: 13px 31px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}

.btn-outline:hover { border-color: var(--text-muted); color: var(--text); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.btn-ghost:hover { border-color: var(--accent); }

/* Stats row */
.stats-row {
  display: flex;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-value .accent { color: var(--accent); }

.stat-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8aa0b8;
  line-height: 1.5;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .shs-nav { padding: 0 24px; }

  .shs-nav-links,
  .shs-nav-cta,
  .shs-nav-cta-group { display: none; }

  .shs-nav-toggle { display: block; }

  .shs-nav.open .shs-nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg-alt);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }

  .shs-nav.open .shs-nav-cta {
    display: block;
    text-align: center;
    margin: 0 24px 24px;
    position: fixed;
    top: calc(var(--nav-h) + 180px);
    left: 0; right: 0;
  }

  .shs-nav.open .shs-nav-cta-group {
    display: flex;
    gap: 12px;
    margin: 0 24px 24px;
    position: fixed;
    top: calc(var(--nav-h) + 180px);
    left: 0; right: 0;
  }

  .shs-nav.open .shs-nav-cta-group a {
    flex: 1;
    text-align: center;
  }

  .shs-footer { padding: 48px 24px 24px; }

  .shs-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .shs-footer-brand { grid-column: 1 / -1; }

  .stats-row { flex-wrap: wrap; }
  .stat-item { min-width: 50%; border-bottom: 1px solid var(--border); }
}

@media (max-width: 560px) {
  .shs-footer-grid { grid-template-columns: 1fr; }
  .stat-item { min-width: 100%; }
}

@media (max-width: 480px) {
  .shs-nav-badge { display: none; }
}
/* ============================================================
   HOME.CSS — Homepage Specific Styles
   ============================================================ */

/* ---- HERO ---- */
.home-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* Cosmic orb — teal top-right, gold center */
.home-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 580px; height: 580px;
  background:
    radial-gradient(ellipse at 60% 30%, rgba(0,180,200,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 65%, rgba(201,168,76,0.22) 0%, transparent 45%);
  border-radius: 50%;
  pointer-events: none;
}

.home-hero::after {
  content: '';
  position: absolute;
  top: 5%; right: 3%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(8,40,32,0.65) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  padding: 120px 48px 40px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  max-width: 820px;
}

.hero-em-serif { font-style: italic; color: var(--text); }
.hero-em-teal  { font-style: normal; color: var(--accent); }

/* keep old .hero-title em working too */
.hero-title em { font-style: italic; color: var(--accent); }

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: 28px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }

.hero-scroll-link {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.hero-scroll-link:hover { color: var(--text); }

/* Scroll indicator — right side */
.hero-scroll-indicator {
  position: absolute;
  right: 48px;
  bottom: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

.hero-scroll-indicator span {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-dimmed);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--text-dimmed), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}

@keyframes scrollpulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.hero-stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

/* ---- SIX PILLARS (home summary) ---- */
.home-pillars {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}

.pillars-intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 60px;
}

.pillars-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 300;
  color: var(--text);
  margin: 14px 0 14px;
}

.pillars-intro p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.pillars-hex-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border);
}

.pillar-hex {
  background: var(--bg-alt);
  padding: 36px 30px;
  transition: background 0.25s;
}

.pillar-hex:hover { background: var(--surface); }

.pillar-hex-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--text-dimmed);
  line-height: 1;
  margin-bottom: 14px;
  transition: color 0.25s;
}

.pillar-hex:hover .pillar-hex-num { color: var(--accent); opacity: 0.5; }

.pillar-hex-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}

.pillar-hex-sub {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.pillar-hex-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- CONSUMER SUMMARY ---- */
.path-section {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.path-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.path-section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 300;
  color: var(--text);
  margin: 14px 0 14px;
}

.path-section-header p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.path-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.path-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 48px 40px;
  transition: border-color 0.3s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.path-card:hover {
  border-color: rgba(0,180,200,0.4);
  transform: translateY(-3px);
}

.path-card-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.path-card h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.path-card h3 em {
  font-style: italic;
  color: var(--accent);
}

.path-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  flex-grow: 1;
}

.path-card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}

.path-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-display);
}

.path-feature::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .home-hero { padding: 0; }
  .hero-inner { padding: 100px 24px 40px; }
  .hero-scroll-indicator { display: none; }
  .about-strip { grid-template-columns: 1fr; gap: 48px; padding: 70px 24px; }
  .home-pillars { padding: 60px 24px; }
  .pillars-hex-grid { grid-template-columns: 1fr 1fr; }
  .path-section { padding: 70px 24px; }
  .path-cards { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .pillars-hex-grid { grid-template-columns: 1fr; }
  .path-card-features { grid-template-columns: 1fr; }
}
/* ============================================================
   PATIENT.CSS — Consumer / Patient Page Styles
   ============================================================ */

/* ---- PAGE HERO ---- */
.patient-hero {
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 60px) 48px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.patient-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,180,200,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.patient-hero-inner { max-width: 680px; padding-bottom: 56px; }

.patient-hero-inner .tag { margin-bottom: 24px; }

.patient-hero-inner h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 22px;
  max-width: 100%;
}

.patient-hero-inner h1 em {
  font-style: italic;
  color: var(--accent);
}

.patient-hero-inner p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-trust {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--text-dimmed);
  letter-spacing: 0.05em;
  margin-top: 18px;
}

/* ---- WHY SECTION ---- */
.why-section {
  padding: 90px 48px;
  max-width: 840px;
  margin: 0 auto;
}

.why-section .tag { margin-bottom: 20px; }

.why-section h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.25;
}

.why-section p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

.why-section p em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text);
  font-size: 16px;
}

.see-pillars-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
}

.see-pillars-link:hover { border-color: var(--accent); }

/* ---- PILLARS (detailed patient version) ---- */
.patient-pillars {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}

.patient-pillars-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}

.patient-pillars-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 300;
  color: var(--text);
  margin: 14px 0 14px;
}

.patient-pillars-header p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.patient-pillar-list { max-width: 820px; margin: 0 auto; }

.patient-pillar {
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
}

.patient-pillar:last-child { border-bottom: none; }

.pillar-header-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 28px;
  margin-bottom: 20px;
}

.p-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: var(--text-dimmed);
  line-height: 1;
  padding-top: 6px;
}

.p-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}

.p-sub {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.pillar-quote {
  margin: 0 0 20px 84px;
  padding: 16px 20px;
  border-left: 2px solid var(--border);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.pillar-body {
  margin-left: 84px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.pillar-body strong {
  color: var(--text);
  font-weight: 600;
}

.pillar-outcomes {
  margin-left: 84px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.outcome-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
}

/* ---- PROCESS ---- */
.process-section {
  padding: 90px 48px;
  max-width: 820px;
  margin: 0 auto;
}

.process-section h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  color: var(--text);
  margin: 16px 0 10px;
}

.process-section > p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.process-steps { display: flex; flex-direction: column; gap: 20px; }

.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0 24px;
  align-items: start;
}

.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.step-meta {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---- TESTIMONIAL ---- */
.testimonial-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}

.testimonial-inner {
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--text);
  margin: 14px 0 32px;
}

.testimonial-quote {
  border-left: 3px solid var(--accent);
  padding: 20px 28px;
  margin-bottom: 28px;
  background: var(--accent-dim);
}

.testimonial-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--text);
  line-height: 1.7;
}

.testimonial-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h5 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.author-info p {
  font-size: 12px;
  color: var(--text-muted);
}

.testimonial-note {
  font-size: 11px;
  color: var(--text-dimmed);
  font-style: italic;
  margin-top: 20px;
}

/* ---- OUR APPROACH ---- */
.approach-section {
  padding: 90px 48px;
  max-width: 820px;
  margin: 0 auto;
}

.approach-intro {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  margin-bottom: 40px;
}

.approach-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.approach-intro p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.approach-items { display: flex; flex-direction: column; }

.approach-item {
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.approach-item:last-child { border-bottom: none; }

.approach-item h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.approach-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---- IS THIS YOU ---- */
.for-you-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 48px;
}

.for-you-inner { max-width: 820px; margin: 0 auto; }

.for-you-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--text);
  margin: 14px 0 10px;
}

.for-you-inner > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.75;
}

.for-you-list { display: flex; flex-direction: column; gap: 12px; }

.for-you-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.for-you-check {
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
  flex-shrink: 0;
}

.for-you-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.for-you-item p strong {
  color: var(--text);
  font-weight: 600;
}

.program-note {
  max-width: 600px;
  margin: 48px auto 0;
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: var(--gold-dim);
}

.program-note p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

.program-note strong { color: var(--text); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .patient-hero { padding: calc(var(--nav-h) + 40px) 24px 0; }
  .patient-hero-inner { padding-bottom: 40px; }
  .why-section, .process-section, .testimonial-section,
  .approach-section, .for-you-section, .discovery-section { padding: 60px 24px; }
  .patient-pillars { padding: 60px 24px; }
  .pillar-quote, .pillar-body, .pillar-outcomes { margin-left: 0; }
  .pillar-header-row { grid-template-columns: 44px 1fr; gap: 0 16px; }
}
/* ============================================================
   PROVIDER.CSS — Provider Page Styles
   ============================================================ */

/* ---- HERO ---- */
.provider-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 60px) 48px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* Cosmic glow layers — approximate the eclipse/orb from PPTX */
.provider-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 700px; height: 700px;
  background:
    radial-gradient(ellipse at 55% 35%, rgba(0,180,200,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 65%, rgba(201,168,76,0.2) 0%, transparent 40%);
  border-radius: 50%;
  pointer-events: none;
}

.provider-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  background: radial-gradient(ellipse at 75% 25%, rgba(0,180,200,0.06) 0%, transparent 55%);
  pointer-events: none;
}

.provider-hero-inner {
  max-width: 680px;
  padding-bottom: 56px;
  position: relative;
  z-index: 1;
}

.provider-hero-inner h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.2vw, 58px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.provider-hero-inner h1 em {
  font-style: italic;
  text-transform: none;
  color: var(--accent);
}

.provider-hero-gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}

.provider-hero-inner p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 32px;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}

.btn-hero-outline:hover {
  background: var(--accent);
  color: var(--bg);
}

/* Stats row — improved contrast for provider hero */
.provider-hero .stats-row {
  background: rgba(10, 22, 40, 0.85);
  border-top: 1px solid var(--border);
}

.provider-hero .stat-item {
  border-right-color: var(--border);
  padding: 32px 28px;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.provider-hero .stat-value {
  font-size: 44px;
  color: var(--text);
  margin-bottom: 12px;
  justify-content: center;
}

.provider-hero .stat-label {
  color: #a0b4c8;
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 1.7;
  text-align: center;
}
/* ---- THE DIFFERENCE ---- */
.diff-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  margin: 16px 0 20px;
}

.diff-left h2 em {
  font-style: italic;
  color: var(--accent);
}

.diff-left p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 10px;
}

.diff-right {}

/* Knowing vs Doing */
.kvd-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 36px;
}

.kvd-header {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.kvd-header div {
  padding: 14px 20px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.kvd-header .vs {
  background: var(--border);
  color: var(--text-dimmed);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 11px;
}

.kvd-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  border-bottom: 1px solid var(--border);
}

.kvd-row:last-child { border-bottom: none; }

.kvd-row div {
  padding: 14px 20px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.kvd-row .arrow {
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
  letter-spacing: 0;
}

.kvd-row .right { color: var(--text); }

/* ---- PARTNERSHIP WORKFLOW ---- */
.provider-workflow {
  padding: 90px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.workflow-header {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  margin-bottom: 56px;
  align-items: start;
}

.workflow-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  margin: 16px 0 16px;
}

.workflow-header h2 em {
  font-style: italic;
  color: var(--accent);
}

.workflow-header p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

.workflow-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  position: relative;
  transition: border-color 0.25s;
}

.workflow-step:hover { border-color: var(--accent); }

.ws-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 10px;
}

.ws-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.ws-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- BUILT FOR YOUR PRACTICE ---- */
.provider-built {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 70px 48px;
}

.provider-built-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.built-left {}

.built-left h3 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.built-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.built-badge {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
}

.built-badge h4 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}

.built-badge p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
}

.built-right {}

.built-right h3 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.built-outcomes { display: flex; flex-direction: column; gap: 12px; }

.built-outcome {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.built-outcome-check {
  color: var(--accent);
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1000px) {
  .workflow-header { grid-template-columns: 1fr; gap: 48px; }
  .workflow-steps { grid-template-columns: 1fr 1fr; }
  .provider-built-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .provider-hero { padding: calc(var(--nav-h) + 40px) 24px 0; }
  .provider-hero-inner { padding-bottom: 40px; }
  .provider-workflow, .provider-built { padding: 60px 24px; }
  .workflow-steps { grid-template-columns: 1fr; }
  .built-badges { grid-template-columns: 1fr; }
}

/* ---- PROVIDER SIX PILLARS — SPLIT LAYOUT + CIRCULAR RING ---- */
.provider-pillars {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 90px 48px 0;
  overflow: hidden;
}

.psp-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 60px;
}

.psp-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 20px;
}

.psp-title em { font-style: italic; color: var(--accent); }

.psp-rule { width: 40px; height: 2px; background: var(--gold); margin-bottom: 22px; }

.psp-body { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }

.psp-italic { font-family: var(--font-serif); font-style: italic; font-size: 16px; color: var(--text-muted); line-height: 1.7; }

/* Circular ring — absolute positioning */
.psp-right { display: flex; align-items: center; justify-content: center; }

.hex-ring {
  position: relative;
  width: 540px;
  height: 520px;
  flex-shrink: 0;
}

/* Faint orbit circle */
.hex-ring::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 370px; height: 370px;
  border-radius: 50%;
  border: 1px dashed rgba(0,180,200,0.18);
  pointer-events: none;
}

/* Each pillar node — absolutely positioned, centered via translate */
.hex-node {
  position: absolute;
  width: 140px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 16px;
  padding: 14px 10px;
  transition: box-shadow 0.2s, filter 0.2s;
  cursor: default;
}

.hex-node:hover { filter: brightness(1.15); }

/* Precise pixel positions for circular ring in 540x520 container */
.hex-01 { top: 10px;  left: 50%; transform: translateX(-50%); }   /* 12 — top center    */
.hex-02 { top: 70px;  right: 10px; }                               /* 2  — top right     */
.hex-03 { bottom: 70px; right: 10px; }                             /* 4  — bottom right  */
.hex-04 { bottom: 10px; left: 50%; transform: translateX(-50%); }  /* 6  — bottom center */
.hex-05 { bottom: 70px; left: 10px; }                              /* 8  — bottom left   */
.hex-06 { top: 70px;  left: 10px; }                                /* 10 — top left      */
.hex-center {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 130px;
}

.hex-node-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.hex-node-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.35;
}

/* Per-pillar glow colors */
.hex-01 { background: rgba(0,180,200,0.08);   border: 1.5px solid #00b4c8; box-shadow: 0 0 20px rgba(0,180,200,0.2); }
.hex-01 .hex-node-num, .hex-01 .hex-node-label { color: #00b4c8; }

.hex-02 { background: rgba(80,125,232,0.08);  border: 1.5px solid #507de8; box-shadow: 0 0 20px rgba(80,125,232,0.2); }
.hex-02 .hex-node-num, .hex-02 .hex-node-label { color: #507de8; }

.hex-03 { background: rgba(0,200,180,0.08);   border: 1.5px solid #00c8b4; box-shadow: 0 0 20px rgba(0,200,180,0.2); }
.hex-03 .hex-node-num, .hex-03 .hex-node-label { color: #00c8b4; }

.hex-04 { background: rgba(160,100,220,0.08); border: 1.5px solid #a064dc; box-shadow: 0 0 20px rgba(160,100,220,0.2); }
.hex-04 .hex-node-num, .hex-04 .hex-node-label { color: #a064dc; }

.hex-05 { background: rgba(220,140,40,0.08);  border: 1.5px solid #dc8c28; box-shadow: 0 0 20px rgba(220,140,40,0.2); }
.hex-05 .hex-node-num, .hex-05 .hex-node-label { color: #dc8c28; }

.hex-06 { background: rgba(201,168,76,0.08);  border: 1.5px solid #c9a84c; box-shadow: 0 0 20px rgba(201,168,76,0.2); }
.hex-06 .hex-node-num, .hex-06 .hex-node-label { color: #c9a84c; }

.hex-center {
  background: rgba(0,180,200,0.06);
  border: 1px solid rgba(0,180,200,0.3);
}

.hex-center-icon { margin-bottom: 10px; }

.hex-center-text {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.6;
}

/* Bottom bar */
.provider-pillars-bar {
  max-width: 1100px;
  margin: 0 auto 60px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.ppb-icon { flex-shrink: 0; }
.ppb-text { flex-grow: 1; }
.ppb-text p { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* Responsive */
@media (max-width: 1000px) {
  .psp-layout { grid-template-columns: 1fr; }
  .psp-right { min-height: 520px; }
}

@media (max-width: 600px) {
  .hex-ring { width: 360px; height: 360px; }
  .hex-node { width: 98px; height: 86px; }
  .hex-center { width: 108px; height: 98px; }
  .hex-node-num { font-size: 17px; }
  .hex-node-label { font-size: 8.5px; }
  .hex-ring::before { width: 250px; height: 250px; }
  .provider-pillars { padding: 60px 20px 0; }
  .provider-pillars-bar { flex-direction: column; align-items: flex-start; }
}

/* ---- PROVIDER CONSULTATION FORM SECTION ---- */
.provider-form-section {
  padding: 90px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.provider-form-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.provider-form-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 18px;
}

.provider-form-left p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 28px;
}

.provider-form-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.provider-form-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text-muted);
}

.perk-check {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}

/* Reuse existing .shs-caspio-placeholder styles */
.provider-form-right .shs-caspio-placeholder {
  background: var(--surface);
  border-color: var(--border);
  padding: 32px 28px;
}

@media (max-width: 900px) {
  .provider-form-inner { grid-template-columns: 1fr; gap: 48px; }
  .provider-form-section { padding: 60px 24px; }
}

/* ---- NAV ACTIVE STATE — scroll highlight ---- */
.shs-nav-links a.active {
  color: var(--accent) !important;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

/* ---- BACK TO TOP BUTTON ---- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,180,200,0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 20px rgba(0,180,200,0.45);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* ---- THE DIFFERENCE — REBUILT LAYOUT ---- */
.provider-difference {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px 0;
}

.diff-top {
  max-width: 1100px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: start;
}

.diff-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0;
}

.diff-left h2 em {
  font-style: italic;
  color: var(--accent);
}

/* KVD icon */
.kvd-icon {
  color: var(--accent);
  margin-right: 8px;
  font-size: 13px;
}

/* Right column icons slightly brighter */
.kvd-row .right .kvd-icon {
  color: #00d4e8;
}

/* Specialties strip */
.diff-specialties {
  max-width: 1100px;
  margin: 0 auto 0;
  padding-top: 8px;
}

.diff-specialties-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.diff-specialties-label span {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.diff-specialties-label p {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  margin: 0;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
}

.specialty-item {
  background: var(--bg-alt);
  padding: 28px 24px;
  text-align: center;
}

.specialty-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  font-size: 28px;
  color: var(--accent);
}

.specialty-item h5 {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.5;
}

.specialty-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Bottom bar */
.diff-bottom-bar {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 60px;
}

/* Responsive */
@media (max-width: 900px) {
  .diff-top { grid-template-columns: 1fr; gap: 40px; }
  .provider-difference { padding: 60px 24px 0; }
  .specialties-grid { grid-template-columns: 1fr; }
  .diff-bottom-bar { flex-direction: column; align-items: flex-start; }
}

/* ---- HOME ABOUT — REBUILT ---- */
.home-about {
  padding: 100px 48px;
  background: var(--bg);
}

.home-about-inner {
  max-width: 820px;
  margin: 0 auto;
}

.home-about-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 0;
}

.home-about-title em {
  font-style: italic;
  color: var(--accent);
}

.home-about-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

.home-about-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
  padding: 0;
  border: none;
}

.home-about-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

.home-about-body p strong {
  color: var(--text);
  font-weight: 600;
}

/* Credential rows */
.home-about-creds {
  margin: 48px 0 0;
  display: flex;
  flex-direction: column;
}

.home-cred-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.home-cred-item:last-child {
  border-bottom: 1px solid var(--border);
}

.home-cred-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-cred-text h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.home-cred-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Mission block */
.home-about-mission {
  margin-top: 40px;
  padding: 28px 32px;
  border-left: 2px solid var(--accent);
  background: var(--accent-dim);
}

.mission-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.home-about-mission p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .home-about { padding: 70px 24px; }
}

/* ---- PILLAR HEX MARKERS ---- */
.pillar-hex-markers {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}

/* ---- CONSUMER GET STARTED FORM SECTION ---- */
.consumer-form-section {
  padding: 90px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.consumer-form-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.consumer-form-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 18px;
}

.consumer-form-left p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 24px;
}

.consumer-form-right .shs-caspio-placeholder {
  background: var(--surface);
  border-color: var(--border);
  padding: 32px 28px;
}

@media (max-width: 900px) {
  .consumer-form-inner { grid-template-columns: 1fr; gap: 48px; }
  .consumer-form-section { padding: 60px 24px; }
}