:root {
  --navy: #002b5c;
  --navy-2: #00315f;
  --navy-3: #061d3f;
  --teal: #007c8a;
  --teal-2: #008c95;
  --orange: #ff6b2c;
  --orange-2: #f39221;
  --bg: #f7fbfc;
  --white: #ffffff;
  --ink: #0c2b52;
  --muted: #5e7188;
  --line: #deebf1;
  --soft: #edf5f8;
  --text-body: clamp(1rem, .94rem + .22vw, 1.125rem);
  --text-compact: clamp(.94rem, .9rem + .12vw, 1rem);
  --text-small: clamp(.88rem, .84rem + .1vw, .95rem);
  --glass-bg: rgba(255, 255, 255, .86);
  --glass-bg-strong: rgba(255, 255, 255, .92);
  --glass-border: rgba(182, 211, 225, .78);
  --glass-highlight: inset 0 1px 0 rgba(255, 255, 255, .92);
  --shadow: 0 20px 54px rgba(0, 43, 92, .15);
  --small-shadow: 0 12px 32px rgba(0, 43, 92, .12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 42%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: var(--text-body);
  line-height: 1.58;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

button,
input,
summary,
textarea {
  font: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

section[id],
.anchor-target {
  scroll-margin-top: 92px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(222, 235, 241, .86);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 70px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 216px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  color: #183c65;
  font-size: .9rem;
  font-weight: 700;
}

.main-nav a {
  flex: 0 0 auto;
  position: relative;
  padding: 24px 0;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--teal);
  transition: transform .24s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  border-radius: 4px;
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
  white-space: nowrap;
}

.header-cta {
  padding: 0 18px;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 10px 22px rgba(255, 107, 44, .28);
  font-size: .82rem;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.header-cta svg,
.btn svg {
  width: 1rem;
  height: 1rem;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  padding: 82px 0 34px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 470px;
  background:
    radial-gradient(circle at 75% 42%, rgba(0, 124, 138, .12), transparent 26%),
    radial-gradient(circle at 62% 12%, rgba(0, 43, 92, .08), transparent 22%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(560px, 1.1fr);
  align-items: center;
  gap: 44px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: .85rem;
  line-height: 1.15;
  font-weight: 900;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 17px;
  border-radius: 999px;
  background: rgba(0, 140, 149, .16);
  border: 1px solid rgba(0, 124, 138, .14);
}

.section-label {
  color: var(--orange);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
.section-copy h2,
.center-heading h2,
.cta-banner h2,
.about-card h2 {
  margin: 0;
  color: var(--navy);
  line-height: .98;
  font-weight: 900;
}

h1 {
  max-width: 680px;
  font-size: clamp(2.75rem, 4.25vw, 4.05rem);
  line-height: 1.02;
}

h1 span {
  display: block;
  color: var(--teal);
  font-style: italic;
}

.section-copy h2 span,
.about-card h2 span {
  color: var(--teal);
  font-style: italic;
}

.hero-text {
  max-width: 690px;
  margin: 28px 0 30px;
  color: #234b72;
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  line-height: 1.55;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.button-row.center {
  justify-content: center;
}

.btn {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: .93rem;
}

.btn-primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 14px 28px rgba(0, 43, 92, .24);
}

.btn-ghost {
  color: var(--navy);
  background: transparent;
}

.btn-orange {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(255, 107, 44, .24);
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .06);
}

.hero-visual {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  isolation: isolate;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(0, 49, 95, .34), rgba(0, 124, 138, .42), transparent);
  transform: translateY(-50%);
}

.hero-visual::before {
  left: 184px;
  width: max(48px, calc(50% - 270px));
}

.hero-visual::after {
  right: 184px;
  width: max(48px, calc(50% - 270px));
}

.network-field {
  position: absolute;
  inset: -20px 0 -6px;
  overflow: hidden;
  z-index: -1;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 49, 95, .2) 0 1px, transparent 2px) 0 0 / 26px 26px,
    radial-gradient(circle at 50% 50%, rgba(0, 140, 149, .28), transparent 36%);
  animation: drift 18s linear infinite;
}

.network-field::before,
.network-field::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0, 49, 95, .12);
  box-shadow: inset 0 0 64px rgba(0, 124, 138, .1);
}

.network-field::after {
  width: 610px;
  height: 610px;
  border-style: dashed;
}

.orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(0, 140, 149, .14);
  animation: orbit 14s linear infinite;
}

.orbit-two {
  animation-duration: 19s;
  animation-delay: -5s;
  background: var(--orange);
}

.orbit-three {
  animation-duration: 24s;
  animation-delay: -11s;
  background: #69a8ff;
}

.flow-card {
  position: absolute;
  top: 50%;
  width: 174px;
  min-height: 286px;
  padding: 24px 22px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--glass-bg-strong);
  box-shadow: var(--shadow), var(--glass-highlight);
  backdrop-filter: blur(18px);
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}

.flow-card h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: .86rem;
}

.flow-card ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: .8rem;
  font-weight: 800;
}

.flow-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 26px;
  border-radius: 6px;
}

.flow-card li.claims-row {
  margin-inline: -8px;
  padding: 5px 8px;
  background: rgba(255, 107, 44, .12);
  border: 1px solid rgba(255, 107, 44, .2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.flow-card span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  color: #fff;
}

.flow-card span svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.3;
}

.queue-card {
  left: 0;
  transform: translateY(-50%);
}

