:root {
  --navy: #07345f;
  --navy-deep: #042747;
  --cyan: #06e0f8;
  --cyan-dark: #06e0f8;
  --ink: #102f4e;
  --muted: #5d7388;
  --line: #dcecf3;
  --soft: #f7fbfd;
  --white: #ffffff;
  --coral: #ff6f59;
  --green: #45b886;
  --shadow: 0 20px 60px rgba(7, 52, 95, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(1190px, calc(100% - 40px));
  min-height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 210px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 32px);
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
}

.primary-nav > a:not(.nav-button) {
  padding: 10px 0;
  white-space: nowrap;
}

.primary-nav > a:not(.nav-button):hover {
  color: var(--cyan);
}

.primary-nav a[aria-current="page"] {
  color: var(--cyan);
}

.primary-nav a.nav-button-solid[aria-current="page"] {
  color: var(--cyan);
  background: var(--white);
  box-shadow: inset 0 0 0 2px var(--cyan);
}

.primary-nav a.nav-button-outline[aria-current="page"] {
  color: var(--cyan);
  background: var(--white);
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  border: 1.5px solid var(--cyan);
  font-weight: 600;
  border-radius: 999px;
  white-space: nowrap;
}

.nav-button-solid {
  color: var(--navy);
  background: var(--cyan);
}

.nav-button-outline {
  color: var(--cyan);
  background: var(--white);
}

.breadcrumbs {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  padding: 12px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li + li::before {
  color: rgba(93, 115, 136, 0.7);
  content: "/";
}

.breadcrumbs a {
  color: var(--navy);
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--cyan);
}

.breadcrumbs [aria-current="page"] {
  color: var(--muted);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--navy);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.menu-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::before {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span::after {
  transform: translateY(-2px) rotate(-90deg);
}

.hero {
  padding: 24px 0 32px;
  overflow: hidden;
}

.hero-inner {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
  display: grid;
  justify-items: center;
}

.hero-copy {
  margin: 0 auto 24px;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(44px, 5.8vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 600;
}

.hero p {
  margin: -2px 0 0;
  color: var(--cyan);
  font-size: clamp(32px, 4.4vw, 55px);
  line-height: 1;
  font-weight: 500;
}

.hero-illustration {
  width: min(100%, 1030px);
  margin: 0 auto;
  justify-self: center;
  filter: drop-shadow(0 18px 42px rgba(7, 52, 95, 0.05));
}

.section-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.provider-sampler {
  padding: 24px 0 100px;
}

.provider-heading {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 42px;
  color: var(--navy);
}

.provider-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 600;
}

.provider-heading p {
  margin: 0;
  color: var(--cyan);
  font-family: "Kalam", "Comic Sans MS", "Segoe Print", cursive;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  line-height: 1;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 70px);
  align-items: end;
}

.provider-card {
  display: grid;
  grid-template-rows: 92px 1.1em;
  justify-items: center;
  align-content: end;
  align-items: end;
  gap: 12px;
  min-height: 134px;
  color: var(--navy);
  text-align: center;
  font-size: clamp(24px, 2.8vw, 31px);
  line-height: 1.05;
  font-weight: 600;
}

.provider-card img {
  width: 90px;
  height: 82px;
  object-fit: contain;
  object-position: center bottom;
}

.provider-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1.1em;
  white-space: nowrap;
}

.founder-section {
  padding: 28px 0 92px;
  background: var(--white);
}

.founder-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.founder-photo {
  overflow: hidden;
  width: 300px;
  aspect-ratio: 1;
  border: 6px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
  background: var(--white);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-copy {
  display: grid;
  gap: 16px;
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan-dark);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(210px, 1.1fr) minmax(0, 2fr);
  gap: 32px;
  align-items: start;
}

.footer {
  padding: 35px 0 38px;
  background: var(--navy);
  border-top: none;
}

.footer-brand {
  display: grid;
  gap: 7px;
}

.footer-brand img {
  width: clamp(170px, 18vw, 220px);
  height: auto;
}

.footer-copy {
  max-width: 352px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.5;
}

.footer-copy strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.3;
}

.footer-legal {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.45;
}

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

.footer-group {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-heading {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.64);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 7px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--cyan);
}

.not-found-page {
  background: var(--white);
}

.not-found-panel {
  display: grid;
  justify-items: center;
  gap: 18px;
  min-height: 520px;
  padding: clamp(72px, 10vw, 120px) 0;
  text-align: center;
}

.not-found-code {
  margin: 0;
  color: var(--cyan);
  font-size: clamp(74px, 13vw, 144px);
  line-height: 0.86;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.not-found-panel h1 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.not-found-panel > p:not(.not-found-code) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.resource-page {
  background: var(--white);
}

.resource-hub {
  padding: 58px 0 62px;
  color: var(--navy);
  background: var(--white);
}

.resource-hub-inner {
  display: grid;
  gap: 0;
}

.resource-hub-copy {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.resource-kicker,
.resource-gate-copy span {
  margin: 0;
  color: var(--cyan);
  font-family: "Kalam", cursive;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.resource-hub h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.04;
  font-weight: 500;
}

.resource-hub-copy p:not(.resource-kicker) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

.resource-hub-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  color: var(--navy);
  background: var(--cyan);
  border: 1px solid var(--cyan);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

.resource-hub-button:hover,
.resource-hub-button:focus-visible {
  background: var(--white);
}

.resource-library {
  padding: 58px 0 54px;
  background: var(--white);
}

.resource-library h2 {
  margin: 0 0 42px;
  color: #1b1c1f;
  text-align: center;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.14;
  font-weight: 500;
}

.resource-library-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.resource-filters {
  display: grid;
  gap: 22px;
  color: #2a2d32;
  font-size: 14px;
}

.resource-filters p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.resource-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #b7c4cf;
  border-radius: 6px;
  font: inherit;
  font-size: 14px;
}

.resource-search input:focus {
  border-color: var(--cyan);
  outline: 3px solid rgba(6, 224, 248, 0.2);
}

.resource-setting-select {
  display: grid;
  gap: 8px;
}

.resource-setting-select span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}

.resource-setting-select select {
  width: 100%;
  min-height: 46px;
  padding: 0 38px 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #b7c4cf;
  border-radius: 6px;
  font: inherit;
  font-size: 14px;
  appearance: auto;
}

.resource-setting-select select:focus {
  border-color: var(--cyan);
  outline: 3px solid rgba(6, 224, 248, 0.2);
}

.resource-filter-group {
  display: grid;
  gap: 4px;
}

.resource-filter-group h3 {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}

.resource-filter-group button {
  min-height: 34px;
  padding: 0 10px;
  color: #293241;
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 14px;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.resource-filter-group button:hover,
.resource-filter-group button:focus-visible,
.resource-filter-group button.is-active {
  color: var(--navy);
  background: rgba(6, 224, 248, 0.12);
}

.resource-note {
  max-width: 220px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.resource-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 42px;
  row-gap: 0;
}

.resource-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  min-height: 72px;
  padding: 16px 0;
  color: #262b32;
  background: transparent;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.resource-card:hover,
.resource-card:focus-visible {
  color: var(--navy);
  border-bottom-color: var(--cyan);
  box-shadow: none;
}

.resource-card-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  align-self: start;
}

.resource-card strong {
  display: block;
  color: #22272f;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
}

.resource-empty {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.resource-email-gate {
  padding: 0 0 54px;
  background: var(--white);
}

.legal-page {
  background: var(--white);
}

.legal-hero {
  padding: 64px 0 44px;
  color: var(--navy);
  background: var(--white);
}

.legal-hero-inner {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.legal-kicker {
  margin: 0;
  color: var(--cyan-dark);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(40px, 5vw, 66px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: 650;
}

.legal-hero p:not(.legal-kicker) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

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

.legal-document {
  display: grid;
  gap: 18px;
  max-width: 860px;
}

.legal-panel {
  padding: 24px 0 2px;
  border-top: 1px solid var(--line);
}

.legal-panel:first-child {
  padding-top: 22px;
}

.legal-panel h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(24px, 2.3vw, 32px);
  line-height: 1.12;
  font-weight: 600;
}

.legal-panel p,
.legal-panel li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.legal-panel p {
  margin: 0;
}

.legal-panel p + p {
  margin-top: 12px;
}

.legal-panel ul {
  display: grid;
  gap: 6px;
  margin: 10px 0 0 22px;
  padding: 0;
}

.legal-panel a {
  color: var(--navy);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(6, 224, 248, 0.55);
  text-underline-offset: 3px;
}

.legal-note {
  padding: 18px 20px;
  border: 1px solid rgba(6, 224, 248, 0.28);
  border-radius: var(--radius);
  background: #f3fdff;
}

.legal-note strong {
  color: var(--navy);
}

.resource-gate-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(300px, 1fr);
  gap: 18px 28px;
  align-items: start;
  padding: 26px 0 0;
  background: transparent;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.resource-gate-copy {
  display: grid;
  gap: 7px;
}

.resource-gate-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.12;
  font-weight: 500;
}

.resource-gate-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
}

.resource-gate-fields {
  display: grid;
  gap: 12px;
}

.resource-gate-fields label {
  display: grid;
  gap: 7px;
}

.resource-gate-fields span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
}

.resource-gate-fields input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-size: 15px;
}

.resource-gate-fields input:focus {
  border-color: var(--cyan);
  outline: 3px solid rgba(6, 224, 248, 0.2);
}

.resource-gate-fields input.is-invalid {
  border-color: #ff6b61;
}

