/* ============================================================
   ZenErgo Solutions — Main Stylesheet
   Cal.com-inspired design system, ZenErgo brand palette
   ============================================================ */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */

:root {
  /* Colors — Brand */
  --c-primary:          #1c3a4b;
  --c-primary-active:   #122837;
  --c-brand:            #2e7d6c;
  --c-brand-light:      #dceee9;
  --c-brand-bright:     #4aaa92;
  --c-accent:           #3d6fa3;
  --c-warm:             #9e6b3a;

  /* Colors — Surface */
  --c-canvas:           #ffffff;
  --c-surface-soft:     #f0f4f8;
  --c-surface-card:     #edf2f7;
  --c-surface-strong:   #ccd6e0;
  --c-surface-dark:     #0f1c2e;
  --c-surface-dark-el:  #162337;

  /* Colors — Text */
  --c-ink:              #111827;
  --c-body:             #374151;
  --c-muted:            #6b7280;
  --c-muted-soft:       #9ca3af;
  --c-on-primary:       #ffffff;
  --c-on-dark:          #ffffff;
  --c-on-dark-soft:     #94a3b8;

  /* Colors — UI */
  --c-hairline:         #d1dde8;
  --c-hairline-soft:    #e6edf4;

  /* Typography */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body:    'Inter',  -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --sp-xxs:     4px;
  --sp-xs:      8px;
  --sp-sm:      12px;
  --sp-md:      16px;
  --sp-lg:      24px;
  --sp-xl:      32px;
  --sp-xxl:     48px;
  --sp-section: 96px;

  /* Border Radius */
  --r-sm:   6px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   16px;
  --r-pill: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 30px rgba(15,28,46,0.12);

  /* Layout */
  --max-w: 1200px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-body);
  background: var(--c-canvas);
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   LAYOUT CONTAINER
   ============================================================ */

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-xl);
}

/* ============================================================
   SHARED TYPOGRAPHY UTILITIES
   ============================================================ */

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-brand);
  margin-bottom: var(--sp-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--c-ink);
  margin-bottom: var(--sp-md);
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--c-muted);
  max-width: 560px;
  line-height: 1.75;
}

/* ============================================================
   SHARED COMPONENTS — BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary);
  color: var(--c-on-primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  padding: 12px 22px;
  height: 42px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s;
  white-space: nowrap;
}
.btn-primary:hover,
.btn-primary:focus-visible { background: var(--c-primary-active); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-canvas);
  color: var(--c-ink);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  padding: 12px 22px;
  height: 42px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-hairline);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.18s;
  white-space: nowrap;
}
.btn-secondary:hover,
.btn-secondary:focus-visible { border-color: var(--c-primary); }

.btn-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-brand);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  padding: 12px 22px;
  height: 42px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s;
  white-space: nowrap;
}
.btn-teal:hover,
.btn-teal:focus-visible { background: var(--c-brand-bright); }

.btn-warm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-warm);
  color: var(--c-on-primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  padding: 12px 22px;
  height: 42px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s;
  white-space: nowrap;
}
.btn-warm:hover,
.btn-warm:focus-visible { background: #7d5430; }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  padding: 12px 22px;
  height: 42px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s;
  white-space: nowrap;
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

/* ============================================================
   SHARED COMPONENTS — TAGS & BADGES
   ============================================================ */

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: var(--r-pill);
  background: var(--c-surface-card);
  color: var(--c-ink);
  border: 1px solid var(--c-hairline);
}

.check {
  color: var(--c-brand);
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   TOP NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-surface-dark);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-xl);
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.nav-logo img {
  height: 72px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.18s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-cta-link {
  background: var(--c-brand) !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--r-md);
  font-weight: 600 !important;
  transition: background 0.18s !important;
}
.nav-cta-link:hover { background: var(--c-brand-bright) !important; color: #fff !important; }

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.28s, opacity 0.28s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--c-surface-dark);
  align-items: center;
  justify-content: center;
  gap: var(--sp-xl);
  z-index: 150;
}
.nav-links.mobile-open a { font-size: 1.25rem; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--c-surface-dark);
  padding: 64px var(--sp-xl);
}

