*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1C1E22;
  background-color: #F6F7F9;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: #3E5C76;
}

ul,
ol {
  list-style: none;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 96px 0;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #DCE2E8;
  margin-bottom: 14px;
}

.section-title {
  font-size: 40px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #1C1E22;
  margin-bottom: 20px;
}

.section-lead {
  font-size: 18px;
  color: #1C1E22;
  max-width: 720px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background-color: #3E5C76;
  color: #FFFFFF;
}

.btn--primary:hover {
  background-color: #2E4A63;
}

.btn--outline {
  border-color: #3E5C76;
  color: #3E5C76;
  background-color: transparent;
}

.btn--outline:hover {
  background-color: #3E5C76;
  color: #FFFFFF;
}

.btn--light {
  background-color: #FFFFFF;
  color: #3E5C76;
}

.btn--light:hover {
  background-color: #DCE2E8;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- LADDER GLYPH ---------- */
.ladder {
  display: inline-block;
  flex: 0 0 auto;
  width: 12px;
  height: 26px;
  border-left: 2px solid #3E5C76;
  border-right: 2px solid #3E5C76;
  background-image:
    linear-gradient(#3E5C76, #3E5C76),
    linear-gradient(#3E5C76, #3E5C76),
    linear-gradient(#3E5C76, #3E5C76);
  background-repeat: no-repeat;
  background-position: 0 4px, 0 12px, 0 20px;
  background-size: 100% 2px;
}

.ladder--solid {
  background-color: #3E5C76;
  background-image:
    linear-gradient(#F6F7F9, #F6F7F9),
    linear-gradient(#F6F7F9, #F6F7F9),
    linear-gradient(#F6F7F9, #F6F7F9);
}

/* ---------- LADDER NAV ---------- */
.ladder-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #F6F7F9;
  border-bottom: 2px solid #3E5C76;
  transition: box-shadow 0.2s ease;
}

.ladder-nav.is-scrolled {
  box-shadow: 0 6px 18px rgba(62, 92, 118, 0.14);
}

.ladder-nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ladder-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1.15;
}

.ladder-nav__brand .ladder {
  height: 26px;
}

.ladder-nav__name {
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #1C1E22;
}

.ladder-nav__caption {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3E5C76;
  margin-top: 2px;
}

.ladder-nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.ladder-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1C1E22;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.ladder-nav__link .ladder {
  width: 10px;
  height: 20px;
  background-position: 0 3px, 0 9px, 0 15px;
}

.ladder-nav__link:hover {
  color: #3E5C76;
}

.ladder-nav__link.is-active {
  color: #3E5C76;
  border-bottom-color: #3E5C76;
}

.ladder-nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border: 2px solid #3E5C76;
  cursor: pointer;
  position: relative;
}

.ladder-nav__toggle span,
.ladder-nav__toggle span::before,
.ladder-nav__toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #3E5C76;
  position: relative;
}

.ladder-nav__toggle span::before {
  content: "";
  position: absolute;
  top: -6px;
}

.ladder-nav__toggle span::after {
  content: "";
  position: absolute;
  top: 6px;
}

.ladder-nav__toggle.is-open span {
  background-color: transparent;
}

.ladder-nav__toggle.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.ladder-nav__toggle.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.ladder-nav__panel {
  display: none;
}

/* ---------- GROWTH HERO ---------- */
.growth-hero {
  background-color: #F6F7F9;
  border-bottom: 1px solid #DCE2E8;
  overflow: hidden;
}

.growth-hero__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 84px 24px 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.growth-hero__content {
  flex: 1 1 auto;
  max-width: 620px;
}

.hero-chip {
  display: inline-block;
  background-color: #3E5C76;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  margin-bottom: 26px;
}

.growth-hero__title {
  font-size: 56px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #1C1E22;
  margin-bottom: 24px;
}

.growth-hero__title em {
  font-style: normal;
  color: #3E5C76;
}

.growth-hero__sub {
  font-size: 19px;
  line-height: 1.7;
  color: #1C1E22;
  max-width: 560px;
  margin-bottom: 34px;
}

.growth-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------- GROWTH COLUMN ---------- */
.growth-column {
  flex: 0 0 320px;
}

.growth-column__panel {
  background-color: #FFFFFF;
  border: 2px solid #3E5C76;
  padding: 36px 30px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.growth-column__star {
  width: 26px;
  height: 26px;
  background-color: #3E5C76;
  clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
  margin-bottom: 22px;
}

.growth-column__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.bar {
  display: block;
  height: 28px;
  margin-bottom: 14px;
}

.bar--solid {
  background-color: #3E5C76;
}

.bar--outline {
  background-color: transparent;
  border: 2px solid #3E5C76;
}

.bar--1 {
  width: 46%;
}

.bar--2 {
  width: 60%;
}

.bar--3 {
  width: 74%;
}

.bar--4 {
  width: 88%;
  margin-bottom: 0;
}

.growth-column__caption {
  margin-top: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3E5C76;
  text-align: center;
}

/* ---------- PILLAR GRID ---------- */
.pillar-grid {
  background-color: #F6F7F9;
}

.pillar-grid__head {
  max-width: 760px;
  margin-bottom: 54px;
}

.pillar-grid__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.pillar-card {
  background-color: #FFFFFF;
  border: 1px solid #DCE2E8;
  border-top: 4px solid #3E5C76;
  padding: 34px 28px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(62, 92, 118, 0.14);
}

.pillar-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.pillar-card__num {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #DCE2E8;
}

.pillar {
  width: 30px;
  height: 72px;
  position: relative;
}

.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 9px;
  background-color: #3E5C76;
}

.pillar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 8px;
  background-color: #3E5C76;
}

.pillar__shaft {
  position: absolute;
  top: 9px;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  background-color: #3E5C76;
}

.pillar-card:nth-child(1) .pillar::before {
  width: 18px;
}

.pillar-card:nth-child(1) .pillar__shaft {
  width: 10px;
}

.pillar-card:nth-child(3) .pillar::before {
  width: 20px;
}

.pillar-card:nth-child(3) .pillar__shaft {
  width: 9px;
}

.pillar-card:nth-child(4) .pillar::before {
  width: 14px;
}

.pillar-card:nth-child(4) .pillar__shaft {
  width: 8px;
}

.pillar-card__title {
  font-size: 19px;
  font-weight: 800;
  color: #1C1E22;
  margin-bottom: 12px;
}

.pillar-card__text {
  font-size: 15px;
  color: #1C1E22;
}

/* ---------- VISTA BAND ---------- */
.vista-band {
  background-color: #3E5C76;
  color: #FFFFFF;
  padding: 92px 0 96px;
  position: relative;
}

.vista-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #DCE2E8;
}

.vista-band .section-eyebrow {
  color: #DCE2E8;
}

.vista-band .section-title {
  color: #FFFFFF;
}

.vista-band__lead {
  font-size: 18px;
  color: #FFFFFF;
  max-width: 760px;
  margin-bottom: 22px;
}

.vista-band__text {
  font-size: 16px;
  color: #F6F7F9;
  max-width: 820px;
  margin-bottom: 26px;
}

.vista-band__horizon {
  width: 100%;
  height: 2px;
  background-color: #DCE2E8;
  margin: 40px 0 46px;
}

.vista-band__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 46px;
}

