:root {
  --ink: #132236;
  --muted: #5f6f7e;
  --navy: #062b63;
  --blue: #477fae;
  --blue-soft: #eaf3fa;
  --silver: #858c93;
  --paper: #fbfcfe;
  --white: #ffffff;
  --line: #d9e3ec;
  --shadow: 0 24px 70px rgba(6, 43, 99, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 254, 0.94);
  border-bottom: 1px solid rgba(217, 227, 236, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 48px;
}

.brand span {
  display: grid;
  gap: 1px;
}

.brand strong {
  color: var(--navy);
  font-size: 1.2rem;
}

.brand span span {
  color: var(--muted);
  font-size: 0.9rem;
}

.header-audience {
  flex: 1 1 auto;
  margin: 0;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px clamp(12px, 1.8vw, 22px);
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a:hover,
.nav a[aria-current="page"],
.site-footer a:hover {
  color: var(--blue);
}

.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 780px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.home-hero,
.service-hero {
  min-height: calc(100vh - 72px);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 252, 254, 0.97) 0%, rgba(251, 252, 254, 0.89) 38%, rgba(251, 252, 254, 0.28) 72%),
    linear-gradient(180deg, rgba(19, 34, 54, 0.04), rgba(19, 34, 54, 0.18));
}

.hero-content {
  width: min(720px, calc(100% - 40px));
  max-width: none;
  margin-left: clamp(20px, 7vw, 88px);
  padding: 72px 0 96px;
}

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

h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
}

p,
li,
label,
input,
textarea {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.9rem, 6.8vw, 5.7rem);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: #33485d;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.transition-line {
  max-width: 620px;
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--navy);
  border-left: 4px solid var(--blue);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.button.primary:hover {
  background: #0b3d86;
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.button.secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(71, 127, 174, 0.36);
}

.button.secondary:hover {
  border-color: var(--blue);
}

.hero-panel {
  display: grid;
  gap: 22px;
  justify-items: center;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 227, 236, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: min(100%, 430px);
  height: auto;
  object-fit: contain;
}

.hero-stats {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-stats div {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 20px;
  background: var(--blue-soft);
  border: 1px solid rgba(71, 127, 174, 0.18);
  border-radius: 8px;
}

.hero-stats strong {
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.page-hero {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(251, 252, 254, 0.96), rgba(251, 252, 254, 0.84)),
    url("assets/hero-medical-billing.png") center/cover;
}

.page-hero .section-inner {
  display: grid;
  gap: 18px;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: #33485d;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.home-links {
  background: #f1f6fa;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.link-card {
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(217, 227, 236, 0.95);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(6, 43, 99, 0.07);
}

.link-card.featured {
  color: #fff;
  background: var(--navy);
}

.link-card p {
  margin: 0;
  color: var(--muted);
}

.link-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.link-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.intro,
.experience,
.collaboration {
  background: var(--white);
}

.intro-grid,
.experience-grid,
.collaboration-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: start;
}

.intro p,
.contact p,
.experience-copy p,
.collaboration-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.collaboration {
  border-top: 1px solid var(--line);
}

.collaboration-copy {
  display: grid;
  gap: 18px;
}

.tagline-callout {
  margin: 0;
  padding: clamp(20px, 3vw, 28px);
  color: var(--navy) !important;
  background: var(--blue-soft);
  border: 1px solid rgba(71, 127, 174, 0.22);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  font-weight: 800;
}

.solutions {
  background: #f1f6fa;
}

.qa-support {
  background: var(--white);
}

.ala-carte {
  background: var(--white);
}

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

.support-lane {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 620px;
  padding: clamp(28px, 4vw, 42px);
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(6, 43, 99, 0.06);
}