.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-xxl);
  align-items: start;
  padding-bottom: var(--sp-xxl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-md);
}

.footer-brand .footer-logo img {
  height: 76px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  white-space: nowrap;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--c-on-dark-soft);
  line-height: 1.65;
  max-width: 240px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-md);
}

.footer-col ul { list-style: none; }
.footer-col li + li { margin-top: var(--sp-xs); }
.footer-col a,
.footer-col span {
  font-size: 0.875rem;
  color: var(--c-on-dark-soft);
  display: inline-block;
  line-height: 1.5;
  transition: color 0.18s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-top: var(--sp-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-md);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   PAGE HERO  (about + contact + testimonials)
   ============================================================ */

.page-hero {
  background:
    linear-gradient(rgba(15, 28, 46, 0.72), rgba(15, 28, 46, 0.72)),
    url('Desktop.jpg') center/cover no-repeat;
  padding: var(--sp-xxl) 0;
}

.page-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-brand-bright);
  margin-bottom: var(--sp-sm);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 600px;
}

.page-hero-sub {
  margin-top: var(--sp-md);
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  line-height: 1.75;
}

/* ============================================================
   INDEX — HERO BAND
   ============================================================ */

.hero-band {
  background:
    linear-gradient(rgba(15, 28, 46, 0.72), rgba(15, 28, 46, 0.72)),
    url('Desktop.jpg') center/cover no-repeat;
  padding: var(--sp-section) 0;
  border-bottom: 1px solid var(--c-hairline-soft);
}

.hero-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--sp-xxl);
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-brand-bright);
  margin-bottom: var(--sp-md);
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-brand-bright);
  flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: 3.125rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: var(--sp-lg);
  max-width: 600px;
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--c-on-dark-soft);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: var(--sp-xl);
}

.hero-actions {
  display: flex;
  gap: var(--sp-sm);
  align-items: center;
  flex-wrap: wrap;
}

/* Hero credential card */
.hero-cred-card {
  background: var(--c-surface-card);
  border: 1px solid var(--c-hairline);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-md);
}

.hero-cred-name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: var(--sp-xxs);
}

.hero-cred-role {
  font-size: 0.8125rem;
  color: var(--c-muted);
  margin-bottom: var(--sp-lg);
}

.cred-row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  padding: 10px 0;
  border-top: 1px solid var(--c-hairline-soft);
  font-size: 0.875rem;
  color: var(--c-body);
  line-height: 1.45;
}

.cred-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-brand);
  flex-shrink: 0;
  margin-top: 4px;
}

/* ============================================================
   INDEX — TRUST BAR
   ============================================================ */

.trust-bar {
  background: var(--c-surface-dark);
  padding: var(--sp-md) 0;
}

.trust-bar-inner {
  display: flex;
  gap: var(--sp-xxl);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
}

.trust-item strong { color: #fff; font-weight: 600; }

.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-brand-bright);
  flex-shrink: 0;
}

/* ============================================================
   INDEX — SERVICES
   ============================================================ */

.services-section {
  background: var(--c-canvas);
  padding: var(--sp-section) 0;
}

.services-header { margin-bottom: var(--sp-xxl); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
}

.service-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--c-hairline);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.22s, transform 0.22s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.service-card-head { padding: var(--sp-xl); }
.service-card-head.head-light { background: var(--c-surface-card); }
.service-card-head.head-dark  { background: var(--c-primary); }

.service-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-md);
}
.badge-preventive { background: var(--c-brand-light); color: var(--c-brand); }
.badge-clinical   { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: var(--sp-sm);
}
.head-light .service-card-title { color: var(--c-ink); }
.head-dark  .service-card-title { color: #fff; }

.service-card-desc { font-size: 0.9rem; line-height: 1.65; }
.head-light .service-card-desc { color: var(--c-muted); }
.head-dark  .service-card-desc { color: rgba(255,255,255,0.65); }

.service-card-body { padding: var(--sp-xl); background: var(--c-canvas); }

.service-includes-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: var(--sp-md);
}

