.why-page {
  --why-brand: #246f7c;
  --why-brand-deep: #174f59;
  --why-green: #557a58;
  --why-gold: #ae8449;
  --why-ink: #19363b;
  --why-muted: #607276;
  --why-line: #d8e5e7;
  --why-soft: #f3f8f8;
  --why-warm: #fbf7ef;
  --why-shadow: 0 24px 65px rgba(29, 78, 86, .1);
  color: var(--why-ink);
  margin-bottom: clamp(3rem, 7vw, 6rem);
  margin-top: clamp(1.5rem, 4vw, 3.5rem);
  max-width: 1200px;
}

.why-page *,
.why-page *::before,
.why-page *::after {
  box-sizing: border-box;
}

.why-page h1,
.why-page h2,
.why-page h3,
.why-page p {
  text-wrap: pretty;
}

.why-kicker {
  color: var(--why-gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  margin: 0 0 .75rem;
  text-transform: uppercase;
}

.why-hero {
  background:
    radial-gradient(circle at 7% 8%, rgba(255, 255, 255, .85) 0 9%, transparent 28%),
    linear-gradient(135deg, #edf6f6 0%, #f8fbfa 58%, #f5f0e6 100%);
  border: 1px solid var(--why-line);
  border-radius: 30px;
  box-shadow: var(--why-shadow);
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  overflow: hidden;
  padding: clamp(1.5rem, 5vw, 4.25rem);
  position: relative;
}

.why-hero::after {
  border: 1px solid rgba(36, 111, 124, .13);
  border-radius: 50%;
  content: "";
  height: 280px;
  left: -170px;
  pointer-events: none;
  position: absolute;
  top: -165px;
  width: 280px;
}

.why-hero__content {
  align-self: center;
  position: relative;
  z-index: 1;
}

.why-hero h1 {
  color: var(--why-brand-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 5.8vw, 4.9rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .99;
  margin: 0;
  max-width: 720px;
}

.why-hero__lead {
  color: #4c6468;
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  line-height: 1.7;
  margin: 1.4rem 0 0;
  max-width: 680px;
}

.why-hero__promise {
  color: #4c6468;
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  line-height: 1.7;
  margin: .65rem 0 0;
  max-width: 680px;
}

.why-hero__actions,
.why-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.8rem;
}

.why-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: .94rem;
  font-weight: 750;
  justify-content: center;
  min-height: 48px;
  padding: .75rem 1.3rem;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

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

.why-button:focus-visible,
.why-page a:focus-visible {
  outline: 3px solid rgba(174, 132, 73, .38);
  outline-offset: 3px;
}

.why-button--primary {
  background: var(--why-brand);
  color: #fff;
}

.why-button--primary:hover,
.why-button--primary:focus-visible {
  background: var(--why-brand-deep);
  color: #fff;
}

.why-button--secondary {
  background: rgba(255, 255, 255, .72);
  border-color: rgba(36, 111, 124, .28);
  color: var(--why-brand-deep);
}

.why-button--secondary:hover,
.why-button--secondary:focus-visible {
  background: #fff;
  border-color: var(--why-brand);
  color: var(--why-brand-deep);
}

.why-hero__visual {
  align-self: center;
  background: #fff;
  border: 7px solid rgba(255, 255, 255, .9);
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(29, 71, 78, .17);
  margin: 0;
  overflow: hidden;
  position: relative;
  transform: rotate(1.2deg);
}

.why-hero__visual img {
  aspect-ratio: 4 / 3;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.why-hero__visual figcaption {
  background: rgba(23, 79, 89, .94);
  bottom: 0;
  color: #fff;
  font-size: .84rem;
  left: 0;
  line-height: 1.45;
  padding: .85rem 1rem;
  position: absolute;
  right: 0;
}

.why-proof {
  border-top: 1px solid rgba(36, 111, 124, .18);
  display: grid;
  gap: 1rem;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: clamp(1.25rem, 3vw, 2rem);
}

.why-proof__item {
  padding-left: 1rem;
  position: relative;
}

.why-proof__item::before {
  background: var(--why-gold);
  border-radius: 999px;
  content: "";
  height: 100%;
  left: 0;
  opacity: .7;
  position: absolute;
  top: 0;
  width: 3px;
}

.why-proof strong,
.why-proof span {
  display: block;
}

.why-proof strong {
  color: var(--why-brand-deep);
  font-size: .98rem;
  margin-bottom: .15rem;
}

.why-proof span {
  color: var(--why-muted);
  font-size: .82rem;
  line-height: 1.45;
}

.why-section {
  margin-top: clamp(4rem, 9vw, 7.5rem);
}

.why-section__heading {
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  max-width: 790px;
  text-align: center;
}

.why-section__heading h2,
.why-cta h2 {
  color: var(--why-brand-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin: 0;
}

.why-section__heading > p:last-child {
  color: var(--why-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 1rem auto 0;
  max-width: 700px;
}

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

.why-card {
  background: #fff;
  border: 1px solid var(--why-line);
  border-radius: 21px;
  display: flex;
  gap: 1.15rem;
  min-height: 260px;
  padding: clamp(1.3rem, 3vw, 1.9rem);
  position: relative;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.why-card:hover,
.why-card:focus-within {
  border-color: rgba(36, 111, 124, .38);
  box-shadow: 0 17px 42px rgba(29, 78, 86, .1);
  transform: translateY(-3px);
}

.why-card--featured {
  background: linear-gradient(145deg, #fff, #f2f8f8);
  border-top: 4px solid var(--why-brand);
}

.why-card--featured:nth-child(2) {
  background: linear-gradient(145deg, #fff, #f5f8f2);
  border-top-color: var(--why-green);
}

.why-card__mark {
  align-items: center;
  background: linear-gradient(145deg, var(--why-brand), var(--why-brand-deep));
  border-radius: 17px;
  box-shadow: 0 10px 24px rgba(36, 111, 124, .2);
  color: #fff;
  display: flex;
  flex: 0 0 64px;
  height: 64px;
  justify-content: center;
  width: 64px;
}

.why-card__mark svg {
  fill: none;
  height: 34px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 34px;
}

.why-card__mark--word {
  font-family: Georgia, "Times New Roman", serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.why-card__mark--green {
  background: linear-gradient(145deg, #72916d, #496a4d);
  box-shadow: 0 10px 24px rgba(73, 106, 77, .2);
}

.why-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.why-card__eyebrow {
  color: var(--why-gold) !important;
  font-size: .72rem !important;
  font-weight: 800;
  letter-spacing: .11em;
  margin: 0 0 .4rem !important;
  text-transform: uppercase;
}

.why-card h3,
.why-study-card h3 {
  color: var(--why-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.22;
  margin: 0;
}

.why-card p,
.why-study-card p {
  color: var(--why-muted);
  font-size: .96rem;
  line-height: 1.62;
  margin: .75rem 0 0;
}

.why-card a,
.why-study-card a {
  align-self: flex-start;
  color: var(--why-brand);
  font-size: .88rem;
  font-weight: 750;
  margin-top: auto;
  padding-top: 1rem;
  text-decoration: none;
  text-underline-offset: .2rem;
}

.why-card a:hover,
.why-card a:focus-visible,
.why-study-card a:hover,
.why-study-card a:focus-visible {
  text-decoration: underline;
}

.why-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: .15rem .9rem;
  margin-top: auto;
  padding-top: .9rem;
}

.why-card__links a {
  margin-top: 0;
  padding-top: 0;
}

.why-regulation {
  align-items: center;
  background: linear-gradient(135deg, #edf6f6, #f8fbfa);
  border: 1px solid #cfe1e4;
  border-radius: 20px;
  display: grid;
  gap: 1.15rem;
  grid-column: 1 / -1;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: clamp(1.25rem, 3vw, 1.8rem);
}

.why-regulation__mark {
  align-items: center;
  background: #fff;
  border: 1px solid #cfe1e4;
  border-radius: 16px;
  color: var(--why-brand);
  display: flex;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.why-regulation__mark svg {
  fill: none;
  height: 32px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 32px;
}

.why-regulation h3 {
  color: var(--why-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.why-regulation p:not(.why-card__eyebrow) {
  color: var(--why-muted);
  font-size: .92rem;
  line-height: 1.55;
  margin: .4rem 0 0;
}

.why-regulation > a {
  border: 1px solid rgba(36, 111, 124, .3);
  border-radius: 999px;
  color: var(--why-brand-deep);
  font-size: .88rem;
  font-weight: 750;
  padding: .7rem 1rem;
  text-decoration: none;
  white-space: nowrap;
}

.why-regulation > a:hover,
.why-regulation > a:focus-visible {
  background: #fff;
  border-color: var(--why-brand);
}

.why-barometer {
  background:
    radial-gradient(circle at 94% 4%, rgba(36, 111, 124, .08) 0 7%, transparent 23%),
    linear-gradient(145deg, #f7fbfa, #eef6f5);
  border: 1px solid #cfe1e1;
  border-radius: 26px;
  box-shadow: 0 20px 52px rgba(23, 79, 89, .11);
  color: var(--why-ink);
  margin-top: 1.25rem;
  overflow: hidden;
  padding: clamp(1.45rem, 4vw, 3rem);
  position: relative;
}

.why-barometer__heading {
  align-items: end;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
}

.why-barometer .why-card__eyebrow {
  color: var(--why-gold) !important;
}

.why-barometer h3,
.why-reviews h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  margin: 0;
}

.why-barometer h3 {
  color: var(--why-brand-deep);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  letter-spacing: -.025em;
  line-height: 1.06;
}

.why-barometer__heading > p {
  color: var(--why-muted);
  font-size: .96rem;
  line-height: 1.65;
  margin: 0;
}

.why-barometer__summary {
  align-items: center;
  background: linear-gradient(135deg, var(--why-brand-deep), var(--why-brand));
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(23, 79, 89, .17);
  display: flex;
  gap: 1rem;
  margin-top: 1.6rem;
  padding: 1rem 1.15rem;
}

.why-barometer__summary strong {
  color: #f0d6a3;
  flex: 0 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

.why-barometer__summary span {
  color: rgba(255, 255, 255, .9);
  font-size: .88rem;
  line-height: 1.45;
}

.why-results {
  background: #fff;
  border: 1px solid #d9e6e5;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(23, 79, 89, .07);
  margin-top: 1rem;
  overflow: hidden;
}

.why-results__table {
  border-collapse: collapse;
  color: var(--why-ink);
  margin: 0;
  table-layout: fixed;
  width: 100%;
}

.why-results__table th,
.why-results__table td {
  border-bottom: 1px solid #e4eceb;
  padding: .9rem 1rem;
  text-align: left;
  vertical-align: middle;
}

.why-results__table thead th {
  background: #e6f0ef;
  color: var(--why-brand-deep);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .035em;
  line-height: 1.3;
}

.why-results__table thead th:first-child {
  width: 34%;
}

.why-results__table thead th:nth-child(2) {
  color: #738083;
  width: 16%;
}

.why-results__table thead th:nth-child(3) {
  width: 19%;
}

.why-results__table thead th:nth-child(4) {
  width: 31%;
}

.why-results__table tbody th {
  color: #314f54;
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.35;
}

.why-results__table tbody td {
  color: #748184;
  font-size: .86rem;
}

.why-results__table tbody tr:last-child th,
.why-results__table tbody tr:last-child td {
  border-bottom: 0;
}

.why-results__table tbody tr:hover {
  background: #f8fbfa;
}

.why-results__table td > strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.why-results__school {
  background: rgba(36, 111, 124, .035);
}

.why-results__school > strong {
  color: var(--why-brand-deep);
}

.why-results__school > span {
  background: #dcefe2;
  border-radius: 999px;
  color: #225e39;
  display: inline-block;
  font-size: .67rem;
  font-weight: 850;
  line-height: 1;
  margin-left: .38rem;
  padding: .33rem .42rem;
  vertical-align: .12rem;
}

.why-barometer__footer {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1.15rem;
}

.why-barometer__footer p {
  color: #78888a;
  font-size: .75rem;
  line-height: 1.45;
  margin: 0;
}

.why-barometer__footer a {
  color: var(--why-brand-deep);
  flex: 0 0 auto;
  font-size: .82rem;
  font-weight: 750;
  text-decoration: none;
}

.why-barometer__footer a:hover,
.why-barometer__footer a:focus-visible {
  color: var(--why-brand);
  text-decoration: underline;
  text-underline-offset: .2rem;
}

.why-reviews {
  align-items: center;
  background: linear-gradient(135deg, #fbf7ef, #fff);
  border: 1px solid #eadfc9;
  border-radius: 22px;
  display: grid;
  gap: clamp(1rem, 3vw, 1.6rem);
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin-top: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.why-reviews__score {
  align-items: baseline;
  background: linear-gradient(145deg, #c19a5f, #9b733c);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(155, 115, 60, .2);
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 96px;
  justify-content: center;
  padding: 0 1.15rem;
  width: 108px;
}

.why-reviews__score strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
}

.why-reviews__score span {
  font-size: .74rem;
  margin-top: .2rem;
  opacity: .8;
}

.why-reviews h3 {
  color: var(--why-brand-deep);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.15;
}

.why-reviews__content > p:last-child {
  color: var(--why-muted);
  font-size: .91rem;
  line-height: 1.55;
  margin: .55rem 0 0;
}

.why-button--reviews {
  background: var(--why-brand-deep);
  color: #fff;
  white-space: nowrap;
}

.why-button--reviews:hover,
.why-button--reviews:focus-visible {
  background: var(--why-brand);
  color: #fff;
}

.why-section--study {
  background: var(--why-soft);
  border: 1px solid var(--why-line);
  border-radius: 28px;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.why-study-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.why-study-card {
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(36, 111, 124, .14);
  border-radius: 20px;
  min-height: 260px;
  overflow: hidden;
  padding: clamp(1.35rem, 3vw, 2rem);
  position: relative;
}

.why-study-card::after {
  border: 1px solid rgba(36, 111, 124, .08);
  border-radius: 50%;
  content: "";
  height: 120px;
  position: absolute;
  right: -72px;
  top: -72px;
  width: 120px;
}

.why-study-card--wide {
  background: linear-gradient(135deg, #fff, #fbf7ef);
}

.why-study-card__number {
  color: var(--why-gold);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}

.why-study-card h3 {
  max-width: 480px;
}

.why-study-card p {
  max-width: 560px;
}

.why-note {
  align-items: center;
  background: var(--why-warm);
  border: 1px solid #eadfc9;
  border-radius: 18px;
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1.1rem 1.25rem;
}

.why-note__icon {
  align-items: center;
  background: var(--why-gold);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex: 0 0 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.why-note p {
  color: #665946;
  font-size: .89rem;
  line-height: 1.5;
  margin: 0;
}

.why-cta {
  align-items: center;
  background:
    radial-gradient(circle at 88% 15%, rgba(255, 255, 255, .12) 0 8%, transparent 23%),
    linear-gradient(135deg, var(--why-brand-deep), var(--why-brand));
  border-radius: 28px;
  color: #fff;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-top: clamp(3rem, 7vw, 5rem);
  overflow: hidden;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  position: relative;
}

.why-cta > div:first-child {
  max-width: 720px;
}

.why-cta .why-kicker {
  color: #e6c993;
}

.why-cta h2 {
  color: #fff;
}

.why-cta p:last-child {
  color: rgba(255, 255, 255, .82);
  line-height: 1.6;
  margin: .8rem 0 0;
}

.why-cta__actions {
  flex: 0 0 auto;
  margin-top: 0;
}

.why-button--light {
  background: #fff;
  color: var(--why-brand-deep);
}

.why-button--light:hover,
.why-button--light:focus-visible {
  background: #f7fbfb;
  color: var(--why-brand-deep);
}

.why-button--outline-light {
  border-color: rgba(255, 255, 255, .48);
  color: #fff;
}

.why-button--outline-light:hover,
.why-button--outline-light:focus-visible {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  color: #fff;
}

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

  .why-hero__visual {
    max-width: 680px;
    transform: none;
  }

  .why-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .why-reviews {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .why-reviews .why-button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .why-grid,
  .why-study-grid {
    grid-template-columns: 1fr;
  }

  .why-card,
  .why-study-card {
    min-height: 0;
  }

  .why-proof {
    grid-template-columns: 1fr;
  }

  .why-section__heading {
    text-align: left;
  }

  .why-regulation {
    align-items: start;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .why-regulation > a {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .why-barometer__heading {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .why-results {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }

  .why-results__table,
  .why-results__table tbody,
  .why-results__table tr,
  .why-results__table th,
  .why-results__table td {
    display: block;
    width: 100%;
  }

  .why-results__table thead {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

  .why-results__table tbody {
    display: grid;
    gap: .75rem;
  }

  .why-results__table tbody tr {
    background: #fff;
    border: 1px solid #d9e6e5;
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
  }

  .why-results__table tbody th {
    background: #e6f0ef;
    border-bottom: 1px solid #d9e6e5;
    grid-column: 1 / -1;
    padding: .8rem 1rem;
  }

  .why-results__table tbody td {
    border-bottom: 0;
    min-width: 0;
    padding: .75rem;
  }

  .why-results__table tbody td::before {
    color: #718184;
    content: attr(data-label);
    display: block;
    font-size: .63rem;
    font-weight: 750;
    line-height: 1.25;
    margin-bottom: .35rem;
  }
}

@media (max-width: 520px) {
  .why-hero,
  .why-section--study,
  .why-cta {
    border-radius: 21px;
  }

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

  .why-hero__actions,
  .why-cta__actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .why-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .why-card__mark {
    flex-basis: 56px;
    height: 56px;
    width: 56px;
  }

  .why-note {
    align-items: flex-start;
  }

  .why-barometer__footer,
  .why-reviews {
    align-items: flex-start;
    flex-direction: column;
  }

  .why-barometer__footer {
    display: flex;
  }

  .why-reviews {
    display: flex;
  }

  .why-reviews .why-button {
    align-self: stretch;
  }

  .why-barometer__summary {
    align-items: flex-start;
  }

  .why-results__table tbody tr {
    grid-template-columns: 1fr;
  }

  .why-results__table tbody td {
    align-items: center;
    display: grid;
    gap: .45rem;
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding: .68rem .85rem;
  }

  .why-results__table tbody td::before {
    margin-bottom: 0;
  }

  .why-results__school > span {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-button,
  .why-card {
    transition: none;
  }
}
