.health-check-page {
  color: var(--text-color);
  background: #fff;
}

.hc-hero {
  position: relative;
  overflow: hidden;
  padding: 5.6rem 0;
  color: #fff;
  background: var(--gradient-hero);
}

.hc-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 16%, rgba(23, 180, 161, .24), transparent 34%),
    radial-gradient(circle at 90% 85%, rgba(70, 151, 203, .16), transparent 30%);
}

.hc-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 3.5rem;
  align-items: center;
}

.hc-eyebrow {
  display: block;
  margin-bottom: .8rem;
  color: #64dfcf;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hc-hero h1 {
  max-width: 780px;
  margin: 0 0 1.25rem;
  color: #fff;
  font-size: clamp(2.55rem, 4.9vw, 4.25rem);
  line-height: 1.02;
}

.hc-hero .hc-lead {
  margin: 0 0 .85rem;
  color: #fff;
  font-size: clamp(1.16rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.5;
}

.hc-hero-copy > p:not(.hc-lead) {
  max-width: 720px;
  color: rgba(255, 255, 255, .79);
  font-size: 1rem;
}

.hc-pills,
.hc-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
}

.hc-pills {
  margin-top: 1.4rem;
}

.hc-pills span {
  padding: .4rem .72rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font-size: .76rem;
  font-weight: 750;
}

.hc-actions {
  gap: 1rem;
  margin-top: 2rem;
}

.hc-text-link {
  display: inline-flex;
  gap: .45rem;
  align-items: center;
  color: #fff;
  font-weight: 750;
}

.hc-text-link:hover {
  color: #8ff0e3;
}

.hc-text-link span {
  transition: transform .2s ease;
}

.hc-text-link:hover span {
  transform: translateX(.2rem);
}

.hc-hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: #071c2f;
  box-shadow: var(--shadow-lg);
}

.hc-hero-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.hc-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hc-hero-media figcaption {
  padding: .5rem .75rem;
  color: rgba(255, 255, 255, .58);
  font-size: .67rem;
  text-align: right;
}

.hc-hero-media figcaption a {
  color: inherit;
}

.hc-trust {
  border-bottom: 1px solid var(--border-color);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.hc-trust .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hc-trust span {
  padding: 1.05rem .8rem .95rem;
  color: var(--primary-color);
  font-size: .77rem;
  font-weight: 800;
  text-align: center;
}

.hc-trust span::before {
  display: inline-block;
  width: .48rem;
  height: .48rem;
  margin-right: .5rem;
  border-radius: 50%;
  background: var(--accent-color);
  content: "";
  vertical-align: .04rem;
}

.hc-trust span + span {
  border-left: 1px solid var(--border-color);
}

.hc-shell {
  width: min(100% - 2rem, 1120px);
  margin: 0 auto;
  padding: 4.5rem 0 5rem;
}

.hc-content {
  min-width: 0;
  color: #273b4c;
  font-size: .98rem;
  line-height: 1.75;
}

.hc-content > *:first-child {
  margin-top: 0;
}

.hc-content h2 {
  position: relative;
  max-width: 980px;
  margin: 5.2rem auto 1.35rem;
  padding-top: .85rem;
  color: var(--primary-color);
  font-size: clamp(1.9rem, 3.2vw, 2.65rem);
  line-height: 1.14;
  text-align: center;
}

.hc-content h2::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3.8rem;
  height: 4px;
  border-radius: 999px;
  background: var(--accent-color);
  content: "";
  transform: translateX(-50%);
}

.hc-content h3 {
  margin: 2.8rem 0 1rem;
  color: var(--primary-color);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.25;
}

.hc-content p {
  margin: 0 0 1.15rem;
}

.hc-content strong {
  color: var(--primary-color);
}

.hc-content ul,
.hc-content ol {
  margin: 0 0 1.4rem;
  padding-left: 1.3rem;
}

.hc-content li {
  margin: .38rem 0;
  padding-left: .2rem;
}

.hc-content li::marker {
  color: var(--accent-dark);
  font-weight: 800;
}

.hc-content blockquote {
  max-width: 960px;
  margin: 2.25rem auto;
  padding: 1.35rem 1.5rem 1.35rem 1.75rem;
  border: 0;
  border-left: 5px solid var(--accent-color);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--primary-color);
  background: var(--bg-light);
  box-shadow: var(--shadow-sm);
  font-size: 1.08rem;
  font-weight: 700;
}

.hc-content blockquote p:last-child {
  margin-bottom: 0;
}

.hc-content hr {
  height: 1px;
  margin: 4rem 0;
  border: 0;
  background: var(--border-color);
}

.hc-content table {
  display: table;
  width: 100%;
  margin: 2rem 0;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  box-shadow: var(--shadow);
}

.hc-content th,
.hc-content td {
  padding: .85rem 1rem;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  font-size: .78rem;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
}

.hc-content th {
  color: #fff;
  background: var(--primary-color);
  font-size: .74rem;
}

.hc-content tr:last-child td {
  border-bottom: 0;
}

.hc-content th:last-child,
.hc-content td:last-child {
  border-right: 0;
}