.completed-card {
  right: 0;
  transform: translateY(-50%);
  animation-delay: -2.4s;
}

.queue-icon.blue { background: #0c72bd; }
.queue-icon.teal { background: #0d9aa4; }
.queue-icon.orange { background: var(--orange); }
.queue-icon.green { background: #17a768; }
.queue-icon.purple { background: #a64be8; }

.completed-card span {
  background: var(--teal);
  border-radius: 50%;
}

.ai-orb {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 154px;
  height: 154px;
  padding: 20px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 34% 22%, rgba(255, 255, 255, .48), transparent 24%),
    linear-gradient(145deg, #0f5f82, var(--navy));
  box-shadow:
    0 0 0 22px rgba(0, 124, 138, .13),
    0 0 0 44px rgba(0, 43, 92, .08),
    inset 0 0 0 1px rgba(255, 255, 255, .22),
    0 24px 48px rgba(0, 43, 92, .34);
  animation: pulse 2.8s ease-in-out infinite;
  z-index: 4;
}

.ai-orb::before,
.ai-orb::after {
  display: none;
}

.ai-orb svg {
  width: 34px;
  height: 34px;
  margin-bottom: 5px;
}

.ai-orb strong,
.ai-orb span {
  display: block;
  line-height: 1.15;
}

.ai-orb strong {
  font-size: .94rem;
}

.ai-orb span {
  font-size: .82rem;
}

.stats-wrap {
  position: relative;
  z-index: 2;
  padding: 0 0 24px;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  min-height: 154px;
  color: #fff;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 20%, rgba(0, 140, 149, .34), transparent 28%),
    linear-gradient(135deg, var(--navy), #001f46);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 20px 46px rgba(0, 43, 92, .26), inset 0 1px 0 rgba(255, 255, 255, .16);
  overflow: hidden;
}

.stats-bar article {
  position: relative;
  display: grid;
  grid-template-rows: 32px auto minmax(2.48rem, auto);
  align-content: center;
  justify-items: center;
  gap: 5px;
  padding: 18px;
  text-align: center;
}

.stats-bar article + article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24%;
  bottom: 24%;
  width: 1px;
  background: rgba(255, 255, 255, .34);
}

.stats-bar svg {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, .78);
}

.stats-bar strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1;
  white-space: nowrap;
}

.stats-bar span {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 150px;
  color: rgba(255, 255, 255, .86);
  font-size: .94rem;
  line-height: 1.32;
}

.two-col,
.serve-grid,
.ops-card,
.about-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr);
  gap: 58px;
  align-items: center;
}

.section-copy h2 {
  max-width: 610px;
  font-size: clamp(2.35rem, 4vw, 3.7rem);
}

.section-copy h2 span,
.about-card h2 span {
  display: block;
}

.section-copy p:not(.section-label) {
  max-width: 590px;
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.62;
}

.issue-list {
  display: grid;
  gap: 12px;
}

.issue-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  padding: 0 18px;
  color: #2e4f72;
  border: 1px solid var(--glass-border);
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(242, 248, 250, .96), rgba(255, 255, 255, .94));
  box-shadow: 0 10px 24px rgba(0, 43, 92, .08), inset 0 1px 0 rgba(255, 255, 255, .92);
  font-weight: 750;
  font-size: var(--text-small);
}

.issue-list svg {
  color: #6d86a4;
}

.teal-card {
  position: relative;
  min-height: 380px;
  padding: clamp(32px, 5vw, 50px);
  color: #fff;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 175, 177, .32), transparent 34%),
    linear-gradient(135deg, #006a75, #00435d 72%);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .18);
}

.teal-card h2 {
  position: relative;
  max-width: 540px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.08;
}

.teal-card p {
  position: relative;
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: var(--text-body);
  line-height: 1.58;
}

.feature-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.feature-row div {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  color: rgba(255, 255, 255, .9);
  font-weight: 750;
  font-size: .88rem;
  line-height: 1.2;
}

.feature-row svg {
  width: 30px;
  height: 30px;
}

.wave-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  background:
    radial-gradient(circle, rgba(255, 255, 255, .62) 0 1px, transparent 1.8px) 0 0 / 18px 18px;
  mask-image: radial-gradient(ellipse at 78% 35%, #000 0 22%, transparent 64%);
  animation: drift 16s linear infinite;
}

.center-heading {
  max-width: 720px;
  margin: 0 auto 46px;
  text-align: center;
}

.center-heading h2 {
  font-size: clamp(2.25rem, 4vw, 3.55rem);
}

.center-heading p:not(.section-label) {
  margin: 10px 0 0;
  color: var(--muted);
}

.center-heading.compact {
  margin-bottom: 26px;
}

.foundation-heading span {
  display: block;
}

.process {
  padding-top: 34px;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
}

.steps::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 44px;
  z-index: 0;
  border-top: 1px solid #c7dce7;
}

.steps article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.steps article:not(:last-child)::after {
  display: none;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  color: var(--orange);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--glass-border);
  box-shadow: 0 14px 32px rgba(0, 43, 92, .12), inset 0 1px 0 rgba(255, 255, 255, .9);
}

.execution .section-label,
.process .section-label,
.automation-panel .section-label,
.serve .section-label,
.faq .section-label {
  font-size: calc(.85rem + 4px);
}

.serve .section-copy h2 {
  font-size: clamp(2.6rem, calc(4vw + 4px), 3.95rem);
}

.step-icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.8;
}