.resource-privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.resource-gate-panel .resource-gate-fields,
.resource-gate-panel .turnstile-wrap,
.resource-gate-panel .nav-button,
.resource-gate-panel .form-status {
  grid-column: 2;
}

.resource-gate-panel .turnstile-wrap {
  width: 100%;
}

.resource-gate-panel .form-status.is-success {
  color: var(--green);
}

.care-page {
  background: var(--white);
}

.care-hero {
  position: relative;
  display: block;
  min-height: 440px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.care-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 18px;
  width: min(760px, calc(100% - 72px));
  min-height: 440px;
  margin-left: max(36px, calc((100vw - 1190px) / 2 + 36px));
  margin-right: auto;
  padding: 54px 0;
}

.care-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 4.7vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 600;
  white-space: nowrap;
}

.care-hero-subtitle {
  margin: 0 0 0 clamp(22px, 3vw, 52px);
  color: var(--cyan);
  font-size: clamp(27px, 3.3vw, 39px);
  line-height: 1.1;
  font-weight: 500;
}

.care-hero-text {
  max-width: 620px;
  margin: 26px 0 0 clamp(22px, 3vw, 52px);
  color: var(--navy);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.35;
  font-weight: 500;
}

.care-hero-visual {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: min(58vw, 760px);
  min-height: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), #f8fbfd 18%, #ffffff 100%);
  overflow: hidden;
  pointer-events: none;
}

.care-hero-image {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center center;
}

.care-status-card {
  position: absolute;
  top: 28px;
  left: 39%;
  z-index: 2;
  display: grid;
  grid-template-columns: 46px auto;
  gap: 12px;
  align-items: center;
  min-width: 214px;
  padding: 14px 18px;
  color: var(--navy);
  background: var(--white);
  border: 2px solid #6f8ec5;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(7, 52, 95, 0.08);
  text-transform: uppercase;
}

.care-status-card::after {
  position: absolute;
  bottom: -47px;
  left: 50%;
  width: 2px;
  height: 46px;
  background: #6f8ec5;
  content: "";
}

.care-status-card::before {
  position: absolute;
  bottom: -55px;
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  background: var(--navy);
  border-radius: 50%;
  content: "";
}

.care-status-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

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

.care-status-card strong {
  font-size: 19px;
  line-height: 1.05;
}

.care-status-card span {
  margin-top: 3px;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
}

.sketch-scene {
  position: absolute;
  inset: auto 0 0;
  height: 310px;
  color: #6f8ec5;
  opacity: 0.85;
}

.sketch-hills,
.sketch-hills::before {
  position: absolute;
  right: -20px;
  left: 0;
  height: 95px;
  border-top: 2px solid currentColor;
  border-radius: 50% 50% 0 0;
  content: "";
}

.sketch-hills {
  top: 46px;
  transform: skewY(-5deg);
}

.sketch-hills::before {
  top: 32px;
  opacity: 0.42;
}

.sketch-house {
  position: absolute;
  right: 0;
  bottom: 34px;
  width: 330px;
  height: 178px;
}

.sketch-house .roof {
  position: absolute;
  top: 0;
  left: 28px;
  width: 248px;
  height: 72px;
  border: 3px solid currentColor;
  border-bottom: 0;
  transform: skewX(-25deg);
}

.sketch-house .body {
  position: absolute;
  right: 6px;
  bottom: 0;
  width: 270px;
  height: 116px;
  border: 3px solid currentColor;
  background: rgba(255, 255, 255, 0.45);
}

.sketch-house .door,
.sketch-house .window {
  position: absolute;
  bottom: 18px;
  border: 2px solid currentColor;
}

.sketch-house .door {
  right: 42px;
  width: 48px;
  height: 74px;
}

.sketch-house .window {
  width: 56px;
  height: 42px;
}

.window-left {
  right: 116px;
}

.window-right {
  right: 188px;
}

.sketch-car {
  position: absolute;
  left: 38px;
  bottom: 54px;
  width: 210px;
  height: 78px;
  border: 3px solid currentColor;
  border-radius: 70px 80px 28px 28px;
}

.sketch-car::before,
.sketch-car::after {
  position: absolute;
  bottom: -15px;
  width: 34px;
  height: 34px;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.sketch-car::before {
  left: 34px;
}

.sketch-car::after {
  right: 30px;
}

.sketch-car span {
  position: absolute;
  top: 30px;
  left: 88px;
  width: 22px;
  height: 18px;
  border: 2px solid var(--cyan);
  border-radius: 50% 50% 55% 55%;
}

.sketch-person,
.sketch-person::before,
.sketch-person::after {
  position: absolute;
  border: 2px solid currentColor;
}

.sketch-person {
  bottom: 44px;
  width: 22px;
  height: 54px;
  border-radius: 15px;
}

.sketch-person::before {
  top: -22px;
  left: 1px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  content: "";
}

.sketch-person::after {
  right: -23px;
  top: 16px;
  width: 23px;
  height: 2px;
  background: currentColor;
  content: "";
}

.person-one {
  right: 150px;
}

.person-two {
  right: 100px;
}

.care-audience-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 42px);
  min-height: 56px;
  padding: 10px 20px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(7, 52, 95, 0.06);
  font-size: 16px;
  font-weight: 500;
}

.care-audience-strip span + span::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: clamp(18px, 4vw, 42px);
  vertical-align: 0.12em;
  background: var(--cyan);
  border-radius: 50%;
  content: "";
}

.care-work-section {
  padding: 48px 0 62px;
}

.care-work-section h2 {
  margin: 0 0 28px;
  color: var(--navy);
  text-align: center;
  font-size: clamp(28px, 3.5vw, 39px);
  line-height: 1.1;
  font-weight: 600;
}

.care-work-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(230px, 0.72fr) minmax(280px, 1fr);
  gap: 26px 38px;
  align-items: center;
}

.work-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.22;
  font-weight: 700;
}

.data-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.22;
  font-weight: 700;
}

.work-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
  font-weight: 600;
}

.data-card {
  padding: 16px 18px 18px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(7, 52, 95, 0.08);
}

.tab-row {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  margin-top: 14px;
  padding-bottom: 9px;
  color: #7d92aa;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.tab-row .is-active {
  position: relative;
  color: var(--cyan);
}

.tab-row .is-active::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
}

.tab-row .is-alert {
  color: var(--coral);
}

.data-card table {
  width: 100%;
  margin-top: 12px;
  border-collapse: collapse;
  color: #536a83;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 500;
}

.data-card th,
.data-card td {
  padding: 8px 6px;
  text-align: left;
  border-bottom: 1px solid #edf3f7;
}

.data-card th {
  color: #8ca0b3;
  font-size: 11px;
  font-weight: 500;
}

.data-card tr:last-child td {
  border-bottom: 0;
}

.status-badge {
  display: inline-flex;
  min-width: 70px;
  justify-content: center;
  padding: 4px 7px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

.is-overdue,
.is-action,
.number-alert {
  color: var(--coral);
}

.is-upcoming,
.is-open {
  color: #50a7dc;
}

.work-visual {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 178px;
  color: #6f8ec5;
}

.care-illustration {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  object-position: center;
}

.work-office {
  min-height: 190px;
}

.mini-office {
  position: absolute;
  right: 54px;
  bottom: 28px;
  width: 210px;
  height: 126px;
}

.office-roof {
  position: absolute;
  top: 0;
  left: 16px;
  width: 160px;
  height: 52px;
  border: 3px solid currentColor;
  border-bottom: 0;
  transform: skewX(23deg);
}

.office-body {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 180px;
  height: 82px;
  border: 3px solid currentColor;
  background: var(--white);
}

.office-door {
  position: absolute;
  right: 22px;
  bottom: 0;
  width: 34px;
  height: 55px;
  border: 2px solid currentColor;
}

.office-label {
  position: absolute;
  top: 52px;
  left: 56px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.mini-van {
  position: absolute;
  left: 22px;
  bottom: 35px;
  width: 135px;
  height: 58px;
  border: 3px solid currentColor;
  border-radius: 40px 50px 18px 18px;
}

.mini-van::before,
.mini-van::after {
  position: absolute;
  bottom: -12px;
  width: 24px;
  height: 24px;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.mini-van::before {
  left: 20px;
}

.mini-van::after {
  right: 20px;
}

.work-care,
.work-staff,
.work-documents {
  min-height: 190px;
}

.care-figure,
.staff-figure,
.desk-person {
  position: absolute;
  bottom: 30px;
  width: 62px;
  height: 104px;
  border: 3px solid currentColor;
  border-radius: 34px 34px 18px 18px;
}

.care-figure::before,
.staff-figure::before,
.desk-person::before {
  position: absolute;
  top: -42px;
  left: 10px;
  width: 38px;
  height: 38px;
  border: 3px solid currentColor;
  border-radius: 50%;
  content: "";
}

.care-figure::after,
.staff-figure::after {
  position: absolute;
  top: 36px;
  width: 72px;
  height: 3px;
  background: currentColor;
  content: "";
}

.figure-left {
  left: 92px;
}

.figure-left::after {
  right: -58px;
  transform: rotate(-12deg);
}

.figure-right {
  right: 64px;
  height: 82px;
}

.care-seat {
  position: absolute;
  right: 34px;
  bottom: 28px;
  width: 120px;
  height: 72px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 0 0 24px 24px;
}

.alert-mark {
  position: absolute;
  top: 18px;
  left: 62%;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--coral);
  border: 3px solid currentColor;
  border-radius: 8px;
  font-size: 37px;
  line-height: 1;
  font-weight: 700;
}

.staff-left {
  left: 82px;
}

.staff-right {
  left: 154px;
  height: 96px;
}

.staff-left::after {
  right: -62px;
}

.check-mark {
  position: absolute;
  top: 18px;
  right: 88px;
  width: 66px;
  height: 62px;
  border: 3px solid currentColor;
  border-radius: 8px;
}

.check-mark::after {
  position: absolute;
  left: 19px;
  top: 14px;
  width: 24px;
  height: 13px;
  border-left: 4px solid var(--cyan);
  border-bottom: 4px solid var(--cyan);
  transform: rotate(-45deg);
  content: "";
}

.document-icon {
  position: absolute;
  top: 10px;
  right: 96px;
  width: 58px;
  height: 70px;
  border: 3px solid currentColor;
  border-radius: 6px;
}

.document-icon::before,
.document-icon::after {
  position: absolute;
  left: 14px;
  width: 28px;
  height: 3px;
  background: currentColor;
  content: "";
}

.document-icon::before {
  top: 24px;
}

.document-icon::after {
  top: 38px;
}

.desk-person {
  left: 86px;
  bottom: 36px;
}

.desk-line {
  position: absolute;
  right: 58px;
  bottom: 40px;
  width: 250px;
  height: 3px;
  background: currentColor;
}

.care-cta {
  padding: 0 0 58px;
}

.care-cta-panel {
  display: grid;
  justify-items: center;
  gap: 24px;
  padding: 30px 26px 38px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  overflow: hidden;
}

.care-cta-panel h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 39px);
  line-height: 1.1;
  font-weight: 600;
  text-align: center;
}

