:root {
  --ink: #405454;
  --muted: #607171;
  --quiet: #7f9191;
  --soft: #eef4ed;
  --line: #dbe5dd;
  --line-strong: #c8d8ce;
  --white: #ffffff;
  --warm-white: #f7f7f2;
  --green: #007a53;
  --green-dark: #214f3a;
  --leaf: #6fbf3f;
  --amber: #b86b28;
  --red: #a33a2f;
  --blue: #245b7a;
  --night: #18362f;
  --shadow: 0 18px 48px rgba(33, 79, 58, 0.13);
  --shadow-tight: 0 10px 28px rgba(10, 39, 39, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-white);
  font-family: "Lato", "Open Sans", "Montserrat", "DejaVu Sans", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(330px, auto) 1fr minmax(136px, auto);
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 12px 58px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 247, 242, 0.95);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-weight: 800;
}

.brand-logo {
  width: 232px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
}

.brand-text {
  max-width: 210px;
  color: var(--green-dark);
  line-height: 1.2;
  font-size: 14px;
}

.brand-service {
  width: 92px;
  height: 54px;
  display: grid;
  place-items: center;
  min-width: 0;
  transform: translateX(14px);
}

.brand-av-logo {
  width: 92px;
  height: 54px;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
  background: var(--warm-white);
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  text-align: center;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 6px;
  color: white;
  background: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--green-dark);
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--night);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 45, 39, 0.94), rgba(33, 79, 58, 0.7) 54%, rgba(33, 79, 58, 0.2)),
    linear-gradient(0deg, rgba(20, 45, 39, 0.66), transparent 50%);
}

.hero-copy {
  position: relative;
  max-width: 980px;
  padding: 76px 86px 88px;
  color: white;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 940px;
  margin-bottom: 22px;
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  line-height: 1.65;
}

.hero-copy p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: white;
  color: var(--green-dark);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: white;
  background: var(--green);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-dark);
}

.button-light {
  color: white;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.14);
}

.button-outline,
.button-filter {
  border-color: var(--line-strong);
  background: var(--white);
}

.button-filter {
  display: none;
}

.hero-readout {
  position: absolute;
  right: 58px;
  bottom: 54px;
  width: 300px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: white;
  background: rgba(24, 54, 47, 0.78);
  backdrop-filter: blur(12px);
}

.hero-readout span,
.hero-readout small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
}

.hero-readout strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 30px;
}

.audit-workspace {
  scroll-margin-top: 90px;
  padding: 64px 44px 76px;
  background: var(--warm-white);
  border-bottom: 1px solid var(--line);
}

.workspace-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  max-width: 1440px;
  margin: 0 auto 18px;
}

.section-lead {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.workspace-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.status-strip {
  max-width: 1440px;
  margin: 0 auto 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.status-strip span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
}

.metric-grid {
  max-width: 1440px;
  margin: 0 auto 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.metric-grid article {
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-tight);
}

.metric-grid span,
.metric-grid small {
  display: block;
  color: var(--muted);
}

.metric-grid span {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.metric-grid strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--green-dark);
  font-size: 34px;
  line-height: 1;
}

.metric-grid small {
  line-height: 1.35;
}

.workspace-layout {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 340px;
  gap: 16px;
  align-items: start;
}

.control-rail,
.evidence-viewport,
.inspector {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-tight);
}

.control-rail,
.inspector {
  position: sticky;
  top: 88px;
}

.control-rail {
  padding: 18px;
}

.rail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.rail-head h3 {
  margin-bottom: 0;
}

.close-panel {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--green-dark);
  font-size: 24px;
  line-height: 1;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--warm-white);
}

textarea {
  resize: vertical;
}

.rail-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 6px 0 16px;
}

.rail-actions .button {
  width: 100%;
}

.legend {
  display: grid;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.legend span,
.status-pill,
.active-chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
}

.dot-critical { background: var(--red); }
.dot-warning { background: var(--amber); }
.dot-ok { background: var(--green); }

.evidence-viewport {
  min-width: 0;
  overflow: hidden;
}

.viewport-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--line);
}

.viewport-head h3 {
  margin-bottom: 4px;
}

.viewport-head p {
  margin-bottom: 0;
  color: var(--muted);
}

.active-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  min-width: 180px;
}

.active-chips span {
  min-height: 30px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--soft);
  font-size: 12px;
  font-weight: 900;
}

