.about-redesign-page {
  background: #fff;
  color: #121820;
}

.about-page {
  --about-ink: #121820;
  --about-muted: #42454b;
  --about-soft: #f8f9fa;
  --about-line: #d8e3ea;
  --about-blue: #9FB153;
  --about-orange: #EE8206;
  --about-teal: #595757;
  background: #fff;
  color: var(--about-ink);
}

.about-page * {
  box-sizing: border-box;
}

.about-anchor {
  scroll-margin-top: 104px;
}

.about-hero {
  padding: 28px 0 46px;
  background: #fff;
}

.about-hero-inner {
  max-width: 1080px;
}

.about-hero-media {
  overflow: hidden;
  background: #eef3f6;
}

.about-hero-media img {
  width: 100%;
  aspect-ratio: 2.72 / 1;
  display: block;
  object-fit: cover;
}

.about-hero-copy {
  max-width: 940px;
  padding-top: 30px;
}

.about-kicker,
.about-section-head span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--about-orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.about-hero h1,
.about-intro-copy h2,
.about-number-card h2,
.about-section-head h2,
.about-feature-copy h2,
.about-service h2 {
  margin: 0;
  color: var(--about-blue);
  font-weight: 800;
  letter-spacing: 0;
}

.about-hero h1 {
  max-width: 900px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.03;
}

.about-hero p,
.about-intro-copy p,
.about-section-head p,
.about-feature-copy p,
.about-service p {
  color: var(--about-muted);
  font-size: 17px;
  line-height: 1.7;
}

.about-hero p {
  max-width: 780px;
  margin: 18px 0 0;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.about-btn {
  min-width: 170px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--about-blue);
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.about-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.about-btn.primary {
  background: var(--about-blue);
  color: #fff;
}

.about-btn.secondary {
  border-color: var(--about-orange);
  background: transparent;
  color: var(--about-orange);
}

.about-subnav {
  position: sticky;
  top: 76px;
  z-index: 30;
  background: rgba(255, 255, 255, .94);
  border-top: 1px solid var(--about-line);
  border-bottom: 1px solid var(--about-line);
  backdrop-filter: blur(16px);
}

.about-subnav-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.about-subnav-inner a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: var(--about-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}

.about-subnav-inner a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 2px;
  background: var(--about-orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.about-subnav-inner a:hover,
.about-subnav-inner a.is-active {
  color: var(--about-blue);
}

.about-subnav-inner a:hover::after,
.about-subnav-inner a.is-active::after {
  transform: scaleX(1);
}

.about-intro {
  padding: 64px 0;
  background: var(--about-soft);
}

.about-intro-grid {
  max-width: 1080px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .7fr);
  gap: 44px;
  align-items: center;
}

.about-intro-copy h2,
.about-feature-copy h2,
.about-service h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.about-richtext {
  margin-top: 18px;
}

.about-richtext p {
  margin: 0 0 12px;
}

.about-intro-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.about-intro-stack img {
  width: 100%;
  aspect-ratio: 1.58 / 1;
  display: block;
  object-fit: cover;
  background: #e8eef3;
}

.about-values {
  padding: 56px 0;
  background: #fff;
}

.about-values-grid {
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.about-number-card {
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--about-line);
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 106, 107, .08);
}

.about-number-card span {
  display: block;
  margin-bottom: 46px;
  color: rgba(0, 159, 227, .22);
  font-size: 84px;
  line-height: .78;
  font-weight: 800;
}

.about-number-card h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
}

.about-number-card p {
  margin: 14px 0 0;
  color: var(--about-muted);
  font-size: 16px;
  line-height: 1.68;
}

.about-number-card ul,
.about-check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.about-number-card li,
.about-check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--about-muted);
  font-size: 16px;
  line-height: 1.7;
}

.about-number-card li::before,
.about-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .74em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--about-orange);
}

.about-milestones,
.about-certificates,
.about-strength {
  padding: 64px 0;
  background: var(--about-soft);
}

.about-section-head {
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}

.about-section-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.about-section-head p {
  max-width: 700px;
  margin: 14px auto 0;
}

.about-timeline {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--about-line);
  background: #fff;
}

.about-year {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 20px;
  border: 0;
  border-right: 1px solid var(--about-line);
  background: #fff;
  color: var(--about-ink);
  text-align: left;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}

.about-year:last-child {
  border-right: 0;
}

.about-year strong {
  color: var(--about-blue);
  font-size: 31px;
  line-height: 1;
}

.about-year span {
  color: var(--about-muted);
  font-size: 14px;
  font-weight: 700;
}

.about-year:hover,
.about-year.is-active {
  background: var(--about-blue);
}

.about-year:hover strong,
.about-year:hover span,
.about-year.is-active strong,
.about-year.is-active span {
  color: #fff;
}

.about-milestone-panels {
  max-width: 1080px;
  margin: 18px auto 0;
}