.care-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.care-cta-actions .nav-button {
  min-width: 158px;
}

.care-cta-actions .nav-button-outline {
  background: var(--white);
}

.product-page {
  background: var(--white);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(450px, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  min-height: 590px;
  overflow: hidden;
  border-bottom: 0;
}

.product-hero-copy {
  display: grid;
  align-content: start;
  gap: 24px;
  min-height: 500px;
  padding: 54px 0 0 max(40px, calc((100vw - 1120px) / 2));
}

.product-hero h1 {
  margin: 0;
  color: var(--cyan);
  font-size: clamp(48px, 5vw, 60px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 600;
}

.product-hero p {
  max-width: 650px;
  margin: -2px 0 82px;
  color: var(--navy);
  font-size: clamp(34px, 3.6vw, 42px);
  line-height: 1.12;
  font-weight: 500;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.product-actions .nav-button {
  min-width: 148px;
}

.product-hero-art {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.product-hero-art img {
  width: 100%;
  min-width: 650px;
  height: 500px;
  object-fit: cover;
  object-position: left top;
  opacity: 0.94;
}

.product-dashboard-card {
  position: absolute;
  right: 5%;
  bottom: 26px;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  width: min(390px, 58%);
  min-height: 284px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(186, 205, 222, 0.8);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(7, 52, 95, 0.16);
}

.dashboard-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px 12px;
  border-right: 1px solid #e2eef5;
  color: #46627a;
  font-size: 9px;
  font-weight: 600;
}

.dashboard-sidebar img {
  width: 62px;
  min-width: 0;
  height: auto;
  margin-bottom: 2px;
  object-fit: contain;
}

.dashboard-sidebar span {
  position: relative;
  padding-left: 0;
}

.dashboard-sidebar span::before {
  content: none;
}

.dashboard-sidebar .is-active {
  color: var(--navy);
}

.dashboard-sidebar .is-active::before {
  background: var(--cyan);
  border-color: var(--cyan);
  opacity: 1;
}

.dashboard-main {
  padding: 24px 18px 18px;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--navy);
}

.dashboard-top strong {
  font-size: 16px;
  font-weight: 600;
}

.dashboard-top span {
  padding: 7px 10px;
  border: 1px solid #e2eef5;
  border-radius: 6px;
  color: #617990;
  font-size: 8px;
  font-weight: 600;
}

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

.metric-card {
  position: relative;
  min-height: 92px;
  padding: 14px 12px 12px;
  border: 1px solid #e4eff5;
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
}

.metric-card span {
  display: block;
  color: #49677e;
  font-size: 10px;
  font-weight: 500;
}

.metric-card strong {
  display: block;
  margin-top: 2px;
  font-size: 21px;
  line-height: 1;
  font-weight: 600;
}

.metric-card i {
  display: none;
}

.metric-cyan {
  color: #03bdd5;
}

.metric-coral {
  color: #ff594d;
}

.metric-blue {
  color: #1d4778;
}

.product-compare-section {
  padding: 36px 0 72px;
}

.product-compare-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 38px rgba(7, 52, 95, 0.05);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1.14fr 1fr 1fr 0.74fr;
}

.compare-cell {
  min-height: 116px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
  color: #1b3766;
}

.compare-cell:last-child {
  border-right: 0;
}

.compare-head .compare-cell {
  display: flex;
  align-items: center;
  min-height: 94px;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-weight: 600;
}

.compare-feature-title {
  text-transform: uppercase;
}

.compare-oversight-title {
  justify-content: center;
  background: linear-gradient(180deg, #0bd5ea 0%, #0aa6cc 100%);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.compare-oversight-title img {
  width: 205px;
}

.compare-method-title {
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.method-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.compare-row .compare-cell {
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.compare-row:last-child .compare-cell {
  border-bottom: 0;
}

.compare-row .compare-positive {
  background: linear-gradient(90deg, rgba(6, 224, 248, 0.12), rgba(6, 224, 248, 0.04));
}

.feature-summary {
  display: block;
}

.feature-summary strong {
  display: block;
  margin-bottom: 5px;
  color: #172f69;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 600;
}

.feature-summary span:last-child {
  color: #243c69;
  font-size: 14px;
  font-weight: 400;
}

.status-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.product-cta {
  padding: 0 0 22px;
}

.nursing-page {
  background: var(--white);
}

.nursing-hero {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  min-height: 500px;
  align-items: center;
  gap: 34px;
  width: min(1190px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 30px;
}

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

.nursing-hero h1 {
  max-width: 520px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(40px, 4.4vw, 56px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 600;
}

.nursing-hero-copy p {
  margin: 0 0 0 6px;
  color: var(--cyan);
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.1;
  font-weight: 500;
}

.nursing-hero-art {
  display: grid;
  align-items: center;
}

.nursing-hero-art img,
.nursing-placeholder img {
  width: 100%;
  height: auto;
}

.nursing-work {
  padding: 34px 0 50px;
}

.nursing-work-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1fr);
  gap: 42px 72px;
  align-items: center;
}

.nursing-copy {
  max-width: 390px;
  justify-self: center;
}

.nursing-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.18;
  font-weight: 600;
}

.nursing-list-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}

.nursing-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
  font-weight: 400;
}

.nursing-list-card {
  width: min(100%, 500px);
  padding: 24px 26px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 52, 95, 0.08);
}

.nursing-list-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.nursing-list-card li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nursing-list-card strong {
  color: #315778;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 500;
}

.nursing-list-card em {
  padding: 8px 12px;
  color: #2997bd;
  background: rgba(6, 224, 248, 0.12);
  border-radius: 6px;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  white-space: nowrap;
}

.nursing-list-card em.is-alert {
  color: var(--coral);
  background: rgba(255, 111, 89, 0.12);
}

.list-icon {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border: 3px solid var(--cyan);
  border-radius: 50%;
}

.list-icon::after {
  position: absolute;
  content: "";
}

.list-icon.is-complete::after {
  left: 8px;
  top: 7px;
  width: 11px;
  height: 6px;
  border-left: 3px solid var(--cyan);
  border-bottom: 3px solid var(--cyan);
  transform: rotate(-45deg);
}

.list-icon.is-alert {
  border-color: var(--coral);
  border-radius: 6px;
}

.list-icon.is-alert::after {
  left: 12px;
  top: 5px;
  width: 3px;
  height: 14px;
  background: var(--coral);
  box-shadow: 0 18px 0 var(--coral);
}

.list-icon.is-clock {
  border-color: #5f86ba;
}

.list-icon.is-clock::after {
  left: 14px;
  top: 7px;
  width: 8px;
  height: 11px;
  border-left: 3px solid #5f86ba;
  border-bottom: 3px solid #5f86ba;
}

.nursing-band {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  align-items: center;
  gap: 58px;
  min-height: 280px;
  padding: 26px 44px;
  background: var(--white);
}

.nursing-placeholder {
  display: grid;
  align-items: center;
  min-height: 250px;
}

.nursing-placeholder img {
  max-height: 260px;
  object-fit: contain;
}

.residential-heading-only p {
  display: none;
}

.residential-text-band {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  align-items: center;
  gap: 58px;
  min-height: 260px;
  padding: 28px 72px;
  background: var(--white);
}

.residential-text-band p {
  max-width: 380px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(21px, 2.1vw, 25px);
  line-height: 1.25;
  font-weight: 500;
}

.inspectorate-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 310px;
  padding: 58px 28px 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.inspectorate-hero-copy {
  position: relative;
  z-index: 2;
}

.inspectorate-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 60px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}

.inspectorate-hero p {
  margin: 18px 0 0;
  color: var(--cyan);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.1;
  font-weight: 500;
}

.inspectorate-flag {
  position: absolute;
  right: -60px;
  top: -24px;
  width: min(360px, 32vw);
  height: auto;
  z-index: 1;
}

.inspectorate-work {
  padding-top: 36px;
}

.inspectorate-list-card {
  width: min(100%, 580px);
}

