:root {
  /* Brand primitives */
  --brand-ink: #103047;
  --brand-ink-soft: #24475c;
  --brand-muted: #637685;
  --brand-paper: #f6fbfd;
  --brand-surface: #ffffff;
  --brand-surface-tint: #eef9fb;
  --brand-surface-soft: #f4fbfd;
  --brand-surface-muted: #edf4f7;
  --brand-line: #d9e8ef;
  --brand-cyan: #18b8c8;
  --brand-cyan-dark: #07869c;
  --brand-blue: #0b5f95;
  --brand-blue-mid: #0a6d98;
  --brand-navy: #072c48;
  --brand-success: #43c98d;
  --brand-footer: #061f35;
  --brand-on-dark-soft: #b8f3f7;
  --brand-cyan-wash: #e8fafd;

  /* Semantic color roles */
  --color-text-primary: var(--brand-ink);
  --color-text-secondary: var(--brand-muted);
  --color-text-strong: var(--brand-navy);
  --color-text-accent: var(--brand-cyan-dark);
  --color-text-link: var(--brand-blue);
  --color-text-link-hover: var(--brand-cyan-dark);
  --color-text-inverse: var(--brand-surface);
  --color-text-inverse-muted: rgba(255, 255, 255, 0.78);
  --color-text-inverse-soft: rgba(255, 255, 255, 0.9);

  --color-page-bg: var(--brand-paper);
  --color-surface: var(--brand-surface);
  --color-surface-raised: var(--brand-surface);
  --color-surface-soft: var(--brand-surface-soft);
  --color-surface-tint: var(--brand-surface-tint);
  --color-surface-muted: var(--brand-surface-muted);
  --color-surface-overlay: rgba(255, 255, 255, 0.96);
  --color-border: var(--brand-line);
  --color-border-strong: var(--brand-cyan);

  --color-action-bg: var(--brand-blue);
  --color-action-bg-hover: var(--brand-cyan-dark);
  --color-action-bg-active: var(--brand-navy);
  --color-action-text: var(--brand-surface);
  --color-action-secondary-bg: var(--brand-surface);
  --color-action-secondary-bg-hover: var(--brand-surface-tint);
  --color-action-secondary-text: var(--brand-blue);
  --color-action-secondary-text-hover: var(--brand-cyan-dark);

  --color-nav-text: var(--brand-ink-soft);
  --color-nav-hover: var(--brand-cyan-dark);
  --color-dropdown-hover-bg: var(--brand-surface-tint);
  --color-state-selected-bg: var(--brand-cyan-wash);
  --color-state-selected-border: var(--brand-cyan);
  --color-state-selected-text: var(--brand-ink);
  --color-state-active-bg: var(--brand-cyan-dark);
  --color-state-active-text: var(--brand-surface);
  --color-state-disabled-opacity: 0.45;
  --color-focus-ring: rgba(24, 184, 200, 0.42);
  --color-accent-wash: rgba(24, 184, 200, 0.16);
  --color-footer-muted: rgba(255, 255, 255, 0.72);

  /* Semantic gradients and effects */
  --gradient-page: radial-gradient(circle at 85% 8%, rgba(24, 184, 200, 0.2), transparent 30%),
    linear-gradient(180deg, var(--color-surface) 0%, var(--color-page-bg) 52%, var(--color-surface) 100%);
  --gradient-page-hero: linear-gradient(135deg, var(--color-surface), var(--color-surface-tint));
  --gradient-action: linear-gradient(135deg, var(--brand-cyan), var(--brand-blue));
  --gradient-action-hover: linear-gradient(135deg, var(--brand-cyan-dark), var(--brand-navy));
  --gradient-conversion: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan-dark));
  --gradient-funnel: radial-gradient(circle at 12% 15%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(135deg, var(--brand-navy), var(--brand-blue-mid) 58%, var(--brand-cyan));
  --gradient-card: linear-gradient(180deg, var(--color-surface), var(--color-surface-tint));
  --marker-success: radial-gradient(circle, var(--brand-success) 0 5px, transparent 6px);

  /* Semantic typography and spacing */
  --font-body: Arial, Helvetica, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
  --space-page-x: clamp(18px, 5vw, 76px);
  --space-section-y: clamp(66px, 9vw, 118px);
  --space-hero-top: clamp(68px, 9vw, 118px);
  --space-hero-bottom: clamp(42px, 7vw, 88px);
  --space-card: clamp(22px, 3vw, 28px);
  --space-card-lg: clamp(26px, 4vw, 34px);
  --space-control-x: 22px;
  --radius-control: 999px;
  --radius-card: 8px;
  --radius-panel: 12px;
  --shadow-raised: 0 22px 60px rgba(7, 44, 72, 0.14);
  --shadow-soft: 0 14px 36px rgba(7, 44, 72, 0.08);
  --shadow-soft-subtle: 0 14px 36px rgba(7, 44, 72, 0.07);
  --shadow-header: 0 10px 32px rgba(7, 44, 72, 0.08);
  --shadow-action: 0 14px 30px rgba(8, 134, 156, 0.28);
  --shadow-action-hover: 0 16px 34px rgba(7, 44, 72, 0.24);
  --duration-fast: 150ms;
  --duration-normal: 220ms;
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
  --z-header: 20;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text-primary);
  background: var(--gradient-page);
  font-family: var(--font-body);
  line-height: 1.6;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 9px var(--space-page-x);
  color: var(--color-text-inverse-soft);
  background: var(--color-text-strong);
  font-size: 0.88rem;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto auto;
  gap: 26px;
  align-items: center;
  padding: 18px var(--space-page-x);
  background: var(--color-surface-overlay);
  box-shadow: var(--shadow-header);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: min(410px, 100%);
}