.steps span {
  margin-top: 12px;
  color: var(--orange);
  font-weight: 900;
  font-size: 1.2rem;
}

.steps h3 {
  margin: 2px 0 5px;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.12;
}

.steps p {
  max-width: 220px;
  margin: 0;
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.46;
}

.automation-panel {
  padding-top: 30px;
}

.panel,
.about-card,
.ops-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--glass-bg);
  box-shadow: 0 18px 48px rgba(0, 43, 92, .11), var(--glass-highlight);
  backdrop-filter: blur(16px);
}

.panel {
  padding: 30px;
}

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

.workflow-grid article {
  display: grid;
  grid-template-rows: 44px minmax(42px, auto) 1fr;
  align-content: start;
  gap: 12px;
  min-height: 216px;
  padding: 22px 18px 20px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--glass-bg-strong);
  box-shadow: 0 10px 28px rgba(0, 43, 92, .09), inset 0 1px 0 rgba(255, 255, 255, .92);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.workflow-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 124, 138, .35);
  box-shadow: var(--small-shadow);
}

.workflow-grid > article > svg {
  width: 44px;
  height: 44px;
  margin: 0 auto;
  color: var(--teal);
}

.workflow-grid h3 {
  min-height: 0;
  margin: 0;
  color: var(--navy);
  text-align: center;
  font-size: 1.04rem;
  line-height: 1.15;
}

.workflow-grid p {
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-size: .9rem;
  line-height: 1.48;
}

.serve {
  padding-top: 42px;
}

.serve-wrap {
  display: grid;
  gap: 22px;
}

.serve-grid {
  grid-template-columns: minmax(300px, .86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.serve-content {
  display: grid;
  justify-self: stretch;
}

.serve-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.serve-list article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--glass-bg-strong);
  box-shadow: 0 10px 24px rgba(0, 43, 92, .08), inset 0 1px 0 rgba(255, 255, 255, .9);
  color: #274a70;
  font-weight: 800;
  font-size: var(--text-small);
}

.serve-list article span {
  min-width: 0;
  line-height: 1.25;
}

.serve-list article small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 750;
  line-height: 1.22;
}

.serve-list svg {
  flex: 0 0 auto;
  color: var(--teal);
}

.serve-list article:nth-child(2n) svg {
  color: var(--orange-2);
}

.serve-list article:nth-child(4n) svg {
  color: #9b5de5;
}

.wide-strip {
  justify-self: stretch;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 48px;
  padding: 0 26px;
  color: #fff;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--navy), #003d73);
  font-size: .95rem;
  font-weight: 800;
}

.wide-strip strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.wide-strip svg {
  width: 1.18rem;
  height: 1.18rem;
}

.operations {
  padding-top: 0;
}

.ops-card {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  align-items: stretch;
  gap: 0;
  overflow: hidden;
}

.integrations,
.implementation {
  display: grid;
  align-content: start;
  padding: clamp(30px, 4vw, 44px);
}

.implementation {
  border-left: 1px solid var(--line);
}

.integrations h2,
.implementation h2 {
  max-width: 430px;
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.08;
}

.integrations p:not(.section-label),
.implementation p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-compact);
  line-height: 1.55;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 32px 0 26px;
}

.integration-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--glass-border);
  border-radius: 5px;
  background: var(--glass-bg-strong);
  color: #355573;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
  font-size: var(--text-small);
  font-weight: 750;
}

.integration-grid svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

.security-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy) !important;
  font-weight: 800;
  font-size: var(--text-small);
}

.security-line svg {
  color: #6d86a4;
}

.mini-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.mini-steps::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: -20px;
  border-top: 2px dotted var(--teal);
}

.mini-steps article {
  position: relative;
  min-height: 178px;
  padding: 26px 14px 18px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--glass-bg-strong);
  box-shadow: 0 10px 24px rgba(0, 43, 92, .08), inset 0 1px 0 rgba(255, 255, 255, .9);
  text-align: center;
}

.mini-steps span {
  position: absolute;
  top: -32px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  border-radius: 50%;
  background: var(--teal);
  transform: translateX(-50%);
  font-size: .78rem;
  font-weight: 900;
}

.mini-steps h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: .92rem;
  line-height: 1.18;
}

.mini-steps p {
  font-size: .88rem;
  line-height: 1.38;
}

.cta-section {
  position: relative;
  padding: 16px 0 44px;
}

.anchor-target {
  position: absolute;
  top: -92px;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.cta-banner {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 54px;
  min-height: 228px;
  padding: 36px clamp(28px, 6vw, 110px);
  color: #fff;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 8% 100%, rgba(0, 140, 149, .45), transparent 28%),
    radial-gradient(circle at 98% 15%, rgba(0, 140, 149, .32), transparent 34%),
    linear-gradient(135deg, var(--navy), #002052);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .16);
  text-align: center;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.05;
}

.cta-banner p {
  max-width: 660px;
  margin: 18px auto 24px;
  color: rgba(255, 255, 255, .86);
  font-size: var(--text-body);
  line-height: 1.56;
}

.cta-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 0 0 24px rgba(255, 255, 255, .05), inset 0 1px 0 rgba(255, 255, 255, .24);
}

.cta-icon svg {
  width: 62px;
  height: 62px;
}

.cta-banner .btn svg {
  width: 1.22rem;
  height: 1.22rem;
}

.faq {
  padding-top: 24px;
}

.faq-heading {
  margin-bottom: 22px;
}

.faq-heading h2 {
  max-width: 650px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.1;
}

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

details {
  border: 1px solid var(--glass-border);
  border-radius: 5px;
  background: var(--glass-bg-strong);
  box-shadow: 0 8px 20px rgba(0, 43, 92, .07), inset 0 1px 0 rgba(255, 255, 255, .9);
}

summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 42px 0 18px;
  color: #244767;
  cursor: pointer;
  list-style: none;
  font-weight: 850;
  font-size: var(--text-small);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "";
  position: absolute;
  right: 18px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(-45deg);
  transition: transform .2s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.58;
}