.inspectorate-list-card li {
  grid-template-columns: 38px minmax(0, 1fr) auto;
}

.card-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.list-icon.is-heart,
.list-icon.is-team,
.list-icon.is-person,
.list-icon.is-home,
.list-icon.is-document,
.list-icon.is-target {
  border-color: transparent;
  border-radius: 0;
}

.list-icon.is-heart::before,
.list-icon.is-team::before,
.list-icon.is-person::before,
.list-icon.is-home::before,
.list-icon.is-document::before,
.list-icon.is-target::before {
  position: absolute;
  inset: 4px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

.list-icon.is-heart::before {
  content: "\2661";
}

.list-icon.is-team::before {
  content: "\263A";
}

.list-icon.is-person::before {
  content: "\25CB";
}

.list-icon.is-home::before {
  content: "\2302";
}

.list-icon.is-document::before {
  content: "\25A1";
}

.list-icon.is-target::before {
  content: "\25CE";
}

.inspectorate-band {
  min-height: 330px;
}

.supported-hero h1 {
  max-width: 560px;
}

.supported-hero .nursing-hero-copy p {
  max-width: 520px;
  margin-left: 0;
}

.supported-work-section {
  padding: 44px 0 54px;
}

.supported-work-title {
  max-width: 860px;
  margin: 0 auto 34px;
  color: var(--navy);
  text-align: center;
  font-size: clamp(30px, 3.4vw, 39px);
  line-height: 1.1;
  font-weight: 600;
}

.supported-work-list {
  display: grid;
}

.supported-work-row {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(210px, 0.64fr);
  align-items: center;
  gap: 32px 54px;
  min-height: 250px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.supported-work-copy {
  justify-self: center;
  max-width: 240px;
}

.supported-work-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(23px, 2.3vw, 29px);
  line-height: 1.18;
  font-weight: 600;
}

.supported-work-image {
  display: grid;
  justify-items: center;
  align-items: center;
}

.supported-work-image img {
  width: min(100%, 430px);
  max-height: 260px;
  object-fit: contain;
}

.supported-data-card {
  width: min(100%, 440px);
  padding: 20px 22px 22px;
  justify-self: center;
}

.supported-data-card h3 {
  font-weight: 600;
}

.supported-data-card table {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.35;
}

.supported-data-card th,
.supported-data-card td {
  padding: 10px 7px;
}

.supported-data-card th {
  font-weight: 600;
}

.pill {
  display: inline-flex;
  min-width: 62px;
  justify-content: center;
  padding: 4px 7px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.pill-red {
  color: var(--coral);
  background: rgba(255, 111, 89, 0.08);
}

.pill-blue {
  color: #50a7dc;
  background: rgba(80, 167, 220, 0.08);
}

.why-page {
  background: var(--white);
}

.why-hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: 44px;
  width: min(1190px, calc(100% - 40px));
  min-height: 620px;
  margin: 0 auto;
  padding: 48px 0 36px;
}

.why-hero-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.why-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(44px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 600;
}

.why-hero p {
  margin: 0;
  color: var(--cyan);
  font-size: clamp(29px, 3.1vw, 38px);
  line-height: 1.1;
  font-weight: 500;
}

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

.why-hero-actions .nav-button {
  min-width: 174px;
}

.why-hero-image img,
.why-action-card img,
.why-evidence-image img {
  width: 100%;
  height: auto;
}

.why-hero-image img {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(7, 52, 95, 0.08);
}

.why-action-section,
.why-evidence-section {
  border-top: 1px solid var(--line);
}

.why-action-section {
  padding: 28px 0;
}

.why-action-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.25fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: 72px;
}

.why-action-card img {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(7, 52, 95, 0.08);
}

.why-action-copy h2 {
  max-width: 360px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(31px, 3.2vw, 39px);
  line-height: 1.12;
  font-weight: 700;
}

.why-check-list {
  display: grid;
  gap: 22px;
  margin: 136px 0 0;
  padding: 0;
  color: #526a84;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  list-style: none;
}

.why-check-list li {
  position: relative;
  padding-left: 46px;
}

.why-check-list li::before {
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--cyan);
  border: 3px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  content: "\2713";
}

.why-evidence-section {
  padding: 54px 0 58px;
}

.why-evidence-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 60px;
}

.why-benefit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.why-benefit {
  display: grid;
  align-content: start;
  gap: 18px;
}

.why-benefit-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: #5f86ba;
  border: 3px solid currentColor;
  border-radius: 8px;
  font-size: 31px;
  line-height: 1;
  font-weight: 600;
}

.why-benefit h3 {
  max-width: 190px;
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
}

.why-evidence-image {
  display: grid;
  justify-items: end;
}

.why-evidence-image img {
  max-width: 560px;
  object-fit: contain;
}

.evidence-page {
  background: var(--white);
}

.evidence-hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.76fr) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
  width: min(1190px, calc(100% - 40px));
  min-height: 360px;
  margin: 0 auto;
  padding: 42px 0 34px;
}

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

.evidence-hero h1 {
  max-width: 560px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 4.8vw, 58px);
  line-height: 1.15;
  letter-spacing: 0;
  font-weight: 600;
}

.evidence-hero p {
  margin: 0;
  color: var(--cyan);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.1;
  font-weight: 500;
}

.evidence-hero-image {
  display: grid;
  justify-items: center;
}

.evidence-hero-image img,
.evidence-visual img {
  width: 100%;
  height: auto;
}

.evidence-hero-image img {
  max-width: 650px;
}

.evidence-section {
  padding: 18px 0 46px;
}

.evidence-stack {
  display: grid;
  gap: 0;
}

.evidence-row {
  display: grid;
  grid-template-columns: minmax(310px, 1fr) minmax(310px, 1fr);
  align-items: center;
  gap: 72px;
  min-height: 295px;
  padding: 28px 64px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.evidence-row:first-child {
  border-top: 0;
}

.evidence-row-wide {
  min-height: 320px;
}

.evidence-visual {
  display: grid;
  justify-items: center;
}

.evidence-visual img {
  max-width: 520px;
  object-fit: contain;
}

.evidence-filters img {
  max-width: 500px;
}

.evidence-copy {
  max-width: 470px;
}

.evidence-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.18;
  font-weight: 700;
}

.evidence-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
  font-weight: 500;
}

.faq-page {
  background: var(--white);
}

.faq-hero {
  display: grid;
  justify-items: center;
  gap: 26px;
  width: min(100% - 40px, 900px);
  margin: 0 auto;
  padding: 88px 0 56px;
  text-align: center;
}

.faq-hero h1 {
  margin: 0;
  color: var(--cyan);
  font-size: clamp(54px, 6vw, 70px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}

.faq-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.45;
  font-weight: 500;
}

.faq-search {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  width: min(100%, 690px);
  min-height: 64px;
  padding: 0 22px;
  color: #7f94ad;
  border: 2px solid #b8c8e6;
  border-radius: 8px;
  background: var(--white);
}

.faq-search span {
  position: relative;
  width: 23px;
  height: 23px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.faq-search span::after {
  position: absolute;
  right: -8px;
  bottom: -6px;
  width: 12px;
  height: 3px;
  background: currentColor;
  transform: rotate(45deg);
  content: "";
}

.faq-search input {
  width: 100%;
  min-width: 0;
  color: var(--navy);
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 22px;
  font-weight: 500;
}

.faq-search input::placeholder {
  color: #7f94ad;
}

.faq-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 74px;
  align-items: start;
  padding-bottom: 40px;
}

.faq-topics {
  position: sticky;
  top: 112px;
}

.faq-topics h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.2;
  font-weight: 600;
}

.faq-topics nav {
  display: grid;
}

.faq-topics a {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 0 14px;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

.faq-topics a.is-active {
  position: relative;
  color: var(--cyan);
  font-weight: 600;
}

.faq-topics a.is-active::before {
  position: absolute;
  left: 0;
  width: 4px;
  height: 38px;
  background: var(--cyan);
  content: "";
}

.faq-content {
  min-width: 0;
}

.faq-topic-section {
  margin-top: 34px;
}

.faq-topic-section:first-child {
  margin-top: 0;
}

.faq-topic-section h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.12;
  font-weight: 600;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item.is-open {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 64px;
  padding: 0 24px;
  color: var(--navy);
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
  cursor: pointer;
}

.faq-question::after {
  flex: 0 0 auto;
  color: var(--cyan);
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
  content: "+";
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  padding: 0 24px 22px;
}

.faq-answer p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
}