.brand img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
  line-height: 1.05;
}

.brand-text strong {
  color: var(--color-text-strong);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.55rem);
  font-weight: 800;
  white-space: nowrap;
}

.brand-text small {
  color: var(--color-text-accent);
  font-size: clamp(0.8rem, 1vw, 1rem);
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--color-nav-text);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-item {
  position: relative;
  padding: 14px 0;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-item > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  display: grid;
  min-width: 230px;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  box-shadow: var(--shadow-raised);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--duration-normal) var(--ease-standard), transform var(--duration-normal) var(--ease-standard), visibility var(--duration-normal) var(--ease-standard);
}

.dropdown.mega {
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  min-width: 460px;
}

.dropdown a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--color-text-primary);
  white-space: nowrap;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  color: var(--color-text-link-hover);
  background: var(--color-dropdown-hover-bg);
}

.dropdown a:active {
  color: var(--color-action-text);
  background: var(--color-action-bg-active);
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-nav-hover);
}

.site-nav a:active {
  color: var(--color-action-bg-active);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font: 800 0.96rem var(--font-body);
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-standard), background var(--duration-fast) var(--ease-standard), border-color var(--duration-fast) var(--ease-standard), box-shadow var(--duration-normal) var(--ease-standard), transform var(--duration-normal) var(--ease-standard);
}

.header-cta,
.button.primary {
  color: var(--color-action-text);
  background: var(--gradient-action);
  box-shadow: var(--shadow-action);
}

.header-cta:hover,
.header-cta:focus-visible,
.button.primary:hover,
.button.primary:focus-visible {
  color: var(--color-action-text);
  background: var(--gradient-action-hover);
  box-shadow: var(--shadow-action-hover);
  transform: translateY(-1px);
}

.header-cta:active,
.button.primary:active {
  background: var(--color-action-bg-active);
  box-shadow: none;
  transform: translateY(0);
}

.button.secondary,
.button.ghost {
  color: var(--color-action-secondary-text);
  background: var(--color-action-secondary-bg);
  border: 1px solid var(--color-border);
}

.button.secondary:hover,
.button.secondary:focus-visible,
.button.ghost:hover,
.button.ghost:focus-visible,
.button.light:hover,
.button.light:focus-visible {
  color: var(--color-action-secondary-text-hover);
  background: var(--color-action-secondary-bg-hover);
  border-color: var(--color-border-strong);
}

.button.secondary:active,
.button.ghost:active,
.button.light:active {
  color: var(--color-action-text);
  background: var(--color-action-bg-active);
  border-color: var(--color-action-bg-active);
}

.button.light {
  color: var(--color-action-secondary-text);
  background: var(--color-action-secondary-bg);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: var(--color-state-disabled-opacity);
  transform: none;
  box-shadow: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  padding: clamp(68px, 9vw, 118px) var(--space-page-x) clamp(42px, 7vw, 88px);
  overflow: hidden;
}

.page-hero {
  padding: clamp(68px, 9vw, 118px) var(--space-page-x) clamp(44px, 6vw, 76px);
  background: var(--gradient-page-hero);
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero p {
  max-width: 760px;
  color: var(--color-text-secondary);
  font-size: 1.15rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.detail-grid article {
  padding: var(--space-card-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.detail-grid p {
  color: var(--color-text-secondary);
}

.location-grid .map-card {
  grid-column: 1 / -1;
}

.map-embed {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-panel);
  background: var(--color-surface-tint);
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.service-deep-dive {
  background: var(--color-surface-soft);
}

.service-deep-dive .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  min-height: 170px;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-panel);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft-subtle);
}

.feature-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text-strong);
  font-size: 1.08rem;
}