.service-features { list-style: none; }
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  padding: 8px 0;
  border-bottom: 1px solid var(--c-hairline-soft);
  font-size: 0.875rem;
  color: var(--c-body);
  line-height: 1.5;
}
.service-features li:last-child { border-bottom: none; }

.service-card-foot {
  padding: var(--sp-md) var(--sp-xl);
  background: var(--c-surface-soft);
  border-top: 1px solid var(--c-hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
}

.service-price-amount {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-ink);
}

.service-price-note {
  font-size: 0.75rem;
  color: var(--c-muted);
  margin-top: 2px;
}

/* ============================================================
   INDEX — ABOUT STRIP
   ============================================================ */

.about-strip {
  background: var(--c-surface-soft);
  padding: var(--sp-section) 0;
}

.about-strip-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-section);
  align-items: center;
}

.about-stat-card {
  background: var(--c-surface-dark);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
}

.about-stat { margin-bottom: var(--sp-xl); }

.about-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--c-brand-bright);
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-stat-label {
  font-size: 0.8125rem;
  color: var(--c-on-dark-soft);
  margin-top: var(--sp-xs);
  line-height: 1.5;
}

.about-blockquote {
  border-left: 3px solid var(--c-brand-bright);
  padding-left: var(--sp-md);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  font-weight: 400;
}

.about-content .section-eyebrow { margin-bottom: var(--sp-sm); }

.about-content-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin-bottom: var(--sp-lg);
}

.about-content p {
  font-size: 0.9375rem;
  color: var(--c-body);
  line-height: 1.8;
  margin-bottom: var(--sp-md);
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xs);
  margin-top: var(--sp-lg);
}

/* ============================================================
   INDEX — PROCESS
   ============================================================ */

.process-section {
  background: var(--c-canvas);
  padding: var(--sp-section) 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-md);
  margin-top: var(--sp-xxl);
}

.process-step {
  padding: var(--sp-md) var(--sp-sm);
  border-left: 2px solid var(--c-hairline-soft);
}

.step-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--c-hairline);
  line-height: 1;
  margin-bottom: var(--sp-md);
  letter-spacing: -0.02em;
}

.process-step h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: var(--sp-xs);
}

.process-step p {
  font-size: 0.8125rem;
  color: var(--c-muted);
  line-height: 1.65;
}

/* ============================================================
   INDEX — CTA BAND
   ============================================================ */

.cta-band {
  background: var(--c-surface-soft);
  padding: var(--sp-section) 0;
}

.cta-band-inner { text-align: center; }

.cta-band-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--c-ink);
  margin-bottom: var(--sp-md);
  margin-top: var(--sp-sm);
}

.cta-band-sub {
  font-size: 1rem;
  color: var(--c-muted);
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: var(--sp-xl);
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  gap: var(--sp-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   ABOUT — PROFILE SECTION
   ============================================================ */

.profile-section {
  background: var(--c-canvas);
  padding: var(--sp-section) 0;
}

.profile-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-section);
  align-items: start;
}

.profile-photo {
  width: 100%;
  border-radius: var(--r-lg);
  display: block;
  margin-bottom: var(--sp-lg);
}

.sidebar-credentials { list-style: none; }
.sidebar-credentials li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  padding: 10px 0;
  border-bottom: 1px solid var(--c-hairline-soft);
  font-size: 0.875rem;
  color: var(--c-body);
  line-height: 1.45;
}
.sidebar-credentials li:last-child { border-bottom: none; }

.cred-icon {
  color: var(--c-brand);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.75rem;
}

.bio h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin-bottom: var(--sp-lg);
  line-height: 1.2;
}

.bio p {
  font-size: 0.9375rem;
  color: var(--c-body);
  line-height: 1.85;
  margin-bottom: var(--sp-md);
}

.bio h3 {
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--c-ink);
  margin: var(--sp-xl) 0 var(--sp-md);
}