.faq-help {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.faq-help a {
  color: var(--cyan);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-empty {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
}

.faq-cta .care-cta-panel {
  border-radius: 8px;
}

.pricing-page {
  background: var(--white);
}

.pricing-hero {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 52px 20px 38px;
  text-align: center;
}

.pricing-hero h1 {
  margin: 0;
  color: var(--cyan);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}

.pricing-hero p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.pricing-estimator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 46px;
  align-items: start;
  padding: 32px 0 52px;
}

.pricing-builder {
  display: grid;
  gap: 42px;
}

.pricing-progress {
  display: none;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
}

.pricing-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.pricing-step legend {
  margin: 0 0 28px;
  padding: 0;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
  font-weight: 650;
}

.pricing-step[hidden],
[hidden] {
  display: none !important;
}

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

.provider-option {
  cursor: pointer;
}

.provider-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.provider-option span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  min-height: 156px;
  padding: 28px 14px 22px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.provider-option img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.provider-option input:checked + span {
  border-color: var(--cyan);
  box-shadow: inset 0 0 0 1px var(--cyan);
}

.provider-option input:checked + span::after,
.provider-option input:checked + span::before {
  position: absolute;
  content: "";
}

.provider-option input:checked + span::after {
  top: 13px;
  right: 13px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: var(--cyan);
  border-radius: 50%;
}

.provider-option input:checked + span::before {
  z-index: 1;
  top: 19px;
  right: 21px;
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(42deg);
}

.provider-option input:focus-visible + span,
.service-options input:focus-visible + span,
.module-option input:focus-visible ~ .module-switch {
  outline: 3px solid rgba(6, 224, 248, 0.28);
  outline-offset: 3px;
}

.service-count {
  margin-top: 32px;
}

.pricing-label {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 500;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-options label {
  min-width: 0;
}

.service-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-options span {
  display: grid;
  place-items: center;
  min-height: 52px;
  color: var(--muted);
  border-left: 1px solid var(--line);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}

.service-options label:first-child span {
  border-left: 0;
}

.service-options input:checked + span {
  color: var(--navy);
  box-shadow: inset 0 0 0 2px var(--cyan);
}

.service-count p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.service-number {
  display: grid;
  gap: 10px;
  max-width: 320px;
}

.service-number span,
.contact-grid span {
  color: var(--navy);
  font-size: 16px;
  font-weight: 500;
}

.service-number input,
.contact-grid input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 17px;
}

.service-number input:focus,
.contact-grid input:focus {
  border-color: var(--cyan);
  outline: 3px solid rgba(6, 224, 248, 0.2);
}

.service-number input.is-invalid,
.contact-grid input.is-invalid {
  border-color: #ff6b61;
}

.pricing-note-inline {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.pricing-info {
  width: fit-content;
  max-width: 100%;
  margin: -14px 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.pricing-info summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.pricing-info summary::-webkit-details-marker {
  display: none;
}

.pricing-info-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--navy);
  background: rgba(6, 224, 248, 0.18);
  border: 1px solid rgba(6, 224, 248, 0.42);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
}

.pricing-info ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 18px;
  width: min(100%, 620px);
  margin: 14px 0 0;
  padding: 16px 18px 16px 34px;
  color: var(--muted);
  background: #f7fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pricing-modules {
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.pricing-modules {
  display: grid;
  gap: 16px;
}

.module-option {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 78px;
  gap: 18px;
  align-items: center;
  min-height: 116px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.module-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.module-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
}

.module-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.module-option strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 650;
}

.module-option small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
}

.module-switch {
  position: relative;
  justify-self: end;
  width: 58px;
  height: 32px;
  background: #cfd8e4;
  border-radius: 999px;
  transition: background 160ms ease;
}

.module-switch::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(7, 52, 95, 0.18);
  transition: transform 160ms ease;
  content: "";
}

.module-option input:checked ~ .module-switch {
  background: var(--cyan);
}

.module-option input:checked ~ .module-switch::after {
  transform: translateX(26px);
}

.module-option.is-required {
  border-color: rgba(6, 224, 248, 0.7);
  background: rgba(6, 224, 248, 0.06);
  cursor: default;
}

.module-option.is-required .module-switch {
  background: var(--cyan);
}

.pricing-clinical {
  display: grid;
  gap: 18px;
}

.clinical-count {
  margin-left: 90px;
}

.migration-intro {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.migration-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

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

.option-list.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.option-list label {
  cursor: pointer;
}

.option-list input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-list span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 16px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
}

.option-list input:checked + span {
  border-color: var(--cyan);
  box-shadow: inset 0 0 0 1px var(--cyan);
}

.option-list input:focus-visible + span {
  outline: 3px solid rgba(6, 224, 248, 0.28);
  outline-offset: 3px;
}

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

.contact-grid label {
  display: grid;
  gap: 8px;
}

.contact-grid small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.estimate-gate {
  position: sticky;
  top: 130px;
  display: grid;
  gap: 28px;
  padding-top: 28px;
}

.estimate-output {
  color: var(--navy);
}

.estimate-output h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 650;
}

.estimate-output span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.estimate-output strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1;
  font-weight: 750;
}

.estimate-output p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.estimate-small-print {
  margin-top: 18px !important;
  font-size: 14px !important;
}

.estimate-email-form {
  display: grid;
  gap: 13px;
}

.estimate-email-form h2 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 650;
}

.estimate-email-form label {
  color: var(--navy);
  font-size: 16px;
  font-weight: 500;
}

.estimate-email-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 17px;
}

.estimate-email-form input:focus {
  border-color: var(--cyan);
  outline: 3px solid rgba(6, 224, 248, 0.2);
}

.estimate-email-form input.is-invalid {
  border-color: #ff6b61;
}

.estimate-email-form .nav-button {
  width: 100%;
  min-height: 58px;
  margin-top: 8px;
  border: 0;
  font-size: 18px;
}

.estimate-email-form p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.estimate-status {
  color: var(--navy) !important;
  font-weight: 600;
}

.estimate-demo-link {
  color: var(--cyan);
  font-size: 17px;
  font-weight: 650;
}

.estimate-actions {
  display: grid;
  gap: 12px;
}

.estimate-actions .nav-button {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  text-align: center;
}

.generated-email {
  width: 100%;
  min-height: 180px;
  padding: 14px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
}

.pricing-questions {
  padding: 20px 0 48px;
}

.pricing-questions h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.12;
  font-weight: 650;
}

.demo-page {
  background: var(--white);
}

.demo-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(420px, 1fr);
  gap: 78px;
  align-items: start;
  padding: 86px 0 92px;
}

.demo-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(48px, 5vw, 66px);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: 0;
}

.demo-subtitle {
  margin: 22px 0 0;
  color: var(--cyan);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.12;
  font-weight: 500;
}

.demo-copy > p:not(.demo-subtitle) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
}

.demo-points {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
  list-style: none;
}

.demo-points li {
  position: relative;
  padding-left: 34px;
}

.demo-points li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 10px;
  border-left: 3px solid var(--cyan);
  border-bottom: 3px solid var(--cyan);
  transform: rotate(-45deg);
  content: "";
}

.trial-page {
  background:
    linear-gradient(180deg, rgba(6, 224, 248, 0.05), rgba(255, 255, 255, 0) 38%),
    var(--white);
}

.trial-copy .demo-subtitle {
  margin-top: 18px;
}

.trial-access-panel {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  margin-top: 38px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(7, 52, 95, 0.07);
}

.trial-window {
  display: grid;
  place-items: center;
  min-height: 140px;
  padding: 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  text-align: center;
}

.trial-window strong {
  display: block;
  color: var(--cyan);
  font-size: 34px;
  line-height: 1;
  font-weight: 600;
}

.trial-window span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
}

.trial-access-panel .demo-points {
  margin: 0;
  font-size: 16px;
}

.trial-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.demo-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 20px;
}

.form-row {
  display: grid;
  gap: 8px;
}

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

.form-row label {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid #b8c8e6;
  border-radius: 8px;
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}

.form-row textarea {
  min-height: 140px;
  padding-top: 14px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--cyan);
  outline: 3px solid rgba(6, 224, 248, 0.2);
}

.form-row input.is-invalid,
.form-row select.is-invalid,
.form-row textarea.is-invalid {
  border-color: #ff6b61;
}

.consent-row {
  margin-top: 2px;
}

.consent-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.consent-check input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--cyan);
}

.consent-check input.is-invalid {
  outline: 2px solid #ff6b61;
  outline-offset: 3px;
}

.turnstile-wrap {
  display: inline-grid;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
}

.turnstile-label {
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.turnstile-wrap .cf-turnstile {
  min-height: 65px;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: #c63f35;
  font-size: 16px;
}

.form-status a {
  color: inherit;
  font-weight: 600;
}

.demo-thank-you {
  align-self: start;
  color: var(--navy);
}

.demo-thank-you h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
}

.demo-thank-you p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
}

.demo-submit {
  width: min(100%, 180px);
  margin-top: 8px;
}

.demo-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