.about-milestone-panel {
  display: none;
  grid-template-columns: minmax(260px, .65fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--about-line);
}

.about-milestone-panel.is-active {
  display: grid;
}

.about-milestone-panel span {
  color: var(--about-orange);
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
}

.about-milestone-panel h3 {
  margin: 12px 0 0;
  color: var(--about-blue);
  font-size: 27px;
  line-height: 1.16;
}

.about-milestone-panel p {
  margin: 0;
  color: var(--about-muted);
  font-size: 17px;
  line-height: 1.78;
}

.about-feature {
  padding: 64px 0;
  background: #fff;
}

.about-feature-alt {
  background: var(--about-soft);
}

.about-feature-grid {
  max-width: 1080px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, .9fr);
  gap: 46px;
  align-items: center;
}

.about-feature-media {
  overflow: hidden;
  background: #e8eef3;
}

.about-feature-media img {
  width: 100%;
  aspect-ratio: 1.24 / 1;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.about-feature-grid:hover .about-feature-media img {
  transform: scale(1.04);
}

.about-inline-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--about-orange);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.about-inline-link:hover {
  color: var(--about-blue);
  text-decoration: none;
}

.about-cert-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.about-cert-grid a {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid var(--about-line);
  background: #fff;
  color: var(--about-teal);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.about-cert-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0, 159, 227, .13);
}

.about-cert-grid img {
  width: 100%;
  height: 176px;
  display: block;
  object-fit: contain;
  background: var(--about-soft);
}

.about-cert-grid span {
  margin-top: 12px;
  color: var(--about-teal);
  font-size: 13px;
  font-weight: 800;
}

.about-strength {
  background: #fff;
}

.about-strength-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-strength-grid article {
  border: 1px solid var(--about-line);
  background: #fff;
  overflow: hidden;
}

.about-strength-grid img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  display: block;
  object-fit: cover;
  background: var(--about-soft);
  transition: transform .35s ease;
}

.about-strength-grid article:hover img {
  transform: scale(1.05);
}

.about-strength-grid h3 {
  margin: 0;
  padding: 18px;
  color: var(--about-blue);
  font-size: 20px;
  line-height: 1.2;
}

.about-service {
  padding: 64px 0;
  background: var(--about-blue);
  color: #fff;
}

.about-service .about-kicker,
.about-service h2,
.about-service p {
  color: #fff;
}

.about-service-inner {
  max-width: 1080px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.about-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-service-list p {
  margin: 0;
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .26);
  background: rgba(255, 255, 255, .1);
  font-size: 15px;
  font-weight: 800;
}

.about-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}

.about-reveal.is-visible,
.page-reveal .about-hero {
  opacity: 1;
  transform: translateY(0);
}

.about-hero {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}

@media (max-width: 1199px) {
  .about-subnav {
    top: 70px;
  }
}

@media (max-width: 991px) {
  .about-hero {
    padding-top: 18px;
  }

  .about-intro-grid,
  .about-feature-grid,
  .about-service-inner {
    grid-template-columns: 1fr;
  }

  .about-feature-alt .about-feature-copy {
    order: 2;
  }

  .about-feature-alt .about-feature-media {
    order: 1;
  }

  .about-values-grid,
  .about-service-list {
    grid-template-columns: 1fr;
  }

  .about-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-year:nth-child(2) {
    border-right: 0;
  }

  .about-year:nth-child(-n + 2) {
    border-bottom: 1px solid var(--about-line);
  }

  .about-milestone-panel {
    grid-template-columns: 1fr;
  }

  .about-cert-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-strength-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .about-anchor {
    scroll-margin-top: 84px;
  }

  .about-hero-media img {
    aspect-ratio: 1.55 / 1;
  }

  .about-hero h1 {
    font-size: 34px;
  }

  .about-hero p,
  .about-intro-copy p,
  .about-section-head p,
  .about-milestone-panel p {
    font-size: 15px;
    line-height: 1.62;
  }

  .about-subnav {
    top: 64px;
    overflow-x: auto;
  }

  .about-subnav::-webkit-scrollbar {
    display: none;
  }

  .about-subnav-inner {
    width: max-content;
    min-width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding: 10px 14px;
  }

  .about-intro,
  .about-values,
  .about-milestones,
  .about-feature,
  .about-certificates,
  .about-strength,
  .about-service {
    padding: 44px 0;
  }

  .about-number-card,
  .about-milestone-panel {
    padding: 24px;
  }

  .about-number-card span {
    margin-bottom: 32px;
    font-size: 64px;
  }

  .about-cert-grid,
  .about-strength-grid {
    grid-template-columns: 1fr;
  }

  .about-cert-grid a {
    min-height: 210px;
  }

  .about-cert-grid img {
    height: 150px;
  }

  .about-timeline {
    grid-template-columns: 1fr;
  }

  .about-year,
  .about-year:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--about-line);
  }

  .about-year:last-child {
    border-bottom: 0;
  }
}