.about {
  padding-top: 18px;
}

.about-card {
  grid-template-columns: 1fr 1.12fr;
  align-items: stretch;
  padding: clamp(30px, 4vw, 44px);
}

.about-card > * {
  min-width: 0;
}

.about-main h2 {
  max-width: 600px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.08;
}

.about-main p {
  max-width: 620px;
  margin: 20px 0 22px;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.62;
}

.about-main h3,
.about-proof h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 1.05rem;
}

.about-main ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #274a70;
  font-weight: 750;
  font-size: var(--text-small);
}

.about-main li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.about-main svg {
  width: 17px;
  height: 17px;
  color: var(--teal);
}

.about-proof {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-top: clamp(18px, 2vw, 24px);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.proof-grid article {
  min-height: 100px;
  display: grid;
  align-content: center;
  text-align: center;
}

.proof-grid strong {
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1;
}

.proof-grid span {
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.28;
}

.outcomes-graphic {
  --pipeline-center: 112px;
  --pipeline-gap: 18px;
  position: relative;
  flex: 1;
  min-height: 315px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 8% 8%, rgba(0, 124, 138, .13), transparent 26%),
    radial-gradient(circle at 92% 12%, rgba(255, 107, 44, .14), transparent 24%),
    linear-gradient(145deg, #f7fbfc 0%, #ffffff 60%, #eef7f8 100%);
  box-shadow: 0 10px 30px rgba(0, 43, 92, .08), inset 0 1px 0 rgba(255, 255, 255, .9);
}

.outcomes-graphic::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 31px, rgba(0, 43, 92, .06) 32px),
    linear-gradient(0deg, transparent 0 31px, rgba(0, 43, 92, .06) 32px);
  background-size: 32px 32px;
  opacity: .42;
}

.outcomes-graphic::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(var(--pipeline-center) + (var(--pipeline-gap) * 2) - 14px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 124, 138, .45), transparent);
  transform: translate(-50%, -50%);
}

.pipeline-board {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--pipeline-center) minmax(0, 1fr);
  align-items: center;
  gap: var(--pipeline-gap);
  height: 100%;
  min-height: 315px;
  padding: 34px;
}

.pipeline-stack {
  position: relative;
  display: grid;
  gap: 14px;
  z-index: 4;
}

.workflow-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  color: #244767;
  border: 1px solid var(--glass-border);
  border-radius: 7px;
  background: var(--glass-bg-strong);
  box-shadow: 0 10px 24px rgba(0, 43, 92, .09), inset 0 1px 0 rgba(255, 255, 255, .9);
  font-size: .88rem;
  font-weight: 850;
  animation: workflowLift 5s ease-in-out infinite;
}

.workflow-chip:nth-child(2) {
  animation-delay: -1.4s;
}

.workflow-chip:nth-child(3) {
  animation-delay: -2.7s;
}

.workflow-chip svg {
  width: 19px;
  height: 19px;
  color: var(--teal);
}

.workflow-chip.complete {
  color: var(--navy);
  border-color: rgba(0, 124, 138, .2);
}

.workflow-chip.complete svg {
  color: var(--teal);
  stroke-width: 2.5;
}

.pipeline-center {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 210px;
  z-index: 2;
}

.center-orb {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  color: #fff;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, .38), transparent 28%),
    linear-gradient(145deg, var(--teal), var(--navy));
  box-shadow: 0 0 0 14px rgba(0, 124, 138, .08), 0 16px 32px rgba(0, 43, 92, .18);
  animation: outcomePulse 3s ease-in-out infinite;
}

.center-orb svg {
  width: 34px;
  height: 34px;
}

.flow-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(var(--pipeline-center) + (var(--pipeline-gap) * 2) - 14px);
  height: 2px;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 124, 138, .12), rgba(0, 124, 138, .7), rgba(0, 124, 138, .12));
  transform: translate(-50%, -50%);
}

.flow-line i {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(255, 107, 44, .14);
  transform: translate(-50%, -50%);
  animation: flowAcross 2.8s ease-in-out infinite;
}

.outcome-bars {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 28px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  height: 82px;
  opacity: .5;
}

.outcome-bars span {
  width: 13%;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, rgba(0, 140, 149, .64), rgba(0, 43, 92, .12));
  transform-origin: bottom;
  animation: barRise 4.5s ease-in-out infinite;
}

.outcome-bars span:nth-child(1) { height: 34%; }
.outcome-bars span:nth-child(2) { height: 48%; animation-delay: -.8s; }
.outcome-bars span:nth-child(3) { height: 62%; animation-delay: -1.6s; }
.outcome-bars span:nth-child(4) { height: 76%; animation-delay: -2.4s; }
.outcome-bars span:nth-child(5) { height: 92%; animation-delay: -3.2s; }