@media (max-width: 980px) {
  .nav-wrap {
    min-height: 82px;
  }

  .brand img {
    width: 178px;
  }

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

  .primary-nav {
    position: absolute;
    top: 100%;
    left: auto;
    right: max(20px, calc((100vw - 1190px) / 2 + 20px));
    width: min(360px, calc(100% - 40px));
    display: grid;
    justify-items: stretch;
    align-content: start;
    gap: 0;
    padding: 18px 28px 26px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(7, 52, 95, 0.12);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-nav > a {
    width: 100%;
    margin: 0;
  }

  .primary-nav > a:not(.nav-button) {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .nav-button {
    width: 100%;
    margin-top: 14px;
  }

  .nav-button + .nav-button {
    margin-top: 10px;
  }

  .resource-library-layout {
    grid-template-columns: 1fr;
  }

  .resource-filters {
    max-width: 520px;
  }

  .resource-results {
    grid-template-columns: 1fr;
  }

  .care-cta .section-shell {
    width: min(100% - 56px, 790px);
  }

  .care-cta-panel {
    min-height: 144px;
    padding: 30px 34px;
    border-radius: 32px;
  }

  .care-cta-panel h2 {
    display: none;
  }

  .care-cta-actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
  }

  .care-cta-actions .nav-button {
    width: min(44%, 220px);
    min-width: 150px;
    margin-top: 0;
  }

  .product-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .product-hero-copy {
    width: min(720px, calc(100% - 40px));
    min-height: 0;
    margin: 0 auto;
    padding: 52px 0 34px;
    text-align: center;
    justify-items: center;
  }

  .product-hero p {
    margin-bottom: 18px;
  }

  .product-actions {
    justify-content: center;
  }

  .product-hero-art {
    min-height: 320px;
  }

  .product-hero-art img {
    width: 100%;
    min-width: 0;
    height: 360px;
    object-position: center top;
  }

  .product-dashboard-card {
    right: 50%;
    bottom: 20px;
    width: min(370px, calc(100% - 36px));
    transform: translateX(50%);
  }

  .product-compare-section {
    padding-top: 26px;
  }

  .product-compare-card {
    overflow-x: auto;
  }

  .compare-grid {
    min-width: 880px;
  }

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

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

  .founder-grid {
    gap: 30px;
  }

  .founder-photo {
    width: min(300px, 100%);
  }

  .footer {
    padding: 16px 0;
  }

  .footer-inner {
    grid-template-columns: minmax(160px, 0.72fr) minmax(0, 1.28fr);
    gap: 26px;
    align-items: center;
  }

  .footer-brand {
    gap: 8px;
  }

  .footer-brand img {
    width: clamp(130px, 22vw, 170px);
  }

  .footer-copy {
    max-width: 190px;
    font-size: 13px;
    line-height: 1.45;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-group {
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
  }

  .footer-group:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  }

  .footer-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 30px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
  }

  .footer-heading::after {
    content: "+";
    color: var(--white);
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
  }

  .footer-group.is-open .footer-heading::after {
    content: "-";
  }

  .footer-links {
    display: none;
    padding: 0 0 12px;
    gap: 8px;
    font-size: 13px;
  }

  .footer-group.is-open .footer-links {
    display: grid;
  }

  .care-hero {
    display: grid;
    grid-template-columns: 1fr;
  }

  .care-hero-copy {
    min-height: auto;
    width: min(720px, calc(100% - 40px));
    margin: 0 auto;
    text-align: center;
  }

  .care-hero h1 {
    white-space: normal;
  }

  .care-hero-subtitle {
    margin-left: 0;
  }

  .care-hero-text {
    margin: 16px auto 0;
  }

  .care-hero-visual {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 360px;
  }

  .care-hero-image {
    min-height: 360px;
  }

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

  .work-copy {
    align-self: start;
  }

  .data-card {
    overflow-x: auto;
  }

  .nursing-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    text-align: center;
  }

  .nursing-hero h1 {
    max-width: 680px;
    margin: 0 auto;
  }

  .nursing-hero-copy p {
    margin-left: 0;
  }

  .nursing-work-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .nursing-copy,
  .nursing-list-card {
    max-width: 620px;
    justify-self: center;
  }

  .nursing-band {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px;
    text-align: center;
  }

  .residential-text-band {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 32px 28px;
    text-align: center;
  }

  .residential-text-band p {
    justify-self: center;
  }

  .inspectorate-hero {
    min-height: 300px;
    padding: 56px 28px 48px;
  }

  .inspectorate-flag {
    right: -70px;
    top: 0;
    width: 250px;
    opacity: 0.78;
  }

  .supported-hero h1,
  .supported-hero .nursing-hero-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .supported-work-row {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
    padding: 34px 0;
    text-align: center;
  }

  .supported-work-copy {
    max-width: 420px;
  }

  .why-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    text-align: center;
  }

  .why-hero-actions {
    justify-content: center;
    margin-top: 24px;
  }

  .why-action-grid,
  .why-evidence-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-action-copy {
    text-align: center;
  }

  .why-action-copy h2 {
    margin: 0 auto;
  }

  .why-check-list {
    width: max-content;
    max-width: 100%;
    margin: 36px auto 0;
    text-align: left;
  }

  .why-evidence-image {
    justify-items: center;
  }

  .evidence-hero,
  .evidence-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .evidence-hero {
    min-height: 0;
    gap: 32px;
  }

  .evidence-row {
    gap: 28px;
    padding: 34px 28px;
  }

  .evidence-copy {
    justify-self: center;
  }

  .faq-hero {
    padding: 64px 0 42px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-topics {
    position: static;
  }

  .faq-topics nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 16px;
  }

  .pricing-estimator {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .estimate-gate {
    position: static;
    padding-top: 0;
  }

  .pricing-progress {
    display: block;
  }

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

  .clinical-count {
    margin-left: 0;
  }

  .demo-hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 64px 0 72px;
  }

  .trial-access-panel {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .trial-window {
    min-height: 112px;
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .hero-inner,
  .section-shell {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    padding-top: 28px;
  }

  .primary-nav {
    right: 14px;
    width: min(320px, calc(100% - 28px));
    padding: 16px 22px 24px;
  }

  .hero h1 {
    font-size: clamp(38px, 13vw, 54px);
  }

  .hero p {
    margin-top: 2px;
    font-size: clamp(28px, 10vw, 39px);
  }

  .hero-illustration {
    width: 155%;
    max-width: none;
    margin-left: -27.5%;
  }

  .provider-sampler {
    padding: 22px 0 70px;
  }

  .provider-heading {
    display: block;
    margin-bottom: 32px;
    text-align: center;
  }

  .provider-heading h2 {
    font-size: 32px;
  }

  .provider-heading p {
    margin-top: 6px;
    font-size: 27px;
  }

  .provider-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 16px;
  }

  .provider-card {
    grid-template-rows: 76px 1.1em;
    min-height: 116px;
    font-size: 22px;
  }

  .provider-card img {
    width: 74px;
    height: 68px;
  }

  .founder-section {
    padding-bottom: 66px;
  }

  .founder-copy > p:not(.eyebrow) {
    font-size: 18px;
    line-height: 1.55;
  }

  .resource-hub {
    padding: 42px 0 46px;
  }

  .resource-gate-panel {
    grid-template-columns: 1fr;
    padding-top: 22px;
  }

  .resource-gate-panel .resource-gate-fields,
  .resource-gate-panel .turnstile-wrap,
  .resource-gate-panel .nav-button,
  .resource-gate-panel .form-status {
    grid-column: auto;
  }

  .resource-results {
    grid-template-columns: 1fr;
  }

  .resource-library {
    padding: 42px 0;
  }

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

  .footer-inner {
    grid-template-columns: minmax(130px, 0.72fr) minmax(0, 1.28fr);
    gap: 18px;
  }

  .footer-brand img {
    width: 132px;
  }

  .footer-copy {
    font-size: 12px;
    line-height: 1.45;
  }

  .footer-heading {
    min-height: 28px;
    font-size: 12px;
  }

  .footer-heading::after {
    font-size: 25px;
  }

  .care-hero {
    min-height: 0;
  }

  .care-hero-copy {
    gap: 12px;
    padding: 44px 0 28px;
  }

  .care-hero h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .care-hero-subtitle {
    font-size: clamp(25px, 8vw, 35px);
  }

  .care-hero-text {
    font-size: 18px;
  }

  .care-hero-visual {
    min-height: 290px;
  }

  .care-hero-image {
    min-height: 290px;
    object-position: 58% center;
  }

  .care-audience-strip {
    display: grid;
    gap: 8px;
    justify-items: center;
    font-size: 14px;
    text-align: center;
  }

  .care-audience-strip span + span::before {
    display: none;
  }

  .care-work-section {
    padding: 42px 0 46px;
  }

  .care-work-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .work-visual {
    min-height: 160px;
  }

  .data-card {
    padding: 14px;
  }

  .tab-row {
    gap: 14px;
    overflow-x: auto;
  }

  .data-card table {
    min-width: 440px;
  }

  .care-cta {
    padding-bottom: 42px;
  }

  .care-cta .section-shell {
    width: min(100% - 36px, 420px);
  }

  .care-cta-panel {
    min-height: 116px;
    padding: 24px 18px;
    border-radius: 24px;
  }

  .care-cta-actions {
    display: flex;
    gap: 12px;
    width: 100%;
  }

  .care-cta-actions .nav-button {
    width: calc((100% - 12px) / 2);
    min-width: 0;
    min-height: 44px;
    padding: 0 12px;
    margin-top: 0;
  }

  .product-hero-copy {
    width: min(100% - 28px, 620px);
    padding: 44px 0 28px;
  }

  .product-hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .product-hero p {
    font-size: clamp(28px, 8vw, 38px);
  }

  .product-actions {
    width: 100%;
    gap: 12px;
  }

  .product-actions .nav-button {
    width: calc((100% - 12px) / 2);
    min-width: 0;
    padding: 0 12px;
  }

  .product-hero-art {
    min-height: 250px;
  }

  .product-hero-art img {
    width: 150%;
    max-width: none;
    height: 290px;
    margin-left: -24%;
  }

  .product-dashboard-card {
    grid-template-columns: 82px minmax(0, 1fr);
    width: min(330px, calc(100% - 24px));
    min-height: 224px;
    bottom: 12px;
  }

  .dashboard-sidebar {
    gap: 7px;
    padding: 12px 9px;
    font-size: 8px;
  }

  .dashboard-sidebar img {
    width: 52px;
  }

  .dashboard-main {
    padding: 17px 12px 12px;
  }

  .dashboard-top {
    margin-bottom: 12px;
  }

  .dashboard-top strong {
    font-size: 13px;
  }

  .metric-grid {
    gap: 7px;
  }

  .metric-card {
    min-height: 72px;
    padding: 10px 28px 9px 9px;
  }

  .metric-card span {
    font-size: 8px;
  }

  .metric-card strong {
    font-size: 17px;
  }

  .product-compare-section {
    padding: 30px 0 48px;
  }

  .product-compare-card {
    border-radius: 8px;
  }

  .compare-grid {
    min-width: 760px;
    grid-template-columns: 1.1fr 0.95fr 0.95fr 0.78fr;
  }

  .compare-cell {
    min-height: 96px;
    padding: 18px 16px;
  }

  .compare-head .compare-cell {
    min-height: 74px;
    font-size: 15px;
  }

  .compare-oversight-title img {
    width: 150px;
  }

  .feature-summary {
    display: block;
  }

  .feature-summary strong {
    font-size: 15px;
  }

  .feature-summary span:last-child,
  .compare-row .compare-cell {
    font-size: 13px;
  }

  .status-icon {
    width: 26px;
    height: 26px;
    transform: scale(0.9);
  }

  .nursing-hero {
    width: min(100% - 28px, 1120px);
    padding: 34px 0 24px;
  }

  .nursing-hero h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .nursing-hero-copy p {
    font-size: clamp(25px, 8vw, 32px);
  }

  .nursing-list-card {
    padding: 18px 14px;
  }

  .nursing-list-card li {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .nursing-list-card em {
    grid-column: 2;
    justify-self: start;
  }

  .nursing-band {
    padding: 24px 14px;
  }

  .nursing-placeholder {
    min-height: 180px;
  }

  .residential-text-band {
    padding: 28px 18px;
  }

  .residential-text-band p {
    font-size: 20px;
  }

  .inspectorate-hero {
    min-height: 280px;
    padding: 50px 18px 42px;
  }

  .inspectorate-hero h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .inspectorate-hero p {
    font-size: clamp(24px, 8vw, 32px);
  }

  .inspectorate-flag {
    right: -96px;
    width: 220px;
  }

  .inspectorate-list-card li {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .card-note {
    font-size: 14px;
  }

  .supported-work-section {
    padding: 34px 0 42px;
  }

  .supported-work-title {
    margin-bottom: 12px;
    font-size: clamp(28px, 9vw, 34px);
  }

  .supported-work-row {
    gap: 16px;
  }

  .supported-data-card {
    width: 100%;
  }

  .supported-work-image img {
    max-height: 220px;
  }

  .why-hero {
    width: min(100% - 28px, 1120px);
    padding: 38px 0 30px;
  }

  .why-hero h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .why-hero p {
    font-size: clamp(24px, 8vw, 32px);
  }

  .why-hero-actions {
    gap: 12px;
  }

  .why-hero-actions .nav-button {
    min-width: 0;
    width: calc((100% - 12px) / 2);
    padding: 0 12px;
  }

  .why-action-section {
    padding: 26px 0;
  }

  .why-action-copy h2 {
    font-size: clamp(28px, 8.4vw, 34px);
  }

  .why-check-list {
    gap: 16px;
    font-size: 18px;
  }

  .why-evidence-section {
    padding: 34px 0 42px;
  }

  .why-benefit-list {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .why-benefit {
    justify-items: center;
  }

  .evidence-hero {
    width: min(100% - 28px, 1120px);
    padding: 36px 0 26px;
  }

  .evidence-hero h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .evidence-hero p {
    font-size: clamp(24px, 8vw, 32px);
  }

  .evidence-section {
    padding: 10px 0 36px;
  }

  .evidence-row {
    min-height: 0;
    padding: 30px 0;
  }

  .evidence-copy p {
    font-size: 18px;
  }

  .faq-hero {
    width: min(100% - 28px, 900px);
    padding: 48px 0 32px;
  }

  .faq-hero h1 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .faq-hero p {
    font-size: 18px;
  }

  .faq-search {
    min-height: 56px;
    gap: 12px;
    padding: 0 16px;
  }

  .faq-search input {
    font-size: 18px;
  }

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

  .faq-topics a {
    min-height: 52px;
    font-size: 16px;
  }

  .faq-question {
    min-height: 58px;
    padding: 0 16px;
    font-size: 18px;
  }

  .faq-answer {
    padding: 0 16px 18px;
  }

  .faq-answer p,
  .faq-help {
    font-size: 16px;
  }

  .pricing-hero {
    min-height: 140px;
    padding: 40px 20px 24px;
  }

  .pricing-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .pricing-estimator {
    width: min(100% - 28px, 1120px);
    padding: 24px 0 40px;
  }

  .pricing-step legend {
    margin-bottom: 20px;
    font-size: clamp(26px, 8vw, 32px);
  }

  .pricing-info ul {
    grid-template-columns: 1fr;
  }

  .provider-options {
    gap: 12px;
  }

  .provider-option span {
    min-height: 128px;
    padding: 22px 10px 18px;
    font-size: 15px;
  }

  .provider-option img {
    width: 48px;
    height: 48px;
  }

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

  .service-options label:nth-child(odd) span {
    border-left: 0;
  }

  .service-options label:nth-child(n + 3) span {
    border-top: 1px solid var(--line);
  }

  .module-option {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 16px;
  }

  .module-icon {
    width: 48px;
    height: 48px;
  }

  .migration-intro {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .module-switch {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }

  .option-list.two-column {
    grid-template-columns: 1fr;
  }

  .estimate-actions .nav-button {
    min-height: 58px;
  }

  .pricing-questions {
    width: min(100% - 28px, 1120px);
    padding-bottom: 36px;
  }

  .demo-hero {
    width: min(100% - 28px, 1120px);
    padding: 46px 0 58px;
  }

  .demo-copy h1 {
    font-size: clamp(42px, 13vw, 56px);
  }

  .demo-subtitle {
    font-size: clamp(24px, 8vw, 32px);
  }

  .demo-copy > p:not(.demo-subtitle),
  .demo-points {
    font-size: 17px;
  }

  .demo-form {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .trial-form {
    padding: 20px 16px;
  }

  .trial-access-panel {
    gap: 18px;
    padding: 18px;
  }

  .trial-window strong {
    font-size: 30px;
  }

  .turnstile-wrap {
    width: 100%;
  }

  .demo-submit {
    width: 100%;
  }
}

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

.visual-redesign-page {
  background: var(--white);
}

.visual-hero,
.audit-redesign-hero,
.visual-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.visual-hero {
  padding: 88px 0 52px;
}

.visual-hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: center;
}

.visual-hero h1,
.audit-redesign-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 4.3vw, 57px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 600;
}

.visual-hero p,
.audit-redesign-hero p {
  margin: 14px 0 0;
  color: var(--cyan);
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.12;
  font-weight: 500;
}

.visual-hero-art {
  margin: 0;
}

.visual-hero-art img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 52, 95, 0.13);
}

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

.visual-hero-actions .nav-button,
.visual-cta .nav-button {
  min-width: 174px;
}

.visual-screen,
.visual-panel,
.audit-status-card,
.evidence-library-card,
.evidence-filter-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 52, 95, 0.08);
}