.vista-stat__numeral {
  display: block;
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  color: #DCE2E8;
  margin-bottom: 10px;
}

.vista-stat__label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFFFF;
}

/* ---------- ASCENT DUO ---------- */
.ascent-duo {
  background-color: #F6F7F9;
}

.ascent-duo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: stretch;
}

.ascent-duo__panel {
  background-color: #FFFFFF;
  border: 1px solid #DCE2E8;
  padding: 46px 44px;
}

.ascent-duo__panel--graphic {
  border: 2px solid #3E5C76;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ascent-duo__title {
  font-size: 30px;
  font-weight: 800;
  color: #1C1E22;
  margin-bottom: 18px;
}

.ascent-duo__text {
  font-size: 16px;
  color: #1C1E22;
  margin-bottom: 18px;
}

.approach-list {
  margin-top: 10px;
}

.approach-list__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #DCE2E8;
}

.approach-list__item:last-child {
  border-bottom: none;
}

.approach-list__step {
  flex: 0 0 30px;
  height: 26px;
  background-color: #3E5C76;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

.approach-list__body strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #1C1E22;
  margin-bottom: 4px;
}

.approach-list__body span {
  font-size: 14px;
  color: #1C1E22;
}

.ascent {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 240px;
  margin-bottom: 18px;
}