.bio-pull {
  border-left: 3px solid var(--c-brand);
  padding: var(--sp-md) var(--sp-lg);
  margin: var(--sp-xl) 0;
  background: var(--c-brand-light);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

.bio-pull p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--c-primary);
  line-height: 1.65;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ============================================================
   ABOUT — PHILOSOPHY SECTION
   ============================================================ */

.philosophy-section {
  background: var(--c-surface-dark);
  padding: var(--sp-section) 0;
}

.philosophy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-section);
  align-items: start;
}

.philosophy-section .section-eyebrow { color: var(--c-brand-bright); }
.philosophy-section .section-title   { color: #fff; }
.philosophy-section .section-sub     { color: rgba(255,255,255,0.6); max-width: 460px; }

.philosophy-list { list-style: none; margin-top: var(--sp-xl); }
.philosophy-list li {
  display: flex;
  gap: var(--sp-md);
  padding: var(--sp-lg) 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.philosophy-list li:last-child { border-bottom: none; }

.phil-num {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--c-brand-bright);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
  letter-spacing: -0.02em;
}

.phil-text h5 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.phil-text p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.stat-cluster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

.stat-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
}

.stat-box .number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--c-brand-bright);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-box .label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-top: var(--sp-xs);
  line-height: 1.5;
}

/* ============================================================
   ABOUT — CTA SECTION
   ============================================================ */

.about-cta-section {
  background: var(--c-surface-soft);
  padding: var(--sp-section) 0;
  text-align: center;
}

.about-cta-inner .section-sub {
  margin-inline: auto;
  margin-bottom: var(--sp-xl);
}

/* ============================================================
   CONTACT — CONTACT SECTION
   ============================================================ */

.contact-section {
  background: var(--c-canvas);
  padding: var(--sp-section) 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: var(--sp-section);
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin-bottom: var(--sp-md);
  line-height: 1.25;
}

.contact-info > p {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-xl);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  padding: var(--sp-md) 0;
  border-bottom: 1px solid var(--c-hairline-soft);
}
.contact-detail:last-of-type { border-bottom: none; }

.detail-icon {
  width: 36px;
  height: 36px;
  background: var(--c-brand-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.detail-text .detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 3px;
}

.detail-text .detail-value { font-size: 0.9rem; color: var(--c-ink); }
.detail-text .detail-value a { color: var(--c-accent); }
.detail-text .detail-value a:hover { text-decoration: underline; }

.assessment-picker {
  background: var(--c-surface-card);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  margin-top: var(--sp-xl);
  border: 1px solid var(--c-hairline);
}

.picker-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: var(--sp-md);
}

.picker-option {
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--c-hairline-soft);
}
.picker-option:last-child { border-bottom: none; }

.picker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-brand);
  flex-shrink: 0;
  margin-top: 5px;
}

.picker-option-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-ink);
}

.picker-option-text span {
  font-size: 0.8rem;
  color: var(--c-muted);
}

/* Contact form */
.form-header { margin-bottom: var(--sp-xl); }

.form-header h2 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin-bottom: var(--sp-xs);
}

.form-header p { font-size: 0.875rem; color: var(--c-muted); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-body);
}

label .req { color: var(--c-brand); margin-left: 2px; }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--c-hairline);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--c-ink);
  background: var(--c-canvas);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  height: 42px;
}

textarea { height: auto; min-height: 130px; resize: vertical; line-height: 1.6; }
input::placeholder, textarea::placeholder { color: var(--c-muted-soft); }

input:focus, select:focus, textarea:focus {
  border-color: var(--c-brand);
  box-shadow: 0 0 0 3px rgba(46,125,108,0.12);
}

select { cursor: pointer; }

.radio-group { display: flex; flex-direction: column; gap: var(--sp-xs); }

.radio-option {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  padding: var(--sp-sm) var(--sp-md);
  border: 1px solid var(--c-hairline);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.radio-option:hover { border-color: var(--c-brand); background: var(--c-brand-light); }
.radio-option input[type="radio"] {
  width: auto;
  height: auto;
  margin-top: 3px;
  accent-color: var(--c-brand);
  flex-shrink: 0;
  border: none;
  box-shadow: none;
}
.radio-option input[type="radio"]:focus { box-shadow: none; }

.radio-label strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--c-ink); }
.radio-label span   { font-size: 0.8rem; color: var(--c-muted); }

