:root {
  --ch-navy: #1e3565;
  --ch-green: #9acf8c;
  --ch-mint: #8ac0a1;
  --ch-teal: #60a2a9;
  --ch-ink: #243b5f;
  --ch-muted: #5f6f82;
  --ch-line: rgba(30, 53, 101, 0.14);
  --ch-soft: #f5faf8;
  --ch-warm: #fff8f3;
}

html {
  scroll-behavior: smooth;
}

body.corporate-health-page {
  margin: 0;
  background: #ffffff;
  color: var(--ch-ink);
  font-family: "TodaySansNow Pro", Arial, sans-serif;
}

.corporate-health-page header {
  background: var(--ch-navy);
}

.corporate-health-page .the-logo {
  max-width: 170px;
  height: auto;
}

.corporate-health-page main {
  width: 100%;
}

.ch-section {
  width: 100%;
  padding: 72px min(7vw, 92px);
}

.ch-section.ch-soft {
  background: var(--ch-soft);
}

.ch-section.ch-warm {
  background: var(--ch-warm);
}

.ch-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 44px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 54px;
  background:
    linear-gradient(180deg, rgba(245, 250, 248, 0.95), rgba(255, 255, 255, 1)),
    #ffffff;
}

.ch-eyebrow {
  margin: 0 0 16px;
  color: var(--ch-teal);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ch-hero h1,
.ch-title {
  margin: 0;
  color: var(--ch-navy);
  font-family: "Tiempos Fine", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

.ch-hero h1 {
  max-width: 960px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
}

.ch-hero h1 span,
.ch-title span {
  color: #5fa56f;
}

.ch-lede {
  max-width: 900px;
  margin: 22px 0 0;
  color: var(--ch-ink);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

.ch-body {
  color: var(--ch-muted);
  font-size: 17px;
  line-height: 1.65;
}

.ch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.ch-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  border: 1px solid var(--ch-navy);
  background: var(--ch-navy);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.ch-button:hover {
  text-decoration: none;
}

.ch-button.secondary {
  background: #ffffff;
  color: var(--ch-navy);
}

.ch-button.accent {
  border-color: var(--ch-green);
  background: var(--ch-green);
  color: var(--ch-navy);
}

.ch-hero-media {
  position: relative;
}

.ch-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(30, 53, 101, 0.16);
}

.ch-proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.ch-proof {
  padding: 16px;
  border: 1px solid var(--ch-line);
  border-radius: 8px;
  background: #ffffff;
}

.ch-proof strong {
  display: block;
  color: var(--ch-navy);
  font-size: 17px;
  line-height: 1.25;
}

.ch-proof span {
  display: block;
  margin-top: 8px;
  color: var(--ch-muted);
  font-size: 15px;
  line-height: 1.5;
}

.ch-title {
  max-width: 900px;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.03;
}

.ch-section-head {
  max-width: 980px;
  margin-bottom: 34px;
}

.ch-section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.ch-section-head .ch-body {
  margin-top: 16px;
}

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

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

.ch-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--ch-line);
  border-radius: 8px;
  background: #ffffff;
}

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

.ch-card p,
.ch-card li {
  color: var(--ch-muted);
  font-size: 16px;
  line-height: 1.62;
}

.ch-card p {
  margin: 12px 0 0;
}

.ch-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.ch-card a:not(.ch-button) {
  color: var(--ch-navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.ch-link {
  margin-top: auto;
  padding-top: 18px;
}

.ch-process {
  counter-reset: ch-step;
}

.ch-process .ch-card h3::before {
  counter-increment: ch-step;
  content: counter(ch-step, decimal-leading-zero);
  display: block;
  margin-bottom: 12px;
  color: var(--ch-teal);
  font-size: 15px;
  font-weight: 800;
}

.ch-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 36px;
  align-items: start;
}

.ch-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ch-list li {
  padding: 14px 16px;
  border: 1px solid var(--ch-line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ch-ink);
  font-size: 16px;
  line-height: 1.45;
}

.ch-faq {
  display: grid;
  gap: 12px;
}

.ch-faq details {
  border: 1px solid var(--ch-line);
  border-radius: 8px;
  background: #ffffff;
}

.ch-faq summary {
  padding: 18px 20px;
  color: var(--ch-navy);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
}

.ch-faq p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--ch-muted);
  font-size: 16px;
  line-height: 1.62;
}

.ch-footer-cta {
  text-align: center;
}

.ch-footer-cta .ch-title,
.ch-footer-cta .ch-body {
  margin-right: auto;
  margin-left: auto;
}

.ch-footer-cta .ch-actions {
  justify-content: center;
}

@media screen and (max-width: 980px) {
  .ch-hero,
  .ch-band {
    grid-template-columns: 1fr;
  }

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

@media screen and (max-width: 640px) {
  .ch-section {
    padding: 54px 20px;
  }

  .ch-hero {
    padding-top: 46px;
  }

  .ch-proof-row,
  .ch-grid,
  .ch-grid.two {
    grid-template-columns: 1fr;
  }

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

  .ch-button {
    width: 100%;
  }
}