.hc-content tbody tr:nth-child(even) {
  background: var(--bg-muted);
}

.hc-content a {
  font-weight: 650;
  text-decoration-color: rgba(23, 180, 161, .35);
  text-decoration-line: underline;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

.hc-principle {
  max-width: 960px;
  margin: 0 auto 4rem;
  padding: 1.65rem 1.8rem;
  border: 1px solid rgba(23, 180, 161, .3);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #eefaf7, #f7fbff);
  box-shadow: var(--shadow);
  text-align: center;
}

.hc-principle span {
  display: block;
  margin-bottom: .45rem;
  color: var(--accent-dark);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hc-principle p {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.14rem;
  font-weight: 750;
  line-height: 1.55;
}

.hc-audit-map {
  max-width: 1040px;
  margin: 2.5rem auto;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--gradient-primary);
  box-shadow: var(--shadow-lg);
}

.hc-audit-core {
  max-width: 620px;
  margin: 0 auto 1.25rem;
  padding: 1.2rem;
  border: 1px solid rgba(100, 223, 207, .55);
  border-radius: .8rem;
  color: #fff;
  background: linear-gradient(135deg, rgba(23, 180, 161, .34), rgba(23, 180, 161, .12));
  text-align: center;
}

.hc-audit-core span,
.hc-audit-core small {
  display: block;
}

.hc-audit-core span {
  color: #64dfcf;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hc-audit-core strong {
  display: block;
  margin: .15rem 0;
  color: #fff;
  font-size: 1.25rem;
}

.hc-audit-core small {
  color: #bed2df;
  font-size: .72rem;
}

.hc-audit-fields {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .75rem;
}

.hc-audit-field {
  min-height: 105px;
  padding: .9rem .65rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: .7rem;
  color: #fff;
  background: rgba(255, 255, 255, .07);
  text-align: center;
}

.hc-audit-field strong,
.hc-audit-field small {
  display: block;
}

.hc-audit-field strong {
  color: #fff;
  font-size: .78rem;
}

.hc-audit-field small {
  margin-top: .38rem;
  color: #a9c2d4;
  font-size: .65rem;
  line-height: 1.45;
}

.hc-situations,
.hc-deliverables,
.hc-closing-grid {
  display: grid;
  gap: 1rem;
  margin: 2.4rem 0;
}

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

.hc-situation,
.hc-deliverable,
.hc-closing-card {
  padding: 1.35rem;
  border: 1px solid var(--border-color);
  border-radius: .85rem;
  background: linear-gradient(145deg, #fff, #f5fbfa);
  box-shadow: var(--shadow-sm);
}

.hc-situation span,
.hc-deliverable span,
.hc-closing-card span {
  display: inline-flex;
  width: 2.1rem;
  height: 2.1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: .9rem;
  border-radius: .58rem;
  color: #64dfcf;
  background: var(--primary-color);
  font-size: .68rem;
  font-weight: 850;
}

.hc-situation strong,
.hc-situation small,
.hc-deliverable strong,
.hc-deliverable small,
.hc-closing-card strong,
.hc-closing-card small {
  display: block;
}

.hc-situation strong,
.hc-deliverable strong,
.hc-closing-card strong {
  color: var(--primary-color);
  font-size: .9rem;
  line-height: 1.35;
}

.hc-situation small,
.hc-deliverable small,
.hc-closing-card small {
  margin-top: .48rem;
  color: var(--text-light);
  font-size: .72rem;
  line-height: 1.55;
}

.hc-check-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.5rem 0;
}

.hc-check-group {
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: .8rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.hc-check-group header {
  padding: 1rem 1.2rem;
  color: #fff;
  background: var(--primary-color);
}

.hc-check-group header span,
.hc-check-group header strong {
  display: block;
}

.hc-check-group header span {
  color: #64dfcf;
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hc-check-group header strong {
  color: #fff;
  font-size: .95rem;
}

.hc-check-group div {
  padding: 1rem 1.2rem;
}

.hc-check-group p {
  margin: 0;
  color: var(--text-light);
  font-size: .74rem;
  line-height: 1.65;
}

.hc-report-photo {
  max-width: 720px;
  margin: 2.5rem auto;
}

.hc-report-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-lg);
}

.hc-report-photo figcaption {
  padding: .5rem .2rem 0;
  color: var(--text-light);
  font-size: .68rem;
  text-align: right;
}

.hc-scorecard {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .7rem;
  margin: 2.4rem auto;
}

.hc-score {
  padding: 1rem .8rem;
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--score-color);
  border-radius: .7rem;
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.hc-score strong,
.hc-score small {
  display: block;
}

.hc-score strong {
  color: var(--primary-color);
  font-size: .78rem;
}

.hc-score small {
  margin-top: .3rem;
  color: var(--text-light);
  font-size: .66rem;
  line-height: 1.4;
}

.hc-score.critical { --score-color: #c94c4c; }
.hc-score.high { --score-color: #de8b32; }
.hc-score.medium { --score-color: #e2bd3f; }
.hc-score.watch { --score-color: #4697cb; }
.hc-score.good { --score-color: #17b4a1; }

.hc-deliverables {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hc-process {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .7rem;
  margin: 2.5rem 0;
}

.hc-process-step {
  position: relative;
  min-height: 145px;
  padding: 1rem .75rem;
  border: 1px solid var(--border-color);
  border-radius: .8rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.hc-process-step:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -.58rem;
  z-index: 2;
  color: var(--accent-color);
  content: "→";
  font-weight: 900;
  transform: translateY(-50%);
}

.hc-process-step span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: .7rem;
  border-radius: .55rem;
  color: var(--accent-dark);
  background: var(--bg-light);
  font-size: .68rem;
  font-weight: 850;
}

.hc-process-step strong,
.hc-process-step small {
  display: block;
}

.hc-process-step strong {
  color: var(--primary-color);
  font-size: .78rem;
  line-height: 1.4;
}

.hc-process-step small {
  margin-top: .35rem;
  color: var(--text-light);
  font-size: .65rem;
  line-height: 1.4;
}

.hc-download {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: center;
  margin: 3rem 0;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(23, 180, 161, .3);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #eefaf7, #f7fbff);
  box-shadow: var(--shadow);
}

.hc-download-icon {
  display: inline-flex;
  width: 3.3rem;
  height: 3.3rem;
  align-items: center;
  justify-content: center;
  border-radius: .8rem;
  color: #fff;
  background: var(--primary-color);
  font-size: .78rem;
  font-weight: 900;
}

.hc-download-copy strong,
.hc-download-copy small {
  display: block;
}

.hc-download-copy strong {
  color: var(--primary-color);
  font-size: 1rem;
}

.hc-download-copy small {
  margin-top: .25rem;
  color: var(--text-light);
  font-size: .72rem;
  line-height: 1.5;
}

.hc-download .btn {
  white-space: nowrap;
}

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

.hc-related {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.4rem;
  padding: 1.15rem 1.3rem;
  border: 1px solid var(--border-color);
  border-radius: .8rem;
  background: var(--bg-muted);
}

.hc-related > span {
  flex: 0 0 auto;
  color: var(--primary-color);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hc-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1.15rem;
  justify-content: flex-end;
}

.hc-related-links a {
  color: var(--primary-color);
  font-size: .75rem;
  font-weight: 750;
  text-decoration: none;
}

.hc-related-links a:hover {
  color: var(--accent-dark);
}

.hc-related-links b {
  color: var(--accent-color);
}

.hc-final-cta {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  color: #fff;
  background: var(--gradient-hero);
  text-align: center;
}

.hc-final-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 0, rgba(23, 180, 161, .2), transparent 45%);
}

.hc-final-cta .container {
  position: relative;
}

.hc-final-cta h2 {
  max-width: 850px;
  margin: 0 auto 1rem;
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
}

.hc-final-cta p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .78);
  font-size: 1.05rem;
}

.hc-final-cta .hc-actions {
  justify-content: center;
}

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

  .hc-hero-copy {
    text-align: center;
  }

  .hc-hero-copy > p {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .hc-pills,
  .hc-actions {
    justify-content: center;
  }

  .hc-hero-media {
    width: min(100%, 800px);
    margin: auto;
  }

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

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

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

  .hc-process-step::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .hc-hero {
    padding: 4rem 0;
  }

  .hc-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.1rem);
  }

  .hc-hero-grid {
    gap: 2.25rem;
  }

  .hc-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hc-actions .btn,
  .hc-text-link {
    justify-content: center;
    text-align: center;
  }

  .hc-trust .container {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }

  .hc-trust span:nth-child(3) {
    border-top: 1px solid var(--border-color);
    border-left: 0;
  }

  .hc-trust span:nth-child(4) {
    border-top: 1px solid var(--border-color);
  }

  .hc-shell {
    width: min(100% - 1.5rem, 1120px);
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
  }

  .hc-content {
    font-size: .94rem;
  }

  .hc-content h2 {
    margin-top: 4rem;
  }

  .hc-content table {
    display: block;
    overflow-x: auto;
  }

  .hc-audit-fields,
  .hc-situations,
  .hc-check-groups,
  .hc-scorecard,
  .hc-closing-grid {
    grid-template-columns: 1fr;
  }

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

  .hc-download {
    grid-template-columns: auto 1fr;
  }

  .hc-download .btn {
    grid-column: 1 / -1;
  }

  .hc-related {
    align-items: flex-start;
    flex-direction: column;
  }

  .hc-related-links {
    justify-content: flex-start;
  }

  .hc-final-cta {
    padding: 4rem 0;
  }
}

@media (max-width: 430px) {
  .hc-trust span {
    padding: .9rem .35rem;
    font-size: .69rem;
  }

  .hc-audit-map {
    padding: 1rem;
  }

  .hc-deliverables,
  .hc-process {
    grid-template-columns: 1fr;
  }

  .hc-download {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hc-download-icon {
    margin: auto;
  }

  .hc-related-links {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hc-text-link span {
    transition: none;
  }
}