.ascent__step {
  flex: 1;
  background-color: #3E5C76;
}

.ascent__step--1 {
  height: 64px;
}

.ascent__step--2 {
  height: 116px;
}

.ascent__step--3 {
  height: 168px;
}

.ascent__step--4 {
  height: 220px;
  position: relative;
}

.ascent__step--4 .ladder {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #3E5C76;
  background-image:
    linear-gradient(#F6F7F9, #F6F7F9),
    linear-gradient(#F6F7F9, #F6F7F9),
    linear-gradient(#F6F7F9, #F6F7F9);
}

.ascent__labels {
  display: flex;
  gap: 12px;
}

.ascent__label {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3E5C76;
}

.ascent__note {
  margin-top: 20px;
  font-size: 14px;
  color: #1C1E22;
  text-align: center;
}

/* ---------- PAGE INTRO (secondary pages) ---------- */
.page-intro {
  background-color: #F6F7F9;
  padding: 72px 0 60px;
  border-bottom: 1px solid #DCE2E8;
}

.page-intro__title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.12;
  color: #1C1E22;
  margin-bottom: 18px;
}

.page-intro__sub {
  font-size: 19px;
  color: #1C1E22;
  max-width: 760px;
}

/* ---------- SERVICES PAGE ---------- */
.services-page {
  background-color: #F6F7F9;
}

.service-block {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  padding: 52px 0;
  border-bottom: 1px solid #DCE2E8;
}

.service-block:last-of-type {
  border-bottom: none;
}

.service-block__num {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #3E5C76;
  margin-bottom: 12px;
}

.service-block__title {
  font-size: 28px;
  font-weight: 800;
  color: #1C1E22;
  margin-bottom: 16px;
}

.service-block__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3E5C76;
  border: 1px solid #3E5C76;
  padding: 5px 12px;
}

.service-block__body p {
  font-size: 16px;
  color: #1C1E22;
  margin-bottom: 16px;
}

.service-block__body p:last-child {
  margin-bottom: 0;
}

.process-list__item {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid #DCE2E8;
  align-items: flex-start;
}

.process-list__item:last-child {
  border-bottom: none;
}

.process-list__num {
  flex: 0 0 42px;
  height: 42px;
  background-color: #3E5C76;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-list__title {
  font-size: 19px;
  font-weight: 800;
  color: #1C1E22;
  margin-bottom: 6px;
}

.process-list__text {
  font-size: 15px;
  color: #1C1E22;
}

.cta-band {
  background-color: #3E5C76;
  color: #FFFFFF;
  padding: 80px 0;
  position: relative;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #DCE2E8;
}

.cta-band__title {
  font-size: 38px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-band__text {
  font-size: 17px;
  color: #F6F7F9;
  max-width: 720px;
  margin-bottom: 30px;
}

/* ---------- CONTACT PAGE ---------- */
.contact-page {
  background-color: #F6F7F9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.contact-panel {
  background-color: #FFFFFF;
  border: 1px solid #DCE2E8;
  border-top: 4px solid #3E5C76;
  padding: 40px 36px;
}

.contact-panel__title {
  font-size: 22px;
  font-weight: 800;
  color: #1C1E22;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #DCE2E8;
}

.contact-info__item {
  padding: 14px 0;
  border-bottom: 1px solid #DCE2E8;
}

.contact-info__item:last-child {
  border-bottom: none;
}

.contact-info__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3E5C76;
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 16px;
  font-weight: 600;
  color: #1C1E22;
}

.contact-info__value a {
  color: #1C1E22;
}

.contact-info__value a:hover {
  color: #3E5C76;
}

.contact-form__field {
  margin-bottom: 20px;
}

.contact-form__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1C1E22;
  margin-bottom: 7px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 13px 15px;
  font-size: 16px;
  font-family: inherit;
  color: #1C1E22;
  background-color: #FFFFFF;
  border: 1px solid #C8D1DB;
  border-radius: 0;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: 2px solid #3E5C76;
  outline-offset: -1px;
  border-color: #3E5C76;
}