.feature-list span {
  color: var(--color-text-secondary);
}

.outcome-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 22px;
  align-items: stretch;
}

.outcome-panel > div,
.outcome-panel aside {
  padding: 30px;
  border-radius: var(--radius-panel);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.outcome-panel p,
.outcome-panel li {
  color: var(--color-text-secondary);
}

.outcome-panel ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin-bottom: 0;
}

.service-directory article {
  display: grid;
  align-content: start;
  gap: 10px;
}

.service-directory a {
  justify-self: start;
  color: var(--color-text-link);
  font-weight: 900;
}

.standalone-funnel {
  min-height: calc(100vh - 120px);
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  right: -150px;
  top: 70px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: var(--color-accent-wash);
  z-index: -1;
}

.hero-content {
  max-width: 760px;
  min-width: 0;
}

.funnel-copy,
.funnel {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-text-accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--color-text-strong);
  font-size: clamp(2.55rem, 4.8vw, 4.8rem);
  line-height: 0.98;
}


h2 {
  margin-bottom: 18px;
  color: var(--color-text-strong);
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  color: var(--color-text-strong);
  font-size: 1.28rem;
}

.hero-copy {
  max-width: 680px;
  color: var(--color-text-secondary);
  font-size: 1.2rem;
}

.hero-copy a {
  color: var(--color-text-link);
  font-weight: 800;
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

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

.hero-note {
  margin: 18px 0 0;
  color: var(--color-text-secondary);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 0;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px 24px 24px 72px;
  box-shadow: var(--shadow-raised);
}

.review-card {
  position: absolute;
  left: -28px;
  top: 38px;
  width: min(260px, 72%);
  padding: 22px;
  border-radius: var(--radius-panel);
  background: var(--color-surface);
  box-shadow: var(--shadow-raised);
}

.review-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text-accent);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-card strong {
  color: var(--color-text-strong);
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-stats {
  position: absolute;
  right: -20px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(460px, 92%);
  margin: 0;
  padding: 12px;
  border-radius: var(--radius-panel);
  background: var(--color-surface-overlay);
  box-shadow: var(--shadow-raised);
}

.hero-stats div {
  padding: 12px;
  border-radius: var(--radius-card);
  background: var(--color-surface-tint);
  text-align: center;
}

.hero-stats dt {
  color: var(--color-text-link);
  font-size: 1.45rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--color-text-secondary);
  font-size: 0.78rem;
  font-weight: 800;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 24px var(--space-page-x);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust-strip span {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--color-text-link);
  background: var(--color-surface-tint);
  font-weight: 800;
  font-size: 0.92rem;
}

.proof-strip {
  background: var(--color-surface-tint);
}

.leadership {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  background: var(--color-surface);
}

.leader-photo {
  max-width: 420px;
}

.leader-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-panel);
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow-raised);
}

.leader-copy {
  max-width: 920px;
}

.leader-copy p {
  color: var(--color-text-secondary);
}

