:root {
  --health-ink: #071a38;
  --health-text: #34445b;
  --health-muted: #6c7889;
  --health-blue: #0d5fe8;
  --health-soft: #f5f7fa;
  --health-line: #d9e0e8;
  --health-success: #168453;
  --health-warning: #b86f08;
  --health-critical: #c93636;
  --health-white: #ffffff;
}

* {
  box-sizing: border-box;
}

.health-page {
  margin: 0;
  color: var(--health-text);
  background: var(--health-white);
  font-family: Manrope, Arial, sans-serif;
}

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

.health-hero {
  padding: 58px 0 52px;
  color: #ffffff;
  background: var(--health-ink);
}

.health-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
  color: #aebed4;
  font-size: 13px;
}

.health-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.health-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 60px;
  align-items: center;
}

.health-hero h1 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(38px, 5.8vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.052em;
}

.health-hero-copy > p {
  max-width: 730px;
  margin: 23px 0 0;
  color: #c7d3e4;
  font-size: 18px;
  line-height: 1.65;
}

.health-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 27px;
}

.health-tags span {
  padding: 7px 10px;
  color: #dbe7f7;
  border: 1px solid rgba(255,255,255,.22);
  font-size: 12px;
  font-weight: 700;
}

.health-form-box {
  padding: 28px;
  color: var(--health-text);
  background: #ffffff;
  border-top: 5px solid var(--health-blue);
}

.health-form-box h2 {
  margin: 0 0 8px;
  color: var(--health-ink);
  font-size: 24px;
}

.health-form-box > p {
  margin: 0 0 20px;
  color: var(--health-muted);
  font-size: 14px;
}

.health-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--health-ink);
  font-size: 13px;
  font-weight: 800;
}

.health-form-row {
  display: flex;
}

.health-form input {
  min-width: 0;
  flex: 1;
  height: 52px;
  padding: 0 14px;
  color: var(--health-ink);
  background: #ffffff;
  border: 1px solid #aeb9c8;
  border-right: 0;
  border-radius: 0;
  outline: none;
  font: inherit;
}

.health-form input:focus {
  border-color: var(--health-blue);
  box-shadow: inset 0 0 0 1px var(--health-blue);
}

.health-form button {
  min-width: 145px;
  height: 52px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--health-blue);
  border: 1px solid var(--health-blue);
  border-radius: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.health-form button:disabled {
  cursor: wait;
  opacity: .7;
}

.health-form-message {
  min-height: 21px;
  margin: 11px 0 0;
  color: var(--health-critical);
  font-size: 13px;
}

.health-form-note {
  margin: 9px 0 0;
  color: var(--health-muted);
  font-size: 11px;
  line-height: 1.5;
}

.health-loading {
  display: none;
  padding: 28px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--health-line);
}

.health-loading.is-visible {
  display: block;
}

.health-loading-line {
  position: relative;
  height: 4px;
  overflow: hidden;
  background: #dce3ed;
}

.health-loading-line::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 35%;
  background: var(--health-blue);
  content: "";
  animation: health-loading 1.25s linear infinite;
}

@keyframes health-loading {
  from {
    left: -35%;
  }

  to {
    left: 100%;
  }
}

.health-loading p {
  margin: 12px 0 0;
  color: var(--health-muted);
  font-size: 14px;
}

.health-result {
  display: none;
  padding: 48px 0 65px;
  background: #ffffff;
  border-bottom: 1px solid var(--health-line);
}

.health-result.is-visible {
  display: block;
}

.health-result-head {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--health-line);
}

.health-score {
  padding: 24px;
  text-align: center;
  border: 2px solid var(--health-ink);
}