.site-footer {
  color: rgba(255, 255, 255, .82);
  background:
    radial-gradient(circle at 92% 0%, rgba(0, 140, 149, .24), transparent 28%),
    linear-gradient(135deg, #002654, #001a3c);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.75fr repeat(4, 1fr);
  gap: 48px;
  padding: 44px 0 36px;
}

.footer-logo {
  width: 164px;
  height: auto;
  object-fit: contain;
}

.footer-brand p {
  max-width: 270px;
  margin: 18px 0 16px;
  color: rgba(255, 255, 255, .86);
  font-size: .96rem;
  line-height: 1.55;
}

.footer-address {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .76);
  font-style: normal;
  font-size: .9rem;
  line-height: 1.5;
}

.footer-email {
  color: rgba(255, 255, 255, .86);
  font-size: .9rem;
  font-weight: 750;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-col h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: .95rem;
}

.footer-col a {
  color: rgba(255, 255, 255, .72);
  font-size: .92rem;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .62);
  font-size: .78rem;
}

.footer-bottom a {
  color: inherit;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
}

.lead-modal.is-open,
.lead-modal:target {
  display: grid;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 25, 56, .58);
  backdrop-filter: blur(8px);
}

.lead-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 43, 92, .28);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--soft);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.lead-modal-panel h2 {
  max-width: 390px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  line-height: 1.05;
}

.modal-intro {
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: var(--text-compact);
}

.lead-form {
  display: grid;
  gap: 10px;
}

.lead-form label {
  color: var(--navy);
  font-size: .88rem;
  font-weight: 850;
}

.lead-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid var(--glass-border);
  border-radius: 5px;
  background: #fff;
}

.lead-form input:focus {
  outline: 3px solid rgba(0, 124, 138, .16);
  border-color: var(--teal);
}

.lead-form .btn {
  width: 100%;
  margin-top: 8px;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
}

.form-status {
  min-height: 1.2em;
  color: var(--teal);
  font-weight: 800;
}

.legal-main {
  padding: 72px 0;
}

.legal-card {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 48px rgba(0, 43, 92, .11), var(--glass-highlight);
}

.legal-card h1 {
  max-width: 780px;
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: var(--text-small);
}

.legal-card h2 {
  margin: 34px 0 10px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.2;
}

.legal-card h3 {
  margin: 22px 0 8px;
  color: var(--navy);
  font-size: 1.05rem;
}

.legal-card p,
.legal-card li {
  color: #314f70;
  font-size: var(--text-compact);
  line-height: 1.68;
}

.legal-card ul {
  margin: 8px 0 18px;
  padding-left: 22px;
}

.legal-card address {
  color: #314f70;
  font-style: normal;
  line-height: 1.68;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -12px; }
}

@keyframes pulse {
  0%, 100% {
    box-shadow:
      0 0 0 22px rgba(0, 124, 138, .13),
      0 0 0 44px rgba(0, 43, 92, .08),
      inset 0 0 0 1px rgba(255, 255, 255, .22),
      0 22px 44px rgba(0, 43, 92, .32);
  }
  50% {
    box-shadow:
      0 0 0 28px rgba(0, 124, 138, .16),
      0 0 0 54px rgba(0, 43, 92, .1),
      inset 0 0 0 1px rgba(255, 255, 255, .24),
      0 22px 44px rgba(0, 43, 92, .32);
  }
}

@keyframes drift {
  to { background-position: 80px 54px; }
}