.leader-title {
  margin-top: -6px;
  color: var(--color-text-link);
  font-weight: 900;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.proof-list li {
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface-tint);
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list strong {
  color: var(--color-text-strong);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.1;
}

.proof-list span {
  margin-top: 6px;
  color: var(--color-text-secondary);
  font-size: 0.88rem;
  font-weight: 800;
}

.section,
.funnel-section {
  padding: var(--space-section-y) var(--space-page-x);
}

.intro,
.credentials,
.testimonial {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 0.9fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.intro {
  background: var(--color-surface);
}

.fit {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  background: var(--color-surface-soft);
}

.intro > p,
.fit p,
.credentials p,
.benefit-grid p,
.service-card p,
.timeline span,
.faq p,
.form-note {
  color: var(--color-text-secondary);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 36px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.benefits {
  background: var(--color-surface-soft);
}

.benefit-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-grid article,
.service-card {
  min-height: 236px;
  padding: var(--space-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-panel);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-grid article {
  background: var(--gradient-card);
}

.icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: var(--radius-card);
  color: var(--color-surface);
  background: var(--gradient-action);
  font-weight: 900;
}

.service-lists {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: 18px;
  margin-top: 18px;
}

.service-lists > div {
  padding: var(--space-card-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft-subtle);
}

.service-lists ul {
  columns: 2;
  padding-left: 18px;
  margin-bottom: 0;
  color: var(--color-text-secondary);
}

.services-provided {
  background: var(--color-surface-soft);
}

.services-provided .service-lists {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  margin-top: 0;
}

.services-provided .services-list-primary ul {
  column-gap: clamp(28px, 4vw, 56px);
}

.services-provided .startup-services ul {
  columns: 1;
}

.services-provided li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.conversion-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 56px var(--space-page-x);
  color: var(--color-surface);
  background: var(--gradient-conversion);
}

.conversion-band .eyebrow,
.funnel-section .eyebrow {
  color: var(--brand-on-dark-soft);
}

.conversion-band h2 {
  max-width: 960px;
  margin-bottom: 0;
  color: var(--color-surface);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.process {
  background: var(--color-surface);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.timeline li {
  position: relative;
  min-height: 230px;
  padding: 78px 28px 28px;
  border-radius: var(--radius-panel);
  background: var(--color-surface-tint);
}

.timeline li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  top: 26px;
  left: 28px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--color-surface);
  background: var(--color-text-accent);
  font-weight: 900;
}

.timeline strong,
.timeline span {
  display: block;
}

.funnel-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  color: var(--color-surface);
  background: var(--gradient-funnel);
}

.funnel-section h2 {
  color: var(--color-surface);
}

.funnel-section h1 {
  color: var(--color-surface);
}

.funnel-copy p {
  color: var(--color-text-inverse-muted);
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.check-list li {
  padding-left: 30px;
  background: var(--marker-success) 0 11px / 18px 18px no-repeat;
}

.funnel {
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius-panel);
  color: var(--color-text-primary);
  background: var(--color-surface);
  box-shadow: var(--shadow-raised);
}

.progress-label {
  margin: 0 0 12px;
  color: var(--color-text-accent);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.progress {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 28px;
}

.progress-step {
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 0;
  height: 36px;
  border-radius: 999px;
  color: var(--color-text-secondary);
  background: var(--color-surface-muted);
  font-weight: 900;
}

.progress-step.is-active,
.progress-step.is-complete {
  color: var(--color-state-active-text);
  background: var(--color-state-active-bg);
}

.progress-step.is-complete {
  background: var(--color-action-bg);
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.funnel-panel {
  display: none;
}

.funnel-panel.is-active {
  display: block;
}

legend {
  margin-bottom: 22px;
  color: var(--color-text-strong);
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  font-weight: 900;
  line-height: 1.1;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.choice-grid .choice:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.choice {
  position: relative;
  min-height: 78px;
  padding: 17px 52px 17px 17px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  color: var(--color-text-primary);
  background: var(--color-surface-soft);
  font: 800 0.98rem var(--font-body);
  text-align: left;
  cursor: pointer;
}

.choice:hover,
.choice:focus-visible {
  border-color: var(--color-border-strong);
  background: var(--color-action-secondary-bg-hover);
}

.choice:active {
  border-color: var(--color-action-bg-active);
  background: var(--color-surface-muted);
}

.choice.is-selected {
  border-color: var(--color-state-selected-border);
  color: var(--color-state-selected-text);
  background: var(--color-state-selected-bg);
  box-shadow: inset 0 0 0 2px var(--color-state-selected-border);
}

.choice.is-selected::before,
.choice.is-selected::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.choice.is-selected::before {
  top: 18px;
  right: 18px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--color-state-active-bg);
}

.choice.is-selected::after {
  top: 25px;
  right: 25px;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid var(--color-state-active-text);
  border-left: 2px solid var(--color-state-active-text);
  transform: rotate(-45deg);
}

.lead-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-details[hidden] {
  display: none;
}

label {
  display: grid;
  gap: 8px;
  color: var(--color-text-secondary);
  font-size: 0.88rem;
  font-weight: 800;
}

.custom-specialty-field[hidden] {
  display: none;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--color-text-primary);
  font: 1rem var(--font-body);
  background: var(--color-surface);
  transition: border-color var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard), background-color var(--duration-fast) var(--ease-standard);
}

input:hover,
select:hover,
textarea:hover {
  border-color: var(--color-border-strong);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-border-strong);
  box-shadow: 0 0 0 4px var(--color-focus-ring);
  outline: none;
}

input:disabled,
select:disabled,
textarea:disabled {
  opacity: var(--color-state-disabled-opacity);
  cursor: not-allowed;
}

textarea {
  resize: vertical;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--color-text-link) 50%), linear-gradient(135deg, var(--color-text-link) 50%, transparent 50%);
  background-position: calc(100% - 20px) 52%, calc(100% - 14px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}