.health-score small {
  display: block;
  color: var(--health-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.health-score strong {
  display: block;
  margin: 6px 0;
  color: var(--health-ink);
  font-size: 64px;
  line-height: 1;
  letter-spacing: -.06em;
}

.health-score span {
  color: var(--health-muted);
  font-size: 12px;
}

.health-result-title h2 {
  margin: 0;
  color: var(--health-ink);
  font-size: clamp(29px, 4vw, 43px);
  letter-spacing: -.035em;
}

.health-result-title p {
  margin: 10px 0 0;
  word-break: break-word;
}

.health-summary {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 25px;
  border-top: 1px solid var(--health-line);
  border-left: 1px solid var(--health-line);
}

.health-summary div {
  min-height: 90px;
  padding: 17px;
  border-right: 1px solid var(--health-line);
  border-bottom: 1px solid var(--health-line);
}

.health-summary strong {
  display: block;
  color: var(--health-ink);
  font-size: 24px;
}

.health-summary span {
  display: block;
  margin-top: 3px;
  color: var(--health-muted);
  font-size: 12px;
}

.health-category-list {
  margin-top: 38px;
}

.health-category {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 55px;
  gap: 18px;
  align-items: center;
  margin: 15px 0;
}

.health-category-name {
  color: var(--health-ink);
  font-size: 14px;
  font-weight: 800;
}

.health-category-bar {
  height: 9px;
  background: #e5e9ef;
}

.health-category-bar span {
  display: block;
  height: 100%;
  background: var(--health-blue);
}

.health-category-value {
  color: var(--health-ink);
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

.health-report-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  margin-top: 48px;
}

.health-report-group h3 {
  margin: 0 0 16px;
  color: var(--health-ink);
  font-size: 23px;
}

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

.health-report-item {
  padding: 16px 17px;
  background: #ffffff;
  border: 1px solid var(--health-line);
  border-left-width: 4px;
}

.health-report-item.is-critical {
  border-left-color: var(--health-critical);
}

.health-report-item.is-warning {
  border-left-color: var(--health-warning);
}

.health-report-item.is-success {
  border-left-color: var(--health-success);
}

.health-report-item strong {
  display: block;
  color: var(--health-ink);
  font-size: 14px;
}

.health-report-item p {
  margin: 5px 0 0;
  color: var(--health-muted);
  font-size: 12px;
  line-height: 1.55;
  word-break: break-word;
}

.health-empty {
  padding: 18px;
  color: var(--health-muted);
  background: var(--health-soft);
  border: 1px solid var(--health-line);
  font-size: 13px;
}

.health-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.health-result-actions button,
.health-result-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  color: #ffffff;
  background: var(--health-ink);
  border: 1px solid var(--health-ink);
  border-radius: 0;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.health-result-actions a {
  color: var(--health-ink);
  background: #ffffff;
}

.health-details {
  margin-top: 30px;
  border-top: 1px solid var(--health-line);
}

.health-details details {
  padding: 17px 0;
  border-bottom: 1px solid var(--health-line);
}

.health-details summary {
  color: var(--health-ink);
  cursor: pointer;
  font-weight: 800;
}

.health-url-table {
  width: 100%;
  margin-top: 15px;
  border-collapse: collapse;
  font-size: 12px;
}

.health-url-table th,
.health-url-table td {
  padding: 10px;
  border: 1px solid var(--health-line);
  text-align: left;
  vertical-align: top;
}

.health-url-table td {
  word-break: break-all;
}

.health-content {
  padding: 70px 0;
}

.health-content-intro {
  max-width: 850px;
  margin-bottom: 46px;
}

.health-content h2 {
  margin: 0 0 15px;
  color: var(--health-ink);
  font-size: clamp(29px, 4vw, 43px);
  line-height: 1.15;
  letter-spacing: -.035em;
}

.health-content p {
  margin: 0 0 15px;
  line-height: 1.75;
}

.health-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--health-line);
  border-left: 1px solid var(--health-line);
}

.health-content-grid article {
  min-height: 260px;
  padding: 31px;
  border-right: 1px solid var(--health-line);
  border-bottom: 1px solid var(--health-line);
}

.health-content-grid h3 {
  margin: 0 0 11px;
  color: var(--health-ink);
  font-size: 22px;
}

.health-content-grid ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.health-content-grid li {
  margin: 7px 0;
}

.health-faq {
  padding: 65px 0;
  background: var(--health-soft);
  border-top: 1px solid var(--health-line);
}

.health-faq h2 {
  margin: 0 0 25px;
  color: var(--health-ink);
  font-size: 37px;
}

.health-faq details {
  padding: 18px 0;
  border-top: 1px solid #ccd4df;
}

.health-faq details:last-child {
  border-bottom: 1px solid #ccd4df;
}

.health-faq summary {
  color: var(--health-ink);
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
}

.health-faq p {
  max-width: 850px;
  margin: 12px 0 0;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .health-hero-grid,
  .health-report-columns {
    grid-template-columns: 1fr;
  }

  .health-form-box {
    max-width: 650px;
  }

  .health-summary {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .health-shell {
    width: calc(100% - 26px);
  }

  .health-hero {
    padding: 38px 0;
  }

  .health-hero h1 {
    font-size: 40px;
  }

  .health-form-box {
    padding: 20px;
  }

  .health-form-row {
    display: block;
  }

  .health-form input {
    width: 100%;
    border-right: 1px solid #aeb9c8;
  }

  .health-form button {
    width: 100%;
    margin-top: 9px;
  }

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

  .health-summary {
    grid-template-columns: 1fr 1fr;
  }

  .health-category {
    grid-template-columns: 1fr 48px;
  }

  .health-category-bar {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .health-content-grid {
    grid-template-columns: 1fr;
  }

  .health-content-grid article {
    min-height: auto;
  }
}

@media print {
  .three-premium-header,
  .three-static-footer,
  .floating-social-left,
  .health-hero,
  .health-loading,
  .health-content,
  .health-faq,
  .health-result-actions {
    display: none !important;
  }

  .health-result {
    display: block !important;
    padding: 0;
  }

  .health-shell {
    width: 100%;
  }
}

/* 3E PROFESSIONAL AUDIT VIEW START */

.health-summary {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.health-summary strong {
  word-break: break-word;
}

.health-url-table {
  min-width: 1250px;
}

.health-url-table th {
  white-space: nowrap;
}

@media (max-width: 760px) {
  .health-summary {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* 3E PROFESSIONAL AUDIT VIEW END */