@keyframes orbit {
  from { transform: rotate(0deg) translateX(220px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(220px) rotate(-360deg); }
}

@keyframes workflowLift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

@keyframes outcomePulse {
  0%, 100% {
    box-shadow: 0 0 0 14px rgba(0, 124, 138, .08), 0 16px 32px rgba(0, 43, 92, .18);
  }
  50% {
    box-shadow: 0 0 0 22px rgba(0, 124, 138, .12), 0 16px 32px rgba(0, 43, 92, .18);
  }
}

@keyframes flowAcross {
  0% { left: 5%; opacity: 0; }
  15%, 85% { opacity: 1; }
  100% { left: 95%; opacity: 0; }
}

@keyframes barRise {
  0%, 100% { transform: scaleY(.8); opacity: .55; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 740px;
    width: 100%;
    margin-inline: auto;
  }

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

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .section {
    padding: 56px 0;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

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

  .main-nav,
  .header-cta {
    display: none;
  }

  .site-header.menu-active .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-header.menu-active .main-nav a {
    padding: 14px 12px;
    border-radius: 5px;
  }

  .site-header.menu-active .main-nav a:hover {
    background: var(--soft);
  }

  .site-header.menu-active .main-nav a::after {
    display: none;
  }

  .site-header.menu-active .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-active .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-active .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .two-col,
  .serve-grid,
  .ops-card,
  .about-card {
    grid-template-columns: 1fr;
  }

  .about-proof {
    padding-top: 0;
  }

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

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar article + article::before {
    display: none;
  }

  .steps,
  .mini-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps::before,
  .steps article::after,
  .mini-steps::before {
    display: none;
  }

  .implementation {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .feature-row,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .serve-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-banner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 28px;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .brand-logo {
    width: 185px;
  }

  .footer-logo {
    width: 142px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-grid {
    gap: 24px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.7rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .button-row,
  .button-row.center {
    align-items: stretch;
    justify-content: stretch;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    white-space: normal;
    text-align: center;
  }

  .hero-visual {
    min-height: 760px;
  }

  .hero-visual::before,
  .hero-visual::after {
    left: 50%;
    right: auto;
    width: 2px;
    height: 34px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent, rgba(0, 124, 138, .45), transparent);
  }

  .hero-visual::before {
    top: 292px;
  }

  .hero-visual::after {
    top: auto;
    bottom: 292px;
  }

  .flow-card {
    left: 50%;
    right: auto;
    width: min(100%, 272px);
    min-height: auto;
    transform: translateX(-50%);
  }

  .queue-card {
    top: 0;
  }

  .completed-card {
    top: auto;
    bottom: 0;
  }

  .ai-orb {
    width: 136px;
    height: 136px;
  }

  .stats-bar,
  .workflow-grid,
  .steps,
  .mini-steps,
  .serve-list,
  .feature-row,
  .proof-grid,
  .integration-grid {
    grid-template-columns: 1fr;
  }

  .about .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .outcomes-graphic {
    --pipeline-center: 58px;
    --pipeline-gap: 8px;
    min-height: 260px;
    margin-top: 24px;
  }

  .pipeline-board {
    grid-template-columns: minmax(0, 1fr) var(--pipeline-center) minmax(0, 1fr);
    gap: var(--pipeline-gap);
    min-height: 260px;
    padding: 18px;
  }

  .workflow-chip {
    min-height: 38px;
    padding: 0 9px;
    gap: 7px;
    font-size: .68rem;
  }

  .workflow-chip svg {
    width: 16px;
    height: 16px;
  }

  .center-orb {
    width: 56px;
    height: 56px;
    box-shadow: 0 0 0 10px rgba(0, 124, 138, .08), 0 12px 24px rgba(0, 43, 92, .14);
  }

  .center-orb svg {
    width: 25px;
    height: 25px;
  }

  .flow-line {
    width: calc(var(--pipeline-center) + (var(--pipeline-gap) * 2) - 14px);
  }

  .outcome-bars {
    left: 18px;
    right: 18px;
    bottom: 18px;
    height: 58px;
  }

  .section-copy h2,
  .center-heading h2,
  .teal-card h2,
  .cta-banner h2,
  .about-main h2 {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  .serve .section-copy h2 {
    font-size: clamp(2.25rem, calc(9vw + 4px), 3.15rem);
  }

  .teal-card,
  .panel,
  .about-card,
  .integrations,
  .implementation {
    padding: 24px;
  }

  .wide-strip {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 18px;
  }

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

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

/* Value-Based Care Automation service page */
.service-page {
  background: #fff;
}

.service-page .main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* Scoped Products navigation. Only the new menu uses these selectors. */
.products-dropdown {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-self: stretch;
  align-items: center;
}

.products-trigger {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 70px;
  margin: 0;
  padding: 0;
  color: inherit;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font: inherit;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.products-trigger::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .24s ease;
}

.products-trigger:hover::after,
.products-trigger:focus-visible::after,
.products-dropdown.is-current .products-trigger::after,
.products-dropdown.is-open .products-trigger::after {
  transform: scaleX(1);
}

.products-chevron {
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.products-dropdown.is-open .products-chevron {
  transform: rotate(225deg) translate(-2px, -2px);
}

.products-dropdown-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 80;
  display: grid;
  width: max-content;
  min-width: 292px;
  max-width: min(360px, calc(100vw - 32px));
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  visibility: hidden;
}

.products-dropdown-menu[hidden] {
  display: none !important;
}

.products-dropdown.is-open .products-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
}

.products-dropdown-menu li {
  margin: 0;
}

.main-nav .products-dropdown-menu a,
.products-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--ink);
  border-radius: 4px;
  font-size: .88rem;
  line-height: 1.35;
  white-space: normal;
}

.main-nav .products-dropdown-menu a::before,
.main-nav .products-dropdown-menu a::after,
.products-dropdown-menu a::before,
.products-dropdown-menu a::after {
  display: none !important;
  content: none !important;
}

.products-dropdown-menu a:hover,
.products-dropdown-menu a:focus-visible {
  background: var(--soft);
}

.products-trigger:focus-visible,
.products-dropdown-menu a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

@media (max-width: 920px) {
  .site-header.menu-active .products-dropdown {
    display: block;
    width: 100%;
  }

  .site-header.menu-active .products-trigger {
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-height: 0;
    padding: 14px 12px;
    border-radius: 5px;
  }

  .site-header.menu-active .products-trigger::after {
    display: none;
  }

  .site-header.menu-active .products-dropdown-menu {
    position: static;
    display: none;
    width: auto;
    margin: 0 0 8px;
    border-radius: 5px;
    box-shadow: none;
    transform: none;
  }

  .site-header.menu-active .products-dropdown.is-open .products-dropdown-menu {
    display: grid;
  }
}

.service-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 64px;
  border-bottom: 1px solid var(--line);
  background: #f7fbfc;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .65;
  background-image: radial-gradient(rgba(0, 124, 138, .18) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, transparent 0, #000 28%, #000 76%, transparent 100%);
}

.service-hero-grid,
.service-two-col,
.service-integration-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, .98fr);
  align-items: center;
  gap: clamp(46px, 7vw, 98px);
}

.service-hero-copy h1 {
  max-width: 690px;
  font-size: clamp(3.1rem, 5vw, 5.25rem);
  line-height: .99;
}

.service-hero-copy h1 span,
.service-section-copy h2 span {
  display: block;
  color: var(--teal);
  font-style: italic;
}

.service-hero-text {
  max-width: 650px;
  margin: 26px 0 30px;
  color: #345572;
  font-size: clamp(1.03rem, 1vw + .72rem, 1.18rem);
  line-height: 1.62;
}

.service-system-map {
  position: relative;
  min-height: 430px;
  isolation: isolate;
}

.service-system-map::before {
  content: "";
  position: absolute;
  inset: 42px 10px 16px;
  z-index: -2;
  border: 1px solid rgba(0, 124, 138, .17);
  border-radius: 50%;
  background: rgba(255, 255, 255, .42);
}

.service-system-map::after {
  content: "";
  position: absolute;
  inset: 78px 48px 52px;
  z-index: -1;
  border: 1px dashed rgba(0, 124, 138, .34);
  border-radius: 50%;
}

.service-map-caption {
  position: absolute;
  top: 0;
  left: 50%;
  color: #55758e;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: 0;
  transform: translateX(-50%);
  white-space: nowrap;
}

.service-map-line {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 53%;
  width: 1px;
  height: 42%;
  transform-origin: top;
  background: linear-gradient(180deg, rgba(0, 124, 138, .62), rgba(0, 124, 138, .08));
}

.service-map-line::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 107, 44, .12);
  transform: translateX(-50%);
}