.field-note {
  color: var(--color-text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
}


.lead-details.is-panel-grid {
  display: grid;
}

.h-captcha {
  min-height: 78px;
}

.wide {
  grid-column: 1 / -1;
}

.hidden {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: var(--space-page-x);
  top: 12px;
  z-index: calc(var(--z-header) + 2);
  padding: 10px 14px;
  border-radius: var(--radius-card);
  color: var(--color-action-text);
  background: var(--color-action-bg-active);
  box-shadow: var(--shadow-header);
  transform: translateY(-160%);
  transition: transform var(--duration-fast) var(--ease-standard);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  color: var(--color-text-strong);
  background: var(--color-surface);
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-standard), background var(--duration-fast) var(--ease-standard), border-color var(--duration-fast) var(--ease-standard), box-shadow var(--duration-normal) var(--ease-standard);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--color-border-strong);
  color: var(--color-text-link-hover);
  background: var(--color-surface-tint);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--duration-normal) var(--ease-standard), opacity var(--duration-fast) var(--ease-standard);
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  transform: translateY(-7px);
}

.nav-toggle-bars::after {
  transform: translateY(7px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  background: currentColor;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  background: currentColor;
  transform: rotate(-45deg);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.choice:focus-visible {
  outline: 3px solid var(--color-focus-ring);
  outline-offset: 3px;
}

.funnel-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

#funnelStatus {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 0.92rem;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fit-grid p {
  min-height: 116px;
  padding: 22px;
  margin: 0;
  border-radius: var(--radius-panel);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
  font-weight: 800;
}

.specialties {
  background: var(--color-surface);
}

.specialty-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.specialty-list li {
  padding: 17px 18px;
  border-radius: var(--radius-card);
  color: var(--color-text-link);
  background: var(--color-surface-tint);
  font-weight: 900;
}

.testimonial,
.client-testimonials {
  background: var(--color-surface-soft);
}

blockquote {
  margin: 0;
  padding: 34px;
  border-radius: var(--radius-panel);
  background: var(--color-surface);
  box-shadow: var(--shadow-raised);
}

blockquote p {
  color: var(--color-text-strong);
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  font-weight: 800;
  line-height: 1.25;
}

blockquote cite {
  color: var(--color-text-secondary);
  font-style: normal;
  font-weight: 800;
}

.credentials {
  background: var(--color-surface);
}

.credential-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.credential-list span,
.credential-list img {
  display: grid;
  place-items: center;
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-panel);
  color: var(--color-text-strong);
  background: var(--gradient-card);
  box-shadow: var(--shadow-soft);
  font-size: 1.05rem;
  font-weight: 900;
  text-align: center;
}

.credential-list img {
  width: 100%;
  height: 170px;
  object-fit: contain;
}

.faq {
  background: var(--color-surface-soft);
}

details {
  max-width: 980px;
  border-top: 1px solid var(--color-border);
  padding: 22px 0;
}

details:last-child {
  border-bottom: 1px solid var(--color-border);
}