.form-submit {
  margin-top: var(--sp-xl);
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

.submit-note { font-size: 0.8rem; color: var(--c-muted); }

.form-success {
  display: none;
  background: var(--c-brand-light);
  border: 1px solid var(--c-brand);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  text-align: center;
  margin-top: var(--sp-xl);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--c-primary);
  margin-bottom: var(--sp-xs);
}
.form-success p { font-size: 0.9rem; color: var(--c-brand); }

/* Service reminder */
.service-reminder {
  background: var(--c-surface-soft);
  padding: var(--sp-xxl) 0;
}

.service-reminder .section-title { font-size: 1.875rem; }

.reminder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}

.reminder-card {
  background: var(--c-canvas);
  border: 1px solid var(--c-hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
}

.reminder-badge {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}
.badge-level1 { background: var(--c-brand-light);            color: var(--c-brand);  }
.badge-level2 { background: rgba(61,111,163,0.12); color: var(--c-accent); }

.reminder-card h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 4px;
}

.reminder-card p {
  font-size: 0.8125rem;
  color: var(--c-muted);
  line-height: 1.65;
}

/* ============================================================
   TESTIMONIALS — PLACEHOLDER
   ============================================================ */

.testimonials-placeholder {
  background: var(--c-canvas);
  padding: var(--sp-section) 0;
  text-align: center;
}

.testimonials-placeholder-inner {
  max-width: 560px;
  margin-inline: auto;
}

.placeholder-note {
  margin-top: var(--sp-lg);
  font-size: 0.9375rem;
  color: var(--c-muted);
  line-height: 1.75;
}

/* ============================================================
   WHY IT MATTERS — SHARED COMPONENTS
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
  background: var(--c-surface-dark);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.breadcrumb-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-xl);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

.breadcrumb-inner a {
  color: var(--c-brand-bright);
  text-decoration: none;
}
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-inner .bc-sep { margin: 0 var(--sp-xs); }

/* Sector quick-nav strip */
.sector-quicknav {
  background: var(--c-canvas);
  padding: var(--sp-xl) 0 var(--sp-md);
  border-bottom: 1px solid var(--c-hairline-soft);
}

.sector-quicknav-buttons {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-top: var(--sp-sm);
}

/* Stat strip (3-column) */
.stat-strip {
  background: var(--c-surface-dark);
  padding: var(--sp-xxl) 0;
}

.stat-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.stat-strip-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  text-align: center;
}

.stat-strip-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--c-brand-bright);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-xs);
}

.stat-strip-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: var(--sp-xxs);
}

.stat-strip-source {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.4;
}

/* Callout panel */
.callout-panel {
  background: var(--c-brand-light);
  border: 1px solid var(--c-brand);
  border-left: 4px solid var(--c-brand);
  border-radius: var(--r-lg);
  padding: var(--sp-xl) var(--sp-xxl);
  margin: var(--sp-xxl) 0;
}

.callout-panel-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-primary);
  margin-bottom: var(--sp-md);
  letter-spacing: -0.015em;
}

.callout-panel p {
  font-size: 0.9375rem;
  color: var(--c-body);
  line-height: 1.8;
}

/* Content section — white bg */
.content-section {
  background: var(--c-canvas);
  padding: var(--sp-section) 0;
}

/* Content section — soft bg */
.content-section-soft {
  background: var(--c-surface-soft);
  padding: var(--sp-section) 0;
}

/* Content section — dark bg */
.content-section-dark {
  background: var(--c-surface-dark);
  padding: var(--sp-section) 0;
}

/* Prose bullet lists */
.prose-list {
  list-style: none;
  margin-top: var(--sp-lg);
}

.prose-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  padding: 10px 0;
  border-bottom: 1px solid var(--c-hairline-soft);
  font-size: 0.9375rem;
  color: var(--c-body);
  line-height: 1.65;
}