.provider-screen {
  display: grid;
  grid-template-columns: 118px 1fr;
  min-height: 520px;
  overflow: hidden;
}

.provider-sidebar {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
}

.mini-brand {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.provider-sidebar span:not(.mini-brand) {
  display: block;
  padding: 9px 10px;
  color: #6684a4;
  font-size: 12px;
  font-weight: 650;
  border-radius: 6px;
}

.provider-sidebar .is-active {
  color: var(--navy);
  background: #eafaff;
}

.provider-main {
  padding: 30px 28px;
}

.provider-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.provider-top h2 {
  margin: 0;
  color: var(--navy);
  font-size: 25px;
}

.branch-select {
  min-width: 130px;
  padding: 8px 12px;
  color: #637d99;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 650;
}

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

.dashboard-mini-card {
  padding: 22px 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dashboard-mini-card h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 18px;
}

.dashboard-mini-card p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: #617892;
  font-size: 13px;
  font-weight: 650;
}

.dashboard-mini-card p + p {
  margin-top: 12px;
}

.dashboard-mini-card strong {
  color: var(--navy);
}

.dashboard-mini-card .is-red {
  color: #ff6f59;
}

.dashboard-mini-card .is-orange {
  color: #f79b48;
}

.dashboard-mini-card .is-green {
  color: var(--green);
}

.action-redesign,
.tools-redesign {
  border-top: 1px solid var(--line);
}

.action-redesign {
  padding: 28px 0;
}

.action-redesign-grid,
.tools-redesign-grid {
  display: grid;
  align-items: center;
}

.action-redesign-grid {
  grid-template-columns: minmax(390px, 1.18fr) minmax(310px, 0.82fr);
  gap: 72px;
}

.trail-panel {
  padding: 30px;
}

.trail-panel h3 {
  margin: 0 0 25px;
  color: var(--navy);
  font-size: 17px;
}

.trail-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
  color: #62809f;
  text-align: center;
  font-size: 12px;
  font-weight: 650;
}

.trail-step-icon,
.check-dot {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  color: #4b74aa;
  border: 2px solid var(--line);
  border-radius: 50%;
  font-size: 22px;
}

.trail-step-icon.is-active,
.check-dot {
  color: var(--cyan);
  border-color: var(--cyan);
}

.trail-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #627b97;
  font-size: 12px;
  font-weight: 650;
}

.trail-row {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr 1fr;
  gap: 14px;
  padding: 13px 16px;
  border-top: 1px solid var(--line);
}

.trail-row:first-child {
  border-top: 0;
}

.status-pill {
  justify-self: start;
  padding: 5px 12px;
  color: #1682bd;
  background: #dff4ff;
  border-radius: 4px;
}

.status-pill.is-green {
  color: #209e72;
  background: #dcf7eb;
}

.status-pill.is-grey {
  color: #789;
  background: #edf1f5;
}