summary {
  cursor: pointer;
  color: var(--color-text-strong);
  font-size: 1.12rem;
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(280px, 1fr);
  gap: 28px;
  padding: 46px var(--space-page-x);
  color: var(--color-surface);
  background: var(--brand-footer);
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.site-footer p {
  margin-bottom: 0;
  color: var(--color-footer-muted);
}

address {
  display: grid;
  gap: 8px;
  font-style: normal;
  text-align: right;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .hero,
  .intro,
  .fit,
  .funnel-section,
  .leadership,
  .credentials,
  .testimonial {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .service-grid,
  .specialty-list,
  .detail-grid,
  .feature-list,
  .outcome-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .brand {
    width: 100%;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand-text strong {
    white-space: normal;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    max-height: calc(100dvh - 260px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-panel);
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .nav-item {
    padding: 0;
  }

  .nav-item > a {
    justify-content: space-between;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: var(--radius-card);
    background: var(--color-surface-soft);
  }

  .dropdown,
  .dropdown.mega {
    position: static;
    display: grid;
    min-width: 0;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 2px;
    margin: 6px 0 10px;
    padding: 8px;
    border: 0;
    border-radius: var(--radius-card);
    background: var(--color-surface-tint);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown a {
    white-space: normal;
  }

  .header-cta {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual img {
    height: 360px;
    border-radius: var(--radius-panel);
  }

  .review-card,
  .hero-stats {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .progress {
    gap: 6px;
  }

  .progress-step {
    height: 32px;
    font-size: 0.82rem;
  }

  .hero-stats,
  .benefit-grid,
  .service-grid,
  .detail-grid,
  .proof-list,
  .feature-list,
  .outcome-panel,
  .timeline,
  .choice-grid,
  .lead-details,
  .fit-grid,
  .service-lists,
  .credential-list,
  .specialty-list,
  .conversion-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-lists ul {
    columns: 1;
  }

  .services-provided .service-lists {
    grid-template-columns: 1fr;
  }

  .site-footer,
  address {
    text-align: left;
  }
}
.benefit-grid article:hover,
.service-card:hover,
.detail-grid article:hover,
.feature-list li:hover,
.fit-grid p:hover,
.specialty-list li:hover,
.credential-list span:hover,
.credential-list img:hover {
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.benefit-grid article,
.service-card,
.detail-grid article,
.feature-list li,
.fit-grid p,
.specialty-list li,
.credential-list span,
.credential-list img {
  transition: border-color var(--duration-fast) var(--ease-standard), box-shadow var(--duration-normal) var(--ease-standard), transform var(--duration-normal) var(--ease-standard);
}

details summary {
  cursor: pointer;
}

details summary:hover,
details summary:focus-visible {
  color: var(--color-text-link-hover);
}

details[open] summary {
  color: var(--color-text-accent);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* Request update refinements */
.nav-item.plain > a::after {
  content: none;
}

.brand {
  width: min(480px, 100%);
}

.brand-text strong,
.brand-text small {
  color: #000;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.03;
  text-transform: none;
  white-space: normal;
}

.affiliation-story {
  align-items: stretch;
}

.affiliation-cards {
  display: grid;
  gap: 14px;
}

.affiliation-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  color: var(--color-text-primary);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft-subtle);
  transition: border-color var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard), transform var(--duration-fast) var(--ease-standard);
}

.affiliation-card:hover,
.affiliation-card:focus-visible {
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.affiliation-card img {
  width: 100%;
  max-height: 78px;
  object-fit: contain;
}

.affiliation-card strong,
.affiliation-card span {
  display: block;
}

.affiliation-card strong {
  color: var(--color-text-strong);
  font-size: 1.05rem;
}

.affiliation-card p {
  margin: 6px 0 0;
}

.affiliation-card span {
  margin-top: 8px;
  color: var(--color-text-link);
  font-weight: 900;
}

@media (max-width: 700px) {
  .affiliation-card {
    grid-template-columns: 1fr;
  }

  .affiliation-card img {
    max-width: 150px;
  }
}

.funnel-disclaimer {
  color: var(--color-text-inverse-muted);
  font-size: 0.95rem;
  margin-top: 0.65rem;
}

/* Homepage trust refinements */
.card-marker {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius-card);
  color: var(--color-text-link);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-stats div {
  display: grid;
  align-content: center;
  min-height: 96px;
}

.hero-stats dt {
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
  line-height: 1.05;
}

.hero-stats dd {
  line-height: 1.2;
}

.client-testimonials {
  display: block;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  display: grid;
  align-content: space-between;
  min-height: 250px;
  border: 1px solid var(--color-border);
}

.testimonial-card.is-placeholder {
  background: linear-gradient(180deg, var(--color-surface), var(--color-surface-soft));
}

.testimonial-card p {
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
}

.credential-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-panel);
  color: var(--color-text-primary);
  background: var(--gradient-card);
  box-shadow: var(--shadow-soft);
  transition: border-color var(--duration-fast) var(--ease-standard), box-shadow var(--duration-normal) var(--ease-standard), transform var(--duration-normal) var(--ease-standard);
}

.credential-card:hover,
.credential-card:focus-visible {
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.credential-card img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 86px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.credential-card strong {
  display: block;
  color: var(--color-text-strong);
  font-size: 1.05rem;
}

.credential-card p {
  margin: 6px 0 0;
  color: var(--color-text-secondary);
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (max-width: 700px) {
  .top-bar {
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .top-bar span {
    display: none;
  }

  .site-header {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-text strong,
  .brand-text small {
    font-size: clamp(0.9rem, 4vw, 1.08rem);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: 0;
  }

  .credential-card {
    grid-template-columns: 1fr;
  }

  .credential-card img {
    max-width: 150px;
  }
}


.credential-card img:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}
/* Service card formatting refinements */
.service-card {
  display: grid;
  grid-template-rows: auto minmax(2.7em, auto) auto;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 2.4vw, 32px);
}

.service-card .icon {
  margin-bottom: 0;
}

.service-card h3 {
  max-width: 16ch;
  min-height: 2.7em;
  margin-bottom: 0;
  font-size: clamp(1.15rem, 1.45vw, 1.32rem);
  line-height: 1.28;
}

.service-card p {
  max-width: 34ch;
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .service-card {
    grid-template-rows: auto auto auto;
  }

  .service-card h3 {
    max-width: none;
    min-height: 0;
  }
}
.service-card-reporting h3 {
  max-width: 22ch;
}

/* Intro section revamp */
.intro-revamp {
  align-items: stretch;
  background: linear-gradient(180deg, var(--color-surface), var(--color-surface-soft));
}

.intro-copy {
  display: grid;
  align-content: center;
  max-width: 720px;
}

.intro-copy p:last-child {
  color: var(--color-text-secondary);
  font-size: 1.08rem;
}

.intro-panel {
  display: grid;
  gap: 14px;
}

.intro-panel article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 8px 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-panel);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft-subtle);
  transition: border-color var(--duration-fast) var(--ease-standard), box-shadow var(--duration-normal) var(--ease-standard), transform var(--duration-normal) var(--ease-standard);
}

.intro-panel article:hover {
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.intro-panel span {
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-card);
  color: var(--color-action-text);
  background: var(--gradient-action);
  font-size: 0.82rem;
  font-weight: 900;
}

.intro-panel strong {
  color: var(--color-text-strong);
  font-size: 1.08rem;
}

.intro-panel p {
  margin: 0;
  color: var(--color-text-secondary);
}

@media (max-width: 700px) {
  .intro-panel article {
    grid-template-columns: 1fr;
  }

  .intro-panel span {
    grid-row: auto;
  }
}

/* Affiliation removal proof cards */
.proof-badge {
  display: grid;
  place-items: center;
  width: 76px;
  min-height: 58px;
  padding: 10px;
  border-radius: var(--radius-card);
  color: var(--color-action-text);
  background: var(--gradient-action);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
}

.credential-card.stat-card {
  grid-template-columns: 86px minmax(0, 1fr);
}

.affiliation-card.proof-card {
  grid-template-columns: 118px minmax(0, 1fr);
}

.affiliation-card.proof-card .proof-badge {
  justify-self: center;
}

@media (max-width: 700px) {
  .credential-card.stat-card,
  .affiliation-card.proof-card {
    grid-template-columns: 1fr;
  }

  .proof-badge {
    justify-self: start;
  }
}

/* Hero title and proof-card polish */
.hero-title {
  line-height: 1.03;
}

.hero-title span {
  display: block;
}

.credential-card {
  min-height: 0;
  align-items: start;
  padding: 24px;
}

.credential-card.stat-card {
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.credential-card .proof-badge,
.affiliation-card .proof-badge {
  width: auto;
  min-width: 76px;
  min-height: 52px;
  max-width: 96px;
  margin: 0;
  padding: 10px 14px;
  color: var(--color-action-text);
  background: var(--gradient-action);
  font-size: 1rem;
  line-height: 1.05;
  justify-self: start;
  box-shadow: var(--shadow-soft-subtle);
  transform: none;
}

.credential-card .proof-badge:hover,
.affiliation-card .proof-badge:hover {
  border-color: transparent;
  box-shadow: var(--shadow-soft-subtle);
  transform: none;
}

.credential-list .credential-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  grid-template-columns: minmax(118px, 0.26fr) minmax(0, 1fr);
  align-items: center;
}

.credential-card img {
  justify-self: start;
  max-width: 150px;
  max-height: 58px;
}

.affiliation-card {
  min-height: 0;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  padding: 22px;
}

.affiliation-card.bbb-card {
  grid-template-columns: 150px minmax(0, 1fr);
}

.affiliation-card.proof-card {
  grid-template-columns: 104px minmax(0, 1fr);
}

.affiliation-card.proof-card .proof-badge {
  justify-self: start;
}

.affiliation-card img {
  justify-self: start;
  max-height: 64px;
}

@media (max-width: 900px) {
  .credential-list {
    grid-template-columns: 1fr;
  }

  .credential-list .credential-card:last-child:nth-child(odd) {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 700px) {
  .hero-title {
    line-height: 1.06;
  }

  .affiliation-card,
  .affiliation-card.bbb-card,
  .affiliation-card.proof-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .credential-card .proof-badge,
  .affiliation-card .proof-badge {
    min-width: 72px;
    min-height: 48px;
  }
}

/* Mobile overflow guard for proof and affiliation sections */
.trust-strip span,
.proof-strip span {
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
}

.page-hero,
.section,
.funnel-section,
.affiliation-card,
.credential-card {
  min-width: 0;
}

@media (max-width: 700px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header,
  .page-hero,
  .section,
  .funnel-section,
  .leadership,
  .credentials,
  .affiliation-story,
  .affiliation-cards,
  .credential-list,
  .site-footer {
    width: 100%;
    max-width: 100vw;
    min-width: 0;
  }

  .page-hero h1,
  .section h2,
  .leadership p,
  .affiliation-card p,
  .credential-card p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

/* Circular numbered badge treatment */
.intro-panel span,
.card-marker,
.icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--color-action-text);
  background: var(--gradient-action);
  box-shadow: var(--shadow-soft-subtle);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.card-marker {
  margin-bottom: 18px;
}

.service-card .icon {
  margin-bottom: 0;
}

/* Hero headline and stat-card spacing polish */
.hero-content {
  max-width: 820px;
}

.hero-title {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 3.65vw, 3.75rem);
  line-height: 1.05;
}

.hero-stats {
  gap: 10px;
  padding: 14px;
}

.hero-stats div {
  display: grid;
  align-content: center;
  gap: 4px;
  min-height: 98px;
  padding: 16px 14px;
}

.hero-stats dt {
  line-height: 1;
}

.hero-stats dd {
  max-width: 12ch;
  margin: 0 auto;
  line-height: 1.18;
}

@media (max-width: 700px) {
  .hero-title {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
    line-height: 1.06;
  }

  .hero-stats {
    gap: 8px;
    padding: 10px;
  }

  .hero-stats div {
    min-height: 86px;
    padding: 14px 12px;
  }
}

/* Affiliations section copy-card polish */
.affiliation-cards {
  gap: 16px;
}

.affiliation-card {
  gap: 22px;
  min-height: 132px;
  padding: 24px 26px;
}

.affiliation-card.bbb-card {
  grid-template-columns: 164px minmax(0, 1fr);
}

.affiliation-card.proof-card {
  grid-template-columns: 118px minmax(0, 1fr);
}

.affiliation-card.proof-card .proof-badge {
  justify-self: center;
  width: 88px;
  min-width: 88px;
  min-height: 54px;
  max-width: 88px;
  padding: 10px 12px;
  font-size: 1rem;
}

.affiliation-card img {
  max-width: 146px;
  max-height: 66px;
}

.affiliation-card strong {
  font-size: 1.08rem;
  line-height: 1.25;
}

.affiliation-card p {
  max-width: 64ch;
  margin-top: 8px;
  line-height: 1.55;
}

.affiliation-card span {
  margin-top: 10px;
}

@media (max-width: 700px) {
  .affiliation-card,
  .affiliation-card.bbb-card,
  .affiliation-card.proof-card {
    min-height: 0;
    padding: 20px;
  }

  .affiliation-card.proof-card .proof-badge {
    justify-self: start;
  }
}

/* Final hero and badge alignment corrections */
.intro-panel span,
.card-marker,
.icon {
  background: var(--color-text-accent);
}

@media (min-width: 1200px) {
  .hero {
    grid-template-columns: minmax(660px, 1fr) minmax(420px, 0.72fr);
    gap: clamp(28px, 4vw, 64px);
  }

  .hero-title span {
    white-space: nowrap;
  }
}

.hero-title {
  font-size: clamp(2.35rem, 3.35vw, 3.55rem);
}

.hero-stats div {
  justify-items: center;
  text-align: center;
}

.hero-stats dt,
.hero-stats dd {
  width: 100%;
  text-align: center;
}

.hero-stats dt {
  white-space: nowrap;
}

.hero-stats dd {
  display: grid;
  place-items: center;
  min-height: 3.54em;
}

@media (max-width: 700px) {
  .hero-title span {
    white-space: normal;
  }
}

/* Homepage first-viewport rhythm polish */
@media (min-width: 1101px) {
  .hero {
    padding-top: clamp(44px, 4.2vw, 64px);
    padding-bottom: clamp(34px, 3.6vw, 52px);
  }

  .hero::before {
    top: 32px;
    width: clamp(430px, 31vw, 520px);
    height: clamp(430px, 31vw, 520px);
  }

  .hero-visual {
    min-height: clamp(430px, 29vw, 480px);
  }

  .hero-visual img {
    height: clamp(430px, 29vw, 480px);
  }

  .review-card {
    top: clamp(24px, 2.3vw, 34px);
  }

  .hero-stats {
    bottom: clamp(18px, 1.8vw, 24px);
  }
}