.contact-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__status {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  background-color: #F6F7F9;
  border: 1px solid #3E5C76;
  color: #1C1E22;
  font-size: 14px;
  font-weight: 600;
}

.contact-form__status.is-visible {
  display: block;
}

/* ---------- FAQ ---------- */
.faq-list {
  margin-top: 54px;
}

.faq-item {
  background-color: #FFFFFF;
  border: 1px solid #DCE2E8;
  margin-bottom: 16px;
}

.faq-item__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 28px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.faq-item__question {
  font-size: 18px;
  font-weight: 800;
  color: #1C1E22;
}

.faq-item__icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border: 2px solid #3E5C76;
  color: #3E5C76;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-item__answer {
  max-height: 400px;
}

.faq-item__answer p {
  padding: 0 28px 26px;
  font-size: 15px;
  color: #1C1E22;
}

/* ---------- BASE FOOTER ---------- */
.base-footer {
  background-color: #F6F7F9;
  border-top: 2px solid #3E5C76;
  padding: 46px 0 0;
}

.base-footer__row1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 36px;
}

.base-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.base-footer__brand .ladder {
  height: 26px;
}

.base-footer__name {
  display: block;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #1C1E22;
}

.base-footer__caption {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3E5C76;
  margin-top: 2px;
}

.base-footer__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.base-footer__link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1C1E22;
}

.base-footer__link:hover {
  color: #3E5C76;
}

.base-footer__contact {
  font-size: 13px;
  color: #3E5C76;
  font-weight: 600;
}

.base-footer__contact a {
  color: #3E5C76;
}

.base-footer__contact a:hover {
  text-decoration: underline;
}

.base-footer__row2 {
  position: relative;
  border-top: 1px solid #DCE2E8;
  padding: 20px 0 22px;
}

.base-footer__row2 .ladder {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
}

.base-footer__legal {
  text-align: center;
  font-size: 13px;
  color: #1C1E22;
}

.base-footer__legal a {
  color: #1C1E22;
  text-decoration: underline;
}

.base-footer__legal a:hover {
  color: #3E5C76;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1020px) {
  .pillar-grid__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .service-block {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 920px) {
  .growth-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
  }

  .growth-column {
    flex: 0 0 auto;
    width: 100%;
    max-width: 420px;
  }

  .ascent-duo__grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .base-footer__row1 {
    flex-direction: column;
    align-items: flex-start;
  }

  .base-footer__row2 .ladder {
    display: none;
  }
}

@media (max-width: 860px) {
  .ladder-nav__links {
    display: none;
  }

  .ladder-nav__toggle {
    display: inline-flex;
  }

  .ladder-nav__panel {
    display: block;
    max-height: 0;
    overflow: hidden;
    background-color: #F6F7F9;
    border-top: 1px solid #DCE2E8;
    transition: max-height 0.3s ease;
  }

  .ladder-nav__panel.is-open {
    max-height: 520px;
  }

  .ladder-nav__panel a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1C1E22;
    border-bottom: 1px solid #DCE2E8;
  }

  .ladder-nav__panel a:hover,
  .ladder-nav__panel a.is-active {
    color: #3E5C76;
    background-color: #FFFFFF;
  }

  .growth-hero__title {
    font-size: 42px;
  }

  .page-intro__title {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .vista-band__stats {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .ascent-duo__panel {
    padding: 34px 26px;
  }
}

@media (max-width: 560px) {
  .pillar-grid__grid {
    grid-template-columns: 1fr;
  }

  .growth-hero__title {
    font-size: 34px;
  }

  .growth-hero__actions .btn {
    width: 100%;
    text-align: center;
  }

  .base-footer__links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .base-footer__legal {
    text-align: left;
  }
}