.support-lane h3 {
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.support-lane p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.practice-lane {
  color: #fff;
  background: linear-gradient(135deg, #061d42, #06356f);
  border-color: #06356f;
}

.practice-lane h3,
.practice-lane .plan-kicker {
  color: #fff;
}

.practice-lane p,
.practice-lane .support-list {
  color: rgba(255, 255, 255, 0.78);
}

.support-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.support-lane .button {
  align-self: end;
  justify-self: start;
  margin-top: auto;
}

.disclaimer-panel {
  margin-top: 24px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--blue-soft);
  border: 1px solid rgba(71, 127, 174, 0.22);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
}

.disclaimer-panel h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.disclaimer-panel p {
  max-width: 980px;
  margin: 14px 0 0;
  color: #33485d;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.solution-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(217, 227, 236, 0.95);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(6, 43, 99, 0.07);
}

.solution-card.featured {
  color: #fff;
  background: var(--navy);
}

.solution-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.solution-card p {
  margin: 0;
  color: var(--muted);
}

.card-link {
  align-self: end;
  justify-self: start;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 800;
}

.card-link::after {
  content: " ->";
}

.solution-card.featured .card-link {
  color: #fff;
}

.card-link:hover {
  color: var(--blue);
}

.solution-card.featured .card-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.forms-library {
  background: var(--white);
}

.forms-disclosure {
  padding: 28px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.forms-disclosure summary {
  color: var(--navy);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 800;
}

.forms-disclosure summary::marker {
  color: var(--blue);
}

.forms-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.forms-group {
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(217, 227, 236, 0.95);
  border-radius: 8px;
}

.forms-group h3 {
  margin-bottom: 12px;
}

.forms-group ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.forms-note {
  max-width: 880px;
  margin: 22px 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.qa-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.qa-toggle {
  justify-self: start;
  margin-top: 4px;
}

.qa-plan-panel[hidden] {
  display: none;
}

.qa-plan {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 330px;
  padding: 28px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.qa-plan.featured {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow);
}

.qa-plan.featured,
.qa-plan.featured h3,
.qa-plan.featured .plan-kicker {
  color: #fff;
}

.qa-plan p {
  margin: 0;
  color: var(--muted);
}

.qa-plan.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.plan-kicker {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.plan-price {
  color: var(--navy) !important;
  font-size: clamp(2.15rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.qa-plan.featured .plan-price {
  color: #fff !important;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 700;
}

.qa-plan .button {
  align-self: end;
  margin-top: 6px;
}

.qa-note {
  max-width: 880px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.owners {
  background: #f1f6fa;
}

.owners-premium {
  background: #f1f6fa;
}

.center-heading {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.center-heading p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

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

.founder-preview-card {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 16px;
  min-height: 430px;
  padding: clamp(28px, 4vw, 42px);
  background: var(--white);
  border: 1px solid rgba(217, 227, 236, 0.95);
  border-radius: 14px;
  box-shadow: 0 22px 48px rgba(6, 43, 99, 0.09);
}

.founder-preview-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.founder-preview-card p:not(.owner-role) {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.large-initials {
  width: 104px;
  height: 104px;
  font-size: 1.7rem;
}

.founder-preview-card .button {
  margin-top: auto;
}

.founder-bios {
  background: var(--white);
}

.founder-bio-stack {
  display: grid;
  gap: 28px;
}

.founder-bio-card {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 5vw, 48px);
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(6, 43, 99, 0.06);
  scroll-margin-top: 100px;
}

.bio-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
}

.founder-bio-card h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.founder-bio-card p:not(.owner-role) {
  max-width: 940px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.gg-promise-section {
  background: #f1f6fa;
}

.highlight-panel {
  padding: clamp(32px, 6vw, 58px);
  color: #fff;
  background: linear-gradient(120deg, #061d42, #06356f);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.highlight-panel .eyebrow,
.highlight-panel h2 {
  color: #fff;
}

.highlight-panel p {
  max-width: 850px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.owner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.owner-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 24px;
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(217, 227, 236, 0.95);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(6, 43, 99, 0.07);
}

.owner-card-muted {
  background:
    linear-gradient(180deg, rgba(241, 246, 250, 0.68), rgba(255, 255, 255, 0.96)),
    var(--white);
}

.owner-initials {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 800;
}

.owner-role {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.owner-card h3 {
  margin-bottom: 14px;
}

.owner-card p:not(.owner-role) {
  margin: 0 0 14px;
  color: var(--muted);
}

.owner-card p:last-child {
  margin-bottom: 0;
}

.owner-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.owner-specialties span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  color: var(--navy);
  background: var(--blue-soft);
  border: 1px solid rgba(71, 127, 174, 0.2);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 800;
}

.experience-copy {
  display: grid;
  gap: 24px;
}

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

.proof-grid span {
  display: block;
  padding: 13px 14px;
  color: var(--navy);
  background: var(--blue-soft);
  border: 1px solid rgba(71, 127, 174, 0.18);
  border-radius: 8px;
  font-weight: 800;
}

.process {
  color: #fff;
  background: linear-gradient(120deg, #061d42, #06356f);
}

.process h2,
.process .eyebrow {
  color: #fff;
}

.process .eyebrow {
  opacity: 0.78;
}

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

.process-steps article {
  min-height: 210px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.process-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.contact {
  background: #f8fbfd;
}

.contact-panel {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-method {
  display: grid;
  gap: 5px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-method span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-method a {
  color: var(--navy);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 800;
}

.contact-method a:hover {
  color: var(--blue);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.patient-help-fields {
  display: grid;
  gap: 14px;
  margin: 4px 0;
  padding: 18px;
  background: #f4f8fb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.patient-help-fields legend {
  padding: 0 6px;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0;
}

.patient-help-fields p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-status a {
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .header-audience {
    text-align: left;
    white-space: normal;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .intro-grid,
  .experience-grid,
  .collaboration-grid,
  .contact-grid,
  .overview-grid,
  .support-lanes,
  .solution-grid,
  .forms-panel,
  .qa-plan-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 640px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(251, 252, 254, 0.97) 0%, rgba(251, 252, 254, 0.89) 56%, rgba(251, 252, 254, 0.46) 100%);
  }

  .hero-content {
    width: min(100% - 40px, 680px);
    margin: 0 auto;
  }

  .solution-card,
  .qa-plan,
  .process-steps article {
    min-height: auto;
  }

  .founder-preview-grid {
    grid-template-columns: 1fr;
  }

  .founder-preview-card {
    min-height: auto;
  }

  .bio-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 620px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand {
    width: 100%;
  }

  .brand span span {
    font-size: 0.82rem;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 18px;
    font-size: 0.92rem;
  }

  .section {
    padding: 54px 18px;
  }

  .page-hero h1,
  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 12vw, 3.3rem);
    line-height: 1.04;
    hyphens: none;
  }

  .page-hero p:not(.eyebrow),
  .hero-copy,
  .transition-line {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-stats,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .owner-card {
    padding: 24px;
  }

  .founder-preview-card,
  .founder-bio-card,
  .highlight-panel {
    border-radius: 8px;
  }

  .owner-role {
    letter-spacing: 0.08em;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