.module-matrix {
  display: grid;
  gap: 0;
  padding: 0;
}

.module-row {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) 170px 110px 116px;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 14px 20px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: white;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.module-row:hover,
.module-row:focus-visible,
.module-row.is-selected {
  background: #f8fbf6;
}

.module-row.is-selected {
  box-shadow: inset 5px 0 0 var(--green);
}

.module-main {
  min-width: 0;
}

.module-name {
  display: block;
  margin-bottom: 5px;
  color: var(--green-dark);
  font-weight: 900;
}

.module-meta {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.score-cell {
  display: grid;
  grid-template-columns: 1fr 48px;
  align-items: center;
  gap: 10px;
}

.score-bar,
.mini-bar-track,
.impact-track {
  position: relative;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8eee9;
}

.score-bar span,
.mini-bar-fill,
.impact-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value, 0%);
  border-radius: inherit;
  background: var(--bar-color, var(--green));
}

.score-cell strong {
  color: var(--green-dark);
  font-size: 15px;
  text-align: right;
}

.finding-cell {
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.finding-cell strong {
  color: var(--ink);
  font-size: 18px;
}

.status-pill {
  justify-content: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.status-critical {
  --bar-color: var(--red);
}

.status-warning {
  --bar-color: var(--amber);
}

.status-ok {
  --bar-color: var(--green);
}

.status-critical .status-pill {
  color: #6f1f18;
  background: #f8e6e2;
}

.status-warning .status-pill {
  color: #71400f;
  background: #f7ead7;
}

.status-ok .status-pill {
  color: #145c40;
  background: #e0f1e8;
}

.empty-state {
  padding: 26px 20px;
  color: var(--muted);
}

.visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 0;
  border-top: 1px solid var(--line);
}

.clinic-map,
.impact-view {
  min-height: 300px;
  padding: 20px;
}

.clinic-map {
  border-right: 1px solid var(--line);
}

.panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.panel-head h3 {
  margin-bottom: 0;
}

.panel-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.clinic-map .panel-head span {
  max-width: min(62%, 360px);
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--green-dark);
  line-height: 1.25;
  text-align: right;
}

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

.zone {
  position: relative;
  min-height: 112px;
  display: grid;
  align-content: start;
  padding: 15px 28px 15px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(238, 244, 237, 0.8), rgba(255, 255, 255, 0.95));
  overflow: hidden;
  text-align: left;
}

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

.zone strong {
  color: var(--green-dark);
  font-size: 15px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.zone span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.zone::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--zone-color, var(--green));
}

.zone.is-selected {
  border-color: var(--green);
  box-shadow: inset 0 0 0 2px rgba(0, 122, 83, 0.18);
}

.impact-bars {
  display: grid;
  gap: 14px;
}

.impact-row {
  display: grid;
  gap: 7px;
}

.impact-row header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.impact-row strong {
  color: var(--ink);
}

.impact-track {
  height: 12px;
}

.impact-critical { --bar-color: var(--red); }
.impact-warning { --bar-color: var(--amber); }
.impact-ok { --bar-color: var(--green); }
.impact-info { --bar-color: var(--blue); }

.inspector {
  min-width: 0;
  overflow: hidden;
}

.inspector-hero {
  padding: 20px;
  color: white;
  background: var(--green-dark);
}

.inspector-hero span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.inspector-hero h3 {
  margin: 8px 0 12px;
  color: white;
}

.selected-score {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.selected-score strong {
  font-size: 46px;
  line-height: 1;
}

.selected-score small {
  color: rgba(255, 255, 255, 0.72);
}

.inspector-section {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.inspector-section:last-child {
  border-bottom: 0;
}

.inspector-section h4 {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 14px;
  text-transform: uppercase;
}

.detail-list {
  display: grid;
  gap: 10px;
}

.detail-list div,
.action-item,
.evidence-item {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm-white);
}

.detail-list span,
.action-item span,
.evidence-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-list strong,
.action-item strong,
.evidence-item strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
}

.action-list,
.evidence-list {
  display: grid;
  gap: 10px;
}

.action-item p,
.evidence-item p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 14px;
}

.mini-bar {
  display: grid;
  gap: 7px;
  margin-top: 10px;
}

.mobile-tabs {
  display: none;
}