.prose-list li:last-child { border-bottom: none; }

.prose-list .pl-dot {
  color: var(--c-brand);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.prose-list-dark {
  list-style: none;
  margin-top: var(--sp-lg);
}

.prose-list-dark li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

.prose-list-dark li:last-child { border-bottom: none; }

.prose-list-dark .pl-dot {
  color: var(--c-brand-bright);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 4px;
}

/* Intro paragraph used in content sections */
.section-intro {
  font-size: 1rem;
  color: var(--c-body);
  line-height: 1.8;
  max-width: 780px;
  margin-bottom: var(--sp-lg);
}

/* Sector cards grid (hub page) */
.sector-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  margin-top: var(--sp-xxl);
}

.sector-card {
  background: var(--c-canvas);
  border: 1px solid var(--c-hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.22s;
}

.sector-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.sector-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: var(--sp-sm);
  letter-spacing: -0.015em;
}

.sector-card-desc {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--sp-lg);
}

.sector-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-brand);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.sector-card-link:hover { color: var(--c-primary); text-decoration: underline; }

/* Cost breakdown card */
.cost-breakdown {
  background: var(--c-surface-card);
  border: 1px solid var(--c-hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  margin-top: var(--sp-lg);
}

.cost-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-hairline-soft);
  font-size: 0.9rem;
  color: var(--c-body);
  gap: var(--sp-md);
}

.cost-line:last-child { border-bottom: none; }

.cost-line-label { flex: 1; line-height: 1.5; }
.cost-line-label.indent { padding-left: var(--sp-lg); color: var(--c-muted); font-size: 0.85rem; }

.cost-line-value {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--c-ink);
  white-space: nowrap;
}

.cost-line.total {
  background: var(--c-primary);
  border-radius: var(--r-md);
  padding: var(--sp-md) var(--sp-md);
  margin-top: var(--sp-sm);
  border: none;
}

.cost-line.total .cost-line-label { color: rgba(255,255,255,0.85); font-weight: 600; }
.cost-line.total .cost-line-value { color: #fff; }

.cost-note {
  font-size: 0.8rem;
  color: var(--c-muted);
  line-height: 1.65;
  margin-top: var(--sp-md);
  font-style: italic;
}

/* Assessment steps (sector pages) */
.assessment-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}

.assessment-step {
  background: var(--c-canvas);
  border: 1px solid var(--c-hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
}

.assessment-step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-brand-bright);
  line-height: 1;
  margin-bottom: var(--sp-sm);
}

.assessment-step h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: var(--sp-xs);
}

.assessment-step p {
  font-size: 0.8125rem;
  color: var(--c-muted);
  line-height: 1.65;
}

/* Assessor block */
.assessor-block {
  background: var(--c-surface-card);
  border: 1px solid var(--c-hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-xl) var(--sp-xxl);
  margin-top: var(--sp-lg);
}

.assessor-block p {
  font-size: 0.9375rem;
  color: var(--c-body);
  line-height: 1.85;
  margin-bottom: var(--sp-md);
}

.assessor-block p:last-child { margin-bottom: 0; }

.assessor-block a {
  color: var(--c-brand);
  font-weight: 600;
}

.assessor-block a:hover { text-decoration: underline; }

/* Billable callout (law page) */
.billable-callout {
  background: var(--c-primary);
  border-radius: var(--r-lg);
  padding: var(--sp-xxl);
  color: #fff;
  margin: var(--sp-xxl) 0;
}

.billable-callout-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--c-brand-bright);
  margin-bottom: var(--sp-md);
  letter-spacing: -0.015em;
}

.billable-callout p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: var(--sp-md);
}

.billable-calc {
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  padding: var(--sp-md) var(--sp-lg);
  margin-top: var(--sp-md);
}

.billable-calc-row {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.billable-calc-row:last-child { border-bottom: none; }
.billable-calc-row strong { color: #fff; }

/* Dual panel (insurance page) */
.dual-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  margin-top: var(--sp-xl);
}

.dual-panel-card {
  background: var(--c-canvas);
  border: 1px solid var(--c-hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
}

.dual-panel-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-brand);
  margin-bottom: var(--sp-sm);
}