.line-one { transform: rotate(-67deg); }
.line-two { transform: rotate(-32deg); }
.line-three { transform: rotate(22deg); }
.line-four { transform: rotate(57deg); }
.line-five { transform: rotate(134deg); }

.service-map-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  color: #315372;
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 24px rgba(0, 43, 92, .1), inset 0 1px 0 rgba(255, 255, 255, .94);
  font-size: .82rem;
  font-weight: 850;
  white-space: nowrap;
}

.service-map-node svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
}

.node-emr { top: 74px; left: 5%; }
.node-population { top: 30%; left: 0; }
.node-portal { top: 65%; left: 7%; }
.node-phone { top: 74px; right: 3%; }
.node-calendar { top: 64%; right: 2%; }

.service-engine {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .44);
  border-radius: 50%;
  background: #003d73;
  box-shadow: 0 0 0 16px rgba(0, 124, 138, .1), 0 18px 40px rgba(0, 43, 92, .26);
  transform: translate(-50%, -50%);
  text-align: center;
}

.service-engine svg {
  width: 40px;
  height: 40px;
  margin-bottom: 2px;
}

.service-engine strong,
.service-engine span {
  display: block;
  line-height: 1.15;
}

.service-engine strong {
  font-size: .92rem;
}

.service-engine span {
  color: rgba(255, 255, 255, .75);
  font-size: .76rem;
}

.service-map-result {
  position: absolute;
  right: 13%;
  bottom: 5px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: .88rem;
  font-weight: 900;
}

.service-map-result svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

.service-outcome-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #002b5c;
}

.service-outcome-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: radial-gradient(rgba(255, 255, 255, .8) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, transparent 0, #000 16%, #000 84%, transparent 100%);
}

.service-outcome-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 28px;
  padding: 32px 0;
}

.service-outcome-grid > p {
  max-width: 300px;
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 850;
  line-height: 1.07;
}

.service-outcome-grid > p strong {
  display: block;
  color: #78d4d7;
}

.service-outcome-grid > div {
  display: grid;
  align-content: center;
  gap: 7px;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, .28);
}

.service-outcome-grid strong {
  font-size: .96rem;
  line-height: 1.22;
}

.service-outcome-grid span {
  color: rgba(255, 255, 255, .74);
  font-size: .83rem;
  line-height: 1.42;
}

.service-why {
  background: #fff;
}

.service-section-copy h2 {
  max-width: 620px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.25rem, 4vw, 3.7rem);
  line-height: 1.03;
}

.service-section-copy > p:not(.section-label) {
  max-width: 600px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.62;
}

.service-reasons {
  display: grid;
  border-top: 1px solid var(--line);
}

.service-reasons article {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.service-reasons svg {
  width: 22px;
  height: 22px;
  margin-top: 3px;
  color: var(--orange);
}

.service-reasons p {
  margin: 0;
  color: #315372;
  font-size: var(--text-compact);
  font-weight: 700;
  line-height: 1.5;
}

.service-workflows {
  background: #f5fafb;
}

.service-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.service-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.35rem, 4vw, 3.75rem);
  line-height: 1.04;
}

.service-heading > p:not(.section-label) {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: var(--text-body);
}

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

.service-workflow-grid article {
  display: grid;
  align-content: start;
  min-height: 236px;
  padding: 25px 20px 22px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 24px rgba(0, 43, 92, .08), inset 0 1px 0 rgba(255, 255, 255, .92);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-workflow-grid article:hover {
  border-color: rgba(0, 124, 138, .42);
  box-shadow: var(--small-shadow);
  transform: translateY(-5px);
}

.service-workflow-grid svg {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: var(--teal);
}

.service-workflow-grid article:nth-child(2n) svg,
.service-workflow-grid article:nth-child(5n) svg {
  color: var(--orange);
}

.service-workflow-grid h3 {
  min-height: 42px;
  margin: 0 0 11px;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.15;
}

.service-workflow-grid p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.5;
}

.service-integrations {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.service-integration-copy h2 {
  max-width: 550px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.15rem, 3.6vw, 3.45rem);
  line-height: 1.06;
}

.service-integration-copy > p:not(.section-label) {
  max-width: 570px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.6;
}