.action-copy h2 {
  max-width: 380px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(31px, 3.2vw, 39px);
  line-height: 1.12;
  font-weight: 700;
}

.visual-check-list {
  display: grid;
  gap: 22px;
  margin: 136px 0 0;
  padding: 0;
  color: #526a84;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  list-style: none;
}

.visual-check-list li {
  display: flex;
  align-items: center;
  gap: 18px;
}

.check-dot {
  width: 24px;
  height: 24px;
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.tools-redesign {
  padding: 54px 0 58px;
}

.tools-redesign-grid {
  grid-template-columns: minmax(420px, 1fr) minmax(360px, 0.92fr);
  gap: 60px;
}

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

.tool-benefit {
  display: grid;
  gap: 18px;
}

.tool-icon {
  position: relative;
  width: 78px;
  height: 78px;
  color: #5f86ba;
}

.tool-icon::before,
.tool-icon::after {
  position: absolute;
  inset: 10px 16px;
  border: 3px solid currentColor;
  border-radius: 7px;
  content: "";
}

.tool-icon.puzzle::before {
  border-radius: 10px;
  clip-path: polygon(0 0, 100% 0, 100% 42%, 74% 42%, 74% 65%, 100% 65%, 100% 100%, 0 100%, 0 65%, 24% 65%, 24% 42%, 0 42%);
}

.tool-icon.trail::after {
  inset: 28px 22px 22px 36px;
  border-color: var(--cyan);
  border-radius: 50%;
}

.tool-benefit h3 {
  max-width: 190px;
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
}

.desk-scene {
  position: relative;
  min-height: 300px;
}

.desk-person-outline {
  position: absolute;
  right: 128px;
  bottom: 10px;
  width: 150px;
  height: 190px;
  border: 4px solid #5f86ba;
  border-right: 0;
  border-bottom: 0;
  border-radius: 80px 0 0 0;
}

.desk-laptop {
  position: absolute;
  right: 52px;
  bottom: 44px;
  width: 180px;
  height: 102px;
  border: 4px solid #5f86ba;
  border-radius: 8px;
}

.desk-laptop::after {
  position: absolute;
  left: -22px;
  right: -22px;
  bottom: -18px;
  height: 14px;
  border: 4px solid #5f86ba;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  content: "";
}

.desk-laptop span {
  position: absolute;
  left: 34px;
  top: 36px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.desk-file {
  position: absolute;
  border: 4px solid #8cadcf;
  border-radius: 6px;
}

.desk-file.one {
  right: 20px;
  top: 34px;
  width: 86px;
  height: 78px;
}

.desk-file.two {
  right: 170px;
  top: 8px;
  width: 78px;
  height: 70px;
}

.desk-file.three {
  right: 284px;
  top: 48px;
  width: 70px;
  height: 64px;
}

.audit-redesign-hero {
  padding: 64px 0 38px;
}

.audit-redesign-row,
.audit-redesign-band,
.audit-final-band,
.evidence-soft-card,
.evidence-mid-row {
  display: grid;
  align-items: center;
}

.audit-redesign-row {
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 0.92fr);
  gap: 58px;
  min-height: 260px;
  padding: 30px 48px;
}

.audit-redesign-row h2,
.audit-redesign-band h2,
.audit-final-band h2,
.evidence-soft-card h2,
.evidence-mid-row h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(26px, 2.7vw, 34px);
  line-height: 1.15;
  font-weight: 600;
}

.audit-status-card {
  padding: 24px;
}

.audit-status-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.16;
  font-weight: 600;
}

.status-list {
  display: grid;
  gap: 10px;
}

.status-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #41679a;
  font-size: 16px;
  font-weight: 500;
}

.status-list .status-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--cyan);
  border: 3px solid currentColor;
  border-radius: 50%;
  font-size: 20px;
}

.status-list .status-icon.alert {
  color: var(--coral);
  border: 0;
  font-size: 34px;
}

.status-label {
  padding: 8px 14px;
  color: #219fc8;
  background: #e8faff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

.status-label.alert {
  color: var(--coral);
  background: #ffece7;
}

.audit-redesign-band,
.audit-final-band,
.evidence-soft-card {
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 1fr);
  gap: 52px;
  min-height: 270px;
  padding: 34px 48px;
  background: #edfaff;
  border-radius: 8px;
}

.audit-redesign-band img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.audit-final-band {
  min-height: 250px;
  margin-top: 16px;
  padding: 40px 72px;
}

.audit-final-band p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(23px, 2.3vw, 31px);
  line-height: 1.25;
  font-weight: 500;
}

.evidence-flow {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 288px;
}

.flow-card-row {
  display: grid;
  grid-template-columns: repeat(4, 112px);
  gap: 30px;
  align-items: start;
}

.flow-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 142px;
  padding: 14px 10px;
  color: #526fa2;
  border: 3px solid currentColor;
  border-radius: 7px;
  background: #fff;
  font-size: 18px;
  font-weight: 700;
}

.flow-symbol {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #526fa2;
  border: 3px solid currentColor;
  border-radius: 6px;
  font-size: 36px;
}

.flow-file {
  position: absolute;
  bottom: 4px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 96px;
  height: 110px;
  color: var(--cyan);
  border: 3px solid #526fa2;
  border-radius: 5px;
  background: #fff;
  transform: translateX(-50%);
  font-size: 48px;
}

.evidence-soft-card {
  gap: 70px;
  min-height: 330px;
  padding: 34px 70px;
}

.evidence-library-card,
.evidence-filter-card {
  padding: 22px 24px;
  border: 3px solid #8aa6cd;
}

.evidence-card-art {
  margin: 0;
}

.evidence-card-art img {
  display: block;
  width: 100%;
  max-height: 285px;
  object-fit: contain;
}

.evidence-access-art {
  margin: 0;
}

.evidence-access-art img {
  display: block;
  width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.evidence-library-card h3,
.evidence-filter-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 23px;
}

.search-box,
.evidence-row-line,
.filter-line {
  min-height: 48px;
  border: 2px solid var(--line);
  border-radius: 7px;
}

.search-box {
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: #8aa0b8;
  font-size: 17px;
  font-weight: 600;
}

.evidence-row-line,
.filter-line {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  color: #41679a;
  font-size: 17px;
  font-weight: 650;
}

.evidence-row-line + .evidence-row-line,
.filter-line + .filter-line {
  border-top: 0;
}

.evidence-mid-row {
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 0.9fr);
  gap: 78px;
  min-height: 280px;
  padding: 26px 68px;
}

.filter-line {
  grid-template-columns: 1fr 1.1fr 24px;
}

.filter-line strong {
  color: var(--cyan);
}

.access-visual {
  position: relative;
  min-height: 230px;
}

.access-folder {
  position: absolute;
  left: 34px;
  bottom: 18px;
  width: 230px;
  height: 132px;
  border: 4px solid #526fa2;
  border-radius: 8px;
}

.access-folder::before {
  position: absolute;
  left: 10px;
  top: -26px;
  width: 100px;
  height: 32px;
  border: 4px solid #526fa2;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  content: "";
}

.access-lock {
  position: absolute;
  left: 90px;
  top: 54px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 4px solid #526fa2;
  border-radius: 8px;
  color: var(--navy);
  font-size: 24px;
}

.access-roles {
  position: absolute;
  left: 282px;
  top: 0;
  display: grid;
  gap: 12px;
}

.access-role {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
}

.avatar-circle {
  width: 48px;
  height: 48px;
  border: 3px solid #526fa2;
  border-radius: 50%;
}

.role-lines::before,
.role-lines::after {
  display: block;
  width: 48px;
  height: 5px;
  margin-top: 7px;
  background: var(--cyan);
  border-radius: 999px;
  content: "";
}

.visual-cta .care-cta-panel.is-rounded {
  border-radius: 28px;
  padding: 62px 26px 54px;
}

@media (max-width: 980px) {
  .visual-hero-grid,
  .provider-screen,
  .action-redesign-grid,
  .tools-redesign-grid,
  .audit-redesign-row,
  .audit-redesign-band,
  .audit-final-band,
  .evidence-soft-card,
  .evidence-mid-row {
    grid-template-columns: 1fr;
  }

  .visual-hero,
  .audit-redesign-hero {
    padding-top: 54px;
  }

  .visual-hero-actions,
  .visual-check-list {
    margin-top: 34px;
  }

  .provider-screen {
    min-height: auto;
  }

  .provider-sidebar {
    display: none;
  }

  .dashboard-card-grid,
  .flow-card-row,
  .tool-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audit-redesign-row,
  .audit-redesign-band,
  .audit-final-band,
  .evidence-soft-card,
  .evidence-mid-row {
    padding-inline: 24px;
  }
}

@media (max-width: 640px) {
  .visual-hero h1,
  .audit-redesign-hero h1 {
    font-size: 38px;
  }

  .visual-hero p,
  .audit-redesign-hero p {
    font-size: 25px;
  }

  .dashboard-card-grid,
  .flow-card-row,
  .tool-benefits {
    grid-template-columns: 1fr;
  }

  .flow-file {
    position: static;
    margin-top: 16px;
    transform: none;
  }

  .status-item {
    grid-template-columns: 34px 1fr;
  }

  .status-label {
    grid-column: 2;
    justify-self: start;
  }

  .access-visual,
  .desk-scene {
    min-width: 520px;
    transform: scale(0.78);
    transform-origin: left center;
  }

  .evidence-soft-card,
  .audit-redesign-band {
    overflow: hidden;
  }
}