.section {
  scroll-margin-top: 90px;
  padding: 88px 72px;
}

.section-title {
  max-width: 900px;
  margin: 0 0 36px;
}

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

.section-title.centered > p:not(.eyebrow) {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
}

.service {
  background: white;
}

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

.service-grid article {
  min-height: 244px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm-white);
}

.service-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 50%;
  color: white;
  background: var(--green-dark);
  font-weight: 900;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.onsite-audit {
  max-width: 1180px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--night);
  color: white;
}

.onsite-logo {
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: 8px;
  background: white;
}

.onsite-logo img {
  width: 100%;
  max-height: 110px;
  object-fit: contain;
}

.onsite-audit h3 {
  max-width: 760px;
  margin-bottom: 8px;
  color: white;
  font-size: 24px;
}

.onsite-audit p:not(.eyebrow) {
  max-width: 820px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.onsite-audit .button {
  white-space: nowrap;
}

.methodology,
.faq {
  background: var(--soft);
}

.method-layout {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.method-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.method-steps li {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-strong);
}

.method-steps strong {
  color: var(--green-dark);
}

.method-steps span {
  color: var(--muted);
  line-height: 1.55;
}

.method-note {
  padding: 28px;
  border-radius: 8px;
  color: white;
  background: var(--night);
}

.method-note p {
  color: rgba(255, 255, 255, 0.78);
}

.method-note p:last-child {
  margin-bottom: 0;
}

.deliverables {
  background: white;
}

.deliverables-list {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.deliverables-list div {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.deliverables-list strong {
  color: var(--green-dark);
}

.deliverables-list span {
  color: var(--muted);
  line-height: 1.55;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

summary {
  padding: 20px 22px;
  color: var(--green-dark);
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact {
  scroll-margin-top: 90px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  padding: 88px 72px;
  color: white;
  background: var(--green-dark);
}

.contact-copy {
  max-width: 590px;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.contact-direct {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  font-weight: 800;
}

.contact-flow {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-flow span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.price-guide {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.price-guide h3 {
  margin: 0 0 10px;
  color: white;
  font-size: 16px;
}

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

.price-guide article {
  min-height: 112px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.price-guide span,
.price-guide strong,
.price-guide-maintenance span,
.price-guide-maintenance strong {
  display: block;
}

.price-guide span,
.price-guide-maintenance span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-guide strong,
.price-guide-maintenance strong {
  margin-top: 5px;
  color: white;
  font-size: 18px;
  line-height: 1.15;
}

.price-guide p,
.price-guide-maintenance p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.36;
}

.price-guide-maintenance {
  display: grid;
  grid-template-columns: minmax(116px, 0.32fr) minmax(112px, 0.28fr) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.price-guide-maintenance strong,
.price-guide-maintenance p {
  margin-top: 0;
}

.price-guide details {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.45;
}

.price-guide summary {
  cursor: pointer;
  color: white;
  font-weight: 900;
}

.contact-direct span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 34px;
  border-radius: 8px;
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form label {
  margin-bottom: 0;
}

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

.contact-form .button {
  width: fit-content;
  border: 0;
}

.gfv365-section {
  padding: 72px;
  background: var(--warm-white);
}

.gfv365-card {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #17446a;
  border-radius: 10px;
  background: white;
  box-shadow: 0 18px 42px rgba(20, 45, 39, 0.12);
}

.gfv365-ribbon {
  width: fit-content;
  margin: 24px 24px 0;
  padding: 8px 13px;
  border-radius: 999px;
  color: white;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gfv365-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 28px;
  padding: 24px;
}

.gfv365-copy {
  display: grid;
  gap: 14px;
}

.gfv365-kicker {
  margin: 0;
  color: #17446a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.gfv365-copy h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: 54px;
  line-height: 1;
}

.gfv365-price {
  margin: 0;
  color: var(--green);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.05;
}

.gfv365-annual {
  margin: 0;
  color: #17446a;
  font-size: 18px;
}

.gfv365-copy p,
.gfv365-action p,
.gfv365-form-head p,
.gfv365-legal {
  color: var(--muted);
  line-height: 1.58;
}

.gfv365-copy h3 {
  margin: 10px 0 0;
  color: var(--green-dark);
}

.gfv365-benefits {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gfv365-benefits li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  line-height: 1.45;
}

.gfv365-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 999px;
  color: white;
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.gfv365-action {
  align-self: start;
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(23, 68, 106, 0.18);
  border-radius: 8px;
  background: #f7fbf8;
}

.gfv365-summary {
  padding: 16px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: white;
}

.gfv365-summary span,
.gfv365-summary strong {
  display: block;
}

.gfv365-summary span {
  color: #17446a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gfv365-summary strong {
  margin-top: 6px;
  color: var(--green-dark);
  font-size: 26px;
  line-height: 1.05;
}

.gfv365-summary p,
.gfv365-photo,
.gfv365-promise,
.gfv365-button-note,
.gfv365-legal {
  margin: 0;
}

.gfv365-photo {
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 900;
}

.gfv365-promise strong,
.gfv365-button-note strong {
  color: var(--green-dark);
}

.gfv365-button {
  width: 100%;
  border: 0;
  letter-spacing: 0.02em;
}

.gfv365-button:hover,
.gfv365-button:focus-visible,
.gfv365-submit:hover,
.gfv365-submit:focus-visible {
  background: #173f30;
}

.gfv365-legal {
  padding-top: 12px;
  border-top: 1px solid rgba(23, 68, 106, 0.18);
  font-size: 12px;
}

.gfv365-form-panel {
  margin: 0 24px 24px;
  padding: 22px;
  border-top: 1px solid rgba(23, 68, 106, 0.18);
  border-radius: 8px;
  background: #f7f9f9;
}

.gfv365-form-head {
  margin-bottom: 16px;
}

.gfv365-form-head h3 {
  margin: 0 0 6px;
  color: var(--green-dark);
  font-size: 26px;
}

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

.gfv365-form label {
  margin: 0;
}

.gfv365-full,
.gfv365-submit,
.gfv365-confirmation {
  grid-column: 1 / -1;
}

.gfv365-submit {
  width: fit-content;
  border: 0;
}

.gfv365-confirmation {
  margin: 16px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(0, 122, 83, 0.28);
  border-radius: 8px;
  color: var(--green-dark);
  background: #eef8f0;
  line-height: 1.5;
}

.legal-footer {
  padding: 54px 72px;
  color: rgba(255, 255, 255, 0.82);
  background: #17362f;
}

.legal-footer-head {
  max-width: 1120px;
  margin: 0 auto 22px;
}

.legal-footer-head .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.legal-footer-head h2 {
  max-width: 760px;
  margin: 0;
  color: white;
  font-size: 34px;
}

.legal-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.legal-grid article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.legal-grid h3 {
  margin: 0 0 10px;
  color: white;
  font-size: 16px;
}

.legal-grid p,
.legal-grid li {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.5;
}

.legal-grid p {
  margin: 0 0 10px;
}

.legal-grid p:last-child {
  margin-bottom: 0;
}

.legal-grid ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 72px;
  color: rgba(255, 255, 255, 0.72);
  background: #142d27;
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1240px) {
  .site-header {
    padding-left: 28px;
    padding-right: 28px;
    grid-template-columns: minmax(300px, auto) 1fr minmax(124px, auto);
  }

  .hero-copy {
    padding-left: 42px;
    padding-right: 42px;
  }

  h1 {
    font-size: 54px;
  }

  .hero-readout {
    right: 34px;
  }

  .audit-workspace,
  .section,
  .gfv365-section,
  .contact,
  .legal-footer {
    padding-left: 28px;
    padding-right: 28px;
  }

  .workspace-layout {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .inspector {
    position: static;
    grid-column: 1 / -1;
  }
}

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

  .menu-button {
    display: inline-block;
    justify-self: end;
  }

  .nav {
    position: absolute;
    top: 71px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

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

  .onsite-audit {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .onsite-audit .button {
    grid-column: 2;
    width: fit-content;
  }

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

  .control-rail {
    position: static;
    order: 2;
  }

  .evidence-viewport {
    order: 1;
  }

  .inspector {
    order: 3;
  }

  .visual-grid,
  .method-layout,
  .gfv365-layout,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .clinic-map {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 760px) {
  .site-header {
    gap: 10px;
    min-height: 66px;
    padding: 11px 16px;
    grid-template-columns: 1fr auto;
  }

  .brand-logo {
    width: 178px;
    height: 40px;
  }

  .brand {
    gap: 8px;
  }

  .brand-text,
  .header-cta {
    display: none;
  }

  .brand-service {
    width: 58px;
    height: 40px;
    transform: translateX(8px);
  }

  .brand-av-logo {
    width: 58px;
    height: 40px;
  }

  .nav {
    top: 66px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(33, 79, 58, 0.5), rgba(20, 45, 39, 0.95)),
      linear-gradient(0deg, rgba(20, 45, 39, 0.72), transparent 55%);
  }

  .hero-copy {
    padding: 44px 20px 42px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 18px;
  }

  .hero-actions,
  .workspace-actions {
    flex-direction: column;
  }

  .onsite-audit {
    grid-template-columns: 1fr;
  }

  .onsite-audit .button {
    grid-column: auto;
    width: 100%;
  }

  .button,
  .contact-form .button {
    width: 100%;
  }

  .hero-readout {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 0 20px 24px;
  }

  .audit-workspace {
    padding: 42px 14px 84px;
  }

  .workspace-topbar {
    grid-template-columns: 1fr;
    margin-bottom: 10px;
  }

  .button-filter {
    display: inline-flex;
  }

  .workspace-actions {
    position: fixed;
    right: 14px;
    bottom: 66px;
    z-index: 68;
    width: auto;
  }

  .workspace-actions .button-outline,
  .workspace-actions .button-primary {
    display: none;
  }

  .workspace-actions .button-filter {
    width: auto;
    min-height: 44px;
    padding: 10px 14px;
    box-shadow: var(--shadow-tight);
  }

  .section-lead {
    font-size: 15px;
    line-height: 1.55;
  }

  .status-strip {
    display: grid;
    margin-bottom: 10px;
  }

  .status-strip span:nth-child(n+2) {
    display: none;
  }

  .metric-grid {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
    margin-bottom: 10px;
    scroll-snap-type: x proximity;
  }

  .metric-grid article {
    flex: 0 0 154px;
    min-height: 104px;
    padding: 16px;
    scroll-snap-align: start;
  }

  .metric-grid strong {
    font-size: 26px;
  }

  .control-rail {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 80;
    max-height: min(78svh, 640px);
    overflow: auto;
    transform: translateY(110svh);
    transition: transform 0.22s ease;
  }

  body.filters-open .control-rail {
    transform: translateY(0);
  }

  .close-panel {
    display: inline-grid;
    place-items: center;
  }

  body.filters-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(20, 45, 39, 0.42);
  }

  .viewport-head {
    grid-template-columns: 1fr;
  }

  .active-chips {
    justify-content: flex-start;
    min-width: 0;
  }

  .module-row {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding: 16px;
  }

  .score-cell {
    grid-template-columns: 1fr 52px;
  }

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

  .status-pill {
    width: fit-content;
  }

  .clinic-map,
  .impact-view {
    min-height: 0;
    padding: 16px;
  }

  .clinic-map .panel-head {
    display: grid;
    gap: 8px;
  }

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

  .zone {
    min-height: 112px;
  }

  .clinic-map .panel-head span {
    max-width: 100%;
    text-align: left;
  }

  .mobile-tabs {
    position: sticky;
    bottom: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 16px -14px -84px;
    border-top: 1px solid var(--line);
    background: white;
  }

  .mobile-tabs a {
    min-height: 54px;
    display: grid;
    place-items: center;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
  }

  .mobile-tabs a:focus-visible,
  .mobile-tabs a:hover {
    color: var(--green-dark);
    background: var(--soft);
  }

  .section,
  .gfv365-section,
  .contact,
  .legal-footer {
    padding: 58px 20px;
  }

  .price-guide-grid,
  .price-guide-maintenance,
  .gfv365-form,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .gfv365-layout {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .gfv365-ribbon {
    margin: 18px 18px 0;
  }

  .gfv365-copy h2 {
    font-size: 42px;
  }

  .gfv365-price {
    font-size: 28px;
  }

  .gfv365-action,
  .gfv365-form-panel {
    padding: 18px;
  }

  .gfv365-form-panel {
    margin: 0 18px 18px;
  }

  .legal-footer-head h2 {
    font-size: 28px;
  }

  .service-grid,
  .method-steps li,
  .deliverables-list div {
    grid-template-columns: 1fr;
  }

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

  .contact-form {
    padding: 22px;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 20px;
  }
}

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

  .clinic-zones {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 34px;
  }
}

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

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