.service-integration-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.service-integration-tags span,
.service-model-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #315372;
  border: 1px solid var(--glass-border);
  border-radius: 5px;
  background: var(--glass-bg-strong);
  font-size: .82rem;
  font-weight: 800;
}

.service-stack-flow {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) 46px minmax(132px, 1.15fr) 46px minmax(110px, 1fr);
  align-items: center;
}

.service-stack-inputs,
.service-stack-output,
.service-stack-core {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 152px;
  padding: 18px 12px;
  text-align: center;
}

.service-stack-inputs,
.service-stack-output {
  color: #315372;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 43, 92, .08);
}

.service-stack-inputs span,
.service-stack-output span {
  margin-bottom: 8px;
  color: var(--orange);
  font-size: .75rem;
  font-weight: 900;
}

.service-stack-inputs strong,
.service-stack-output strong {
  color: var(--navy);
  font-size: .96rem;
  line-height: 1.18;
}

.service-stack-core {
  position: relative;
  color: #fff;
  border-radius: 50%;
  background: #007c8a;
  box-shadow: 0 0 0 12px rgba(0, 124, 138, .1), 0 14px 30px rgba(0, 43, 92, .16);
  aspect-ratio: 1;
}

.service-stack-core svg {
  width: 35px;
  height: 35px;
  margin-bottom: 7px;
}

.service-stack-core strong,
.service-stack-core span {
  display: block;
  line-height: 1.15;
}

.service-stack-core strong {
  font-size: .9rem;
}

.service-stack-core span {
  color: rgba(255, 255, 255, .74);
  font-size: .74rem;
}

.service-stack-arrow {
  position: relative;
  height: 2px;
  background: #87b8c4;
}

.service-stack-arrow i {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--teal);
  border-right: 2px solid var(--teal);
  transform: translateY(-50%) rotate(45deg);
}

.service-models {
  background: #f7fbfc;
}

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

.service-model-list span {
  min-height: 48px;
  padding: 0 15px;
  font-size: .9rem;
}

.service-model-list span:nth-child(3n + 2) {
  color: #9f5e00;
  border-color: rgba(243, 146, 33, .32);
}

.service-cta-section {
  padding: 22px 0 64px;
  background: #f7fbfc;
}

.service-cta-banner {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  overflow: hidden;
  min-height: 252px;
  padding: 38px clamp(30px, 6vw, 92px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  background: #002b5c;
  box-shadow: var(--shadow);
}

.service-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .36;
  background-image: radial-gradient(rgba(255, 255, 255, .78) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, transparent 0, #000 38%, #000 100%);
  pointer-events: none;
}

.service-cta-banner > * {
  position: relative;
  z-index: 1;
}

.service-cta-mark {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(255, 255, 255, .05);
}

.service-cta-mark svg {
  width: 48px;
  height: 48px;
}

.service-cta-banner h2 {
  max-width: 700px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 1.04;
}

.service-cta-banner p:not(.section-label) {
  max-width: 620px;
  margin: 12px 0 23px;
  color: rgba(255, 255, 255, .82);
  font-size: var(--text-body);
}

.service-cta-banner .section-label {
  color: #ff9a6d;
}

@media (max-width: 1120px) {
  .service-hero-grid,
  .service-integration-layout {
    grid-template-columns: 1fr;
  }

  .service-hero-copy {
    max-width: 760px;
  }

  .service-system-map {
    max-width: 680px;
    width: 100%;
    margin-inline: auto;
  }

  .service-workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .service-hero {
    padding: 62px 0 50px;
  }

  .service-two-col {
    grid-template-columns: 1fr;
  }

  .service-outcome-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-outcome-grid > p {
    grid-column: 1 / -1;
    max-width: 540px;
  }

  .service-cta-banner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .service-cta-banner .button-row {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .service-hero {
    padding: 52px 0 42px;
  }

  .service-hero-copy h1 {
    font-size: clamp(2.65rem, 12vw, 3.55rem);
  }

  .service-system-map {
    min-height: 390px;
    transform: scale(.88);
    transform-origin: top center;
    margin-bottom: -42px;
  }

  .service-map-node {
    padding: 0 9px;
    font-size: .72rem;
  }

  .node-emr { left: 0; }
  .node-population { left: -2%; }
  .node-portal { left: 1%; }
  .node-phone { right: -2%; }
  .node-calendar { right: -1%; }

  .service-outcome-grid,
  .service-workflow-grid,
  .service-model-list {
    grid-template-columns: 1fr;
  }

  .service-outcome-grid {
    gap: 0;
    padding: 28px 0;
  }

  .service-outcome-grid > p {
    margin-bottom: 18px;
  }

  .service-outcome-grid > div {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .24);
    border-left: 0;
  }

  .service-heading {
    margin-bottom: 28px;
  }

  .service-workflow-grid article {
    min-height: 0;
  }

  .service-stack-flow {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 300px;
    margin-inline: auto;
  }

  .service-stack-arrow {
    width: 2px;
    height: 28px;
    margin: 0 auto;
  }

  .service-stack-arrow i {
    top: auto;
    right: auto;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .service-stack-core {
    width: 156px;
    margin-inline: auto;
  }

  .service-cta-section {
    padding-bottom: 44px;
  }

  .service-cta-banner {
    min-height: auto;
    padding: 32px 24px;
  }

  .service-cta-banner .button-row {
    align-items: stretch;
    justify-content: stretch;
  }
}