.dual-panel-card h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: var(--sp-md);
  letter-spacing: -0.015em;
}

.dual-panel-card p {
  font-size: 0.9rem;
  color: var(--c-body);
  line-height: 1.75;
}

/* ============================================================
   RESPONSIVE — MOBILE  (< 768px)
   ============================================================ */

@media (max-width: 767px) {

  /* Nav */
  .nav-inner  { padding-inline: var(--sp-md); }
  .nav-links  { display: none; }
  .nav-hamburger { display: flex; }

  /* Footer */
  .site-footer { padding: var(--sp-xxl) var(--sp-md); }
  .footer-inner { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Section containers padding */
  .container { padding-inline: var(--sp-md); }

  /* Section vertical rhythm */
  .hero-band,
  .services-section,
  .about-strip,
  .process-section,
  .cta-band,
  .profile-section,
  .philosophy-section,
  .about-cta-section,
  .contact-section,
  .testimonials-placeholder {
    padding-top: var(--sp-xxl);
    padding-bottom: var(--sp-xxl);
  }
  .page-hero { padding: var(--sp-xl) 0; }
  .service-reminder { padding: var(--sp-xl) 0; }

  /* Hero */
  .hero-layout { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .hero-h1 { font-size: 2.25rem; }
  .hero-sub { font-size: 0.9375rem; }
  .section-title { font-size: 1.875rem; }

  /* Trust bar */
  .trust-bar-inner {
    gap: var(--sp-sm);
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    padding-inline: var(--sp-md);
  }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* About strip */
  .about-strip-layout { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .about-content-title { font-size: 1.75rem; }

  /* Process */
  .process-grid { grid-template-columns: 1fr 1fr; }

  /* CTA */
  .cta-band-title { font-size: 1.875rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn-primary,
  .cta-actions .btn-secondary { width: 100%; max-width: 300px; }

  /* Page hero */
  .page-hero h1 { font-size: 2rem; }

  /* Profile */
  .profile-layout { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .profile-sidebar { max-width: 220px; }

  /* Philosophy */
  .philosophy-layout { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .stat-cluster { grid-template-columns: 1fr 1fr; }
  .stat-box .number { font-size: 1.875rem; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .reminder-grid { grid-template-columns: 1fr; }

  /* Why It Matters */
  .stat-strip-grid { grid-template-columns: 1fr; }
  .sector-cards-grid { grid-template-columns: 1fr; }
  .assessment-steps { grid-template-columns: 1fr; }
  .dual-panel { grid-template-columns: 1fr; }
  .callout-panel { padding: var(--sp-lg); }
  .billable-callout { padding: var(--sp-lg); }
  .assessor-block { padding: var(--sp-lg); }
  .breadcrumb-inner { padding-inline: var(--sp-md); }
}

/* ============================================================
   RESPONSIVE — TABLET  (768px – 1023px)
   ============================================================ */

@media (min-width: 768px) and (max-width: 1023px) {

  .nav-inner { padding-inline: var(--sp-lg); }
  .nav-links { gap: var(--sp-md); }
  .nav-links a { font-size: 0.8125rem; }

  .hero-band,
  .services-section,
  .about-strip,
  .process-section,
  .cta-band,
  .profile-section,
  .philosophy-section,
  .about-cta-section,
  .contact-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-layout { gap: var(--sp-xl); }
  .hero-h1 { font-size: 2.5rem; }

  .about-strip-layout { gap: var(--sp-xl); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }

  .profile-layout { grid-template-columns: 240px 1fr; gap: var(--sp-xl); }
  .philosophy-layout { gap: var(--sp-xl); }

  .contact-layout { gap: var(--sp-xl); }

  .site-footer { padding: var(--sp-xxl) var(--sp-lg); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }

  /* Why It Matters */
  .sector-cards-grid { grid-template-columns: 1fr; }
}
