.about-us-page {
  --about-container: 1440px;
  --about-gutter: 30px;
  --about-red: #c81428;
  --about-red-strong: #d71920;
  --about-ink: #111820;
  --about-body: #4d5967;
  --about-muted: #6d7886;
  --about-line: #e3e8ee;
  --about-soft: #f4f6f8;
  --about-dark: #111820;
  --about-dark-2: #171d23;
  color: var(--about-ink);
  background: #ffffff;
  overflow: hidden;
}

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

.about-us-page img {
  display: block;
  max-width: 100%;
}

.about-us-container {
  width: min(var(--about-container), calc(100% - (var(--about-gutter) * 2)));
  margin: 0 auto;
}

.about-us-section {
  position: relative;
  overflow: hidden;
}

.about-us-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--about-red);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-us-eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.about-us-page h1,
.about-us-page h2,
.about-us-page h3,
.about-us-page p {
  letter-spacing: 0;
}

.about-us-page h1,
.about-us-page h2,
.about-us-page h3 {
  color: var(--about-ink);
}

.about-us-page h2 {
  margin: 0;
  font-size: clamp(36px, 3.35vw, 56px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.about-us-lead {
  color: var(--about-body);
  font-size: 17px;
  line-height: 1.76;
}

.about-us-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: background-color .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}

.about-us-btn-red {
  color: #ffffff;
  background: var(--about-red-strong);
  border-color: var(--about-red-strong);
}

.about-us-btn-red:hover {
  color: #ffffff;
  background: #b8101d;
  border-color: #b8101d;
  transform: translateY(-1px);
}

.about-us-btn-outline {
  color: var(--about-ink);
  background: #ffffff;
  border-color: #cbd3dd;
}

.about-us-btn-outline:hover {
  color: var(--about-ink);
  border-color: var(--about-ink);
  transform: translateY(-1px);
}

.about-us-btn-light {
  color: #ffffff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .38);
}

.about-us-btn-light:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .62);
}

.about-us-page .about-us-hero {
  min-height: auto;
  padding: 36px 0 48px;
  background: #ffffff;
}

.about-us-page .about-us-hero-grid {
  --about-hero-contained: min(1500px, calc(100vw - (var(--about-gutter) * 2)));
  --about-hero-outset: calc((100vw - var(--about-hero-contained)) / 2);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 43%) minmax(0, 57%);
  width: min(100vw, calc(var(--about-hero-contained) + var(--about-hero-outset)));
  min-height: 660px;
  align-items: stretch;
  overflow: visible;
  margin-left: var(--about-hero-outset);
  margin-right: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-us-identity .about-us-container {
  width: min(1520px, calc(100% - (var(--about-gutter) * 2)));
}

.about-us-page .about-us-hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 620px;
  padding: 88px 58px 72px 64px;
  z-index: 3;
  background: transparent;
}

.about-us-page .about-us-hero-copy h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(62px, 5.2vw, 92px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -0.06em;
}

.about-us-page .about-us-hero-copy .about-us-lead {
  display: block;
  max-width: 560px;
  margin: 30px 0 0;
  font-size: 17px;
  line-height: 1.72;
}

.about-us-page .about-us-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
  margin-bottom: 0;
}

.about-us-page .about-us-hero-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: transparent;
}

.about-us-page .about-us-hero-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 36%;
  pointer-events: none;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, .84) 43%, rgba(255, 255, 255, 0) 100%);
}

.about-us-page .about-us-hero-media-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.about-us-page .about-us-hero-media-picture {
  z-index: 1;
}

.about-us-page .about-us-hero-media-picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: none;
}

.about-us-page .about-us-hero-media-mobile {
  display: none;
}

.about-us-page .about-us-hero-features-shell {
  position: relative;
  z-index: 6;
  width: min(1080px, calc(100vw - 320px));
  min-height: 0;
  margin-top: 48px;
}

.about-us-page .about-us-hero-features {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  min-height: 142px;
  padding: 24px 32px;
  overflow: visible;
  border: 1px solid rgba(17, 24, 32, .10);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(15, 23, 42, .08);
}

.about-us-page .about-us-hero-features article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  padding: 0 22px;
  border-right: 1px solid rgba(17, 24, 32, .08);
}

.about-us-page .about-us-hero-features article:first-child {
  padding-left: 0;
}

.about-us-page .about-us-hero-features article:last-child {
  padding-right: 0;
  border-right: 0;
}

.about-us-page .about-us-feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200, 20, 40, .16);
  border-radius: 50%;
  background: #fff4f4;
}

.about-us-page .about-us-feature-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.about-us-page .about-us-hero-features h3 {
  display: -webkit-box;
  margin: 0;
  color: var(--about-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.about-us-page .about-us-hero-features p {
  display: -webkit-box;
  margin: 7px 0 0;
  color: #637082;
  font-size: 12.2px;
  font-weight: 500;
  line-height: 1.42;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.about-us-identity {
  padding: 104px 0 112px;
  background:
    linear-gradient(180deg, #f6f8fa 0%, #ffffff 52%, #f7f8fa 100%);
}

.about-us-identity-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  gap: clamp(48px, 4.8vw, 78px);
  align-items: start;
}

.about-us-identity-single {
  grid-template-columns: minmax(0, 1fr);
}

.about-us-identity-single .about-us-copy {
  max-width: 1040px;
}

.about-us-identity .about-us-copy,
.about-us-overview-copy {
  max-width: 740px;
}

.about-us-overview-copy h2 {
  max-width: 760px;
  margin: 0;
  color: #101820;
  font-size: clamp(48px, 4.15vw, 70px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -0.045em;
}

.about-us-overview-lead {
  max-width: 690px;
  margin: 26px 0 0;
  color: #1f2933;
  font-size: clamp(20px, 1.45vw, 24px);
  font-weight: 700;
  line-height: 1.52;
  letter-spacing: -.01em;
}

.about-us-overview-rule {
  display: block;
  width: 56px;
  height: 4px;
  margin: 28px 0 32px;
  border-radius: 999px;
  background: var(--about-red);
}

.about-us-copy h2 {
  font-size: clamp(42px, 3.6vw, 60px);
  line-height: 1.04;
}

.about-us-identity .about-us-overview-copy h2 {
  max-width: 760px;
  color: #101820;
  font-size: clamp(48px, 4.15vw, 70px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -0.045em;
}

.about-us-overview-detail .about-us-copy .about-us-richtext {
  max-width: 700px;
  margin-top: 0;
}

.about-us-overview-detail .about-us-richtext,
.about-us-overview-detail .about-us-richtext p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #566273;
}

.about-us-overview-detail .about-us-richtext p {
  margin: 0 0 14px;
}

.about-us-overview-detail .about-us-richtext p:last-child {
  margin-bottom: 0;
}

.about-us-overview-detail .about-us-richtext p + p {
  margin-top: 18px;
}

.about-us-overview-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 32px);
  padding-top: 4px;
}

.about-us-overview-cards article {
  display: flex;
  min-height: clamp(270px, 18vw, 310px);
  padding: clamp(28px, 2.2vw, 36px);
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(17, 24, 32, .10);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .92)),
    radial-gradient(circle at 85% 10%, rgba(200, 20, 40, .035), transparent 34%);
  box-shadow: 0 22px 52px rgba(15, 23, 42, .07);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.about-us-overview-cards article:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 20, 40, .16);
  box-shadow: 0 26px 62px rgba(15, 23, 42, .085);
}

.about-us-overview-icon {
  position: relative;
  display: flex;
  place-items: center;
  align-items: center;
  justify-content: center;
  width: clamp(96px, 5.8vw, 104px);
  height: clamp(96px, 5.8vw, 104px);
  border-radius: 50%;
  border: 1px solid rgba(17, 24, 32, .08);
  background:
    radial-gradient(circle at center, #ffffff 0%, #ffffff 47%, #f6f7f9 48%, #f6f7f9 100%);
  box-shadow:
    inset 0 0 0 10px rgba(17, 24, 32, .025),
    0 16px 34px rgba(15, 23, 42, .075);
}

.about-us-overview-icon::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: rgba(227, 27, 35, .78);
  transform: rotate(-38deg);
  pointer-events: none;
}

.about-us-overview-icon img {
  position: relative;
  z-index: 1;
  width: clamp(46px, 3vw, 52px);
  height: clamp(46px, 3vw, 52px);
  object-fit: contain;
}

.about-us-overview-cards h3 {
  max-width: 320px;
  margin: 28px 0 0;
  color: #101820;
  font-size: clamp(22px, 1.35vw, 24px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.025em;
}

.about-us-card-rule {
  display: block;
  width: 30px;
  height: 3px;
  margin: 16px 0 18px;
  border-radius: 999px;
  background: var(--about-red);
}

.about-us-overview-cards p {
  max-width: 330px;
  margin: 0;
  color: #4f5b6b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.58;
}

.about-us-capability-cards h3,
.about-us-capability-cards h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.about-us-capability-cards p,
.about-us-capability-cards p {
  margin: 8px 0 0;
  color: var(--about-muted);
  font-size: 14px;
  line-height: 1.62;
}

.about-us-section-head {
  max-width: 860px;
  margin-bottom: 44px;
}

.about-us-section-head h2 {
  max-width: 820px;
}

.about-us-section-head-dark h2 {
  color: #ffffff;
}

.about-us-section-head-dark .about-us-eyebrow {
  color: #ff4052;
}

.about-us-page .about-us-stats-band {
  position: relative;
  min-height: 490px;
  color: #ffffff;
  overflow: hidden;
  background: #101820;
}

.about-us-page .about-us-stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 15, 22, .80) 0%, rgba(10, 15, 22, .66) 48%, rgba(10, 15, 22, .50) 100%),
    linear-gradient(180deg, rgba(10, 15, 22, .12) 0%, rgba(10, 15, 22, .30) 100%),
    radial-gradient(circle at 8% 22%, rgba(215, 25, 32, .10), transparent 30%);
}

.about-us-page .about-us-stats-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--about-stats-bg, none) center/cover no-repeat;
  opacity: .96;
  filter: saturate(.92) contrast(1.04);
}

.about-us-page .about-us-stats-inner {
  position: relative;
  z-index: 2;
  width: min(var(--about-container), calc(100vw - 96px));
  margin: 0 auto;
  padding: 86px 0 82px;
}

.about-us-page .about-us-stats-heading {
  max-width: 860px;
}

.about-us-page .about-us-stats-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: #ff3d4a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.about-us-page .about-us-stats-eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}

.about-us-page .about-us-stats-heading h2 {
  max-width: 860px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(44px, 3.2vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.about-us-page .about-us-stats-heading p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 20px;
  line-height: 1.55;
}

.about-us-page .about-us-stats-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .075));
  box-shadow: 0 28px 68px rgba(0, 0, 0, .28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-us-page .about-us-stat-item {
  position: relative;
  min-width: 0;
  min-height: 148px;
  padding: 34px 42px 32px;
}

.about-us-page .about-us-stat-item + .about-us-stat-item {
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.about-us-page .about-us-stat-number {
  color: #ff3d4a;
  font-size: clamp(48px, 3.4vw, 66px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -0.04em;
}

.about-us-page .about-us-stat-title {
  margin-top: 18px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.about-us-page .about-us-stat-desc {
  max-width: 240px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .66);
  font-size: 15px;
  line-height: 1.5;
}

.about-us-page .about-us-partner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(227, 27, 35, .035), transparent 30%),
    linear-gradient(180deg, #f5f7f9 0%, #ffffff 48%, #f4f6f8 100%);
}

.about-us-page .about-us-partner-inner {
  width: min(var(--about-container), calc(100% - 96px));
  margin: 0 auto;
  padding: 92px 0 104px;
}

.about-us-page .about-us-partner-heading {
  max-width: 1040px;
  margin-bottom: 36px;
}

.about-us-page .about-us-section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: #d71920;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.about-us-page .about-us-section-kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
}

.about-us-page .about-us-partner-heading h2 {
  margin: 0;
  color: #101820;
  font-size: clamp(46px, 4vw, 72px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.045em;
  overflow-wrap: break-word;
  word-break: normal;
}

.about-us-page .about-us-partner-heading > p:not(.about-us-section-kicker) {
  max-width: 820px;
  margin: 24px 0 0;
  color: #5d6978;
  font-size: 20px;
  line-height: 1.55;
}

.about-us-page .about-us-partner-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
  min-height: clamp(520px, 36vw, 570px);
}

.about-us-page .about-us-partner-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 32, .08);
  border-radius: 20px;
  background: #101820;
  box-shadow: 0 24px 58px rgba(15, 23, 42, .10);
}

.about-us-page .about-us-partner-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(.96) contrast(1.03);
}

.about-us-page .about-us-partner-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 27%;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 14, 20, .80) 100%);
  pointer-events: none;
}

.about-us-page .about-us-partner-visual figcaption {
  position: absolute;
  right: 32px;
  bottom: 28px;
  left: 32px;
  z-index: 2;
  max-width: 600px;
  padding-top: 18px;
  border-top: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.42;
}

.about-us-page .about-us-partner-visual figcaption::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: #d71920;
}

.about-us-page .about-us-partner-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 22px;
  min-width: 0;
  height: 100%;
}

.about-us-page .about-us-partner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  height: 100%;
  padding: 25px 27px 22px;
  border: 1px solid rgba(17, 24, 32, .08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .99), rgba(255, 255, 255, .95));
  box-shadow: 0 14px 36px rgba(15, 23, 42, .055);
  transition:
    box-shadow .24s ease,
    border-color .24s ease;
}

.about-us-page .about-us-partner-card:hover {
  transform: none;
  border-color: rgba(215, 25, 32, .15);
  box-shadow: 0 18px 44px rgba(15, 23, 42, .075);
}

.about-us-page .about-us-partner-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 15px;
}

.about-us-page .about-us-partner-index {
  color: #d71920;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.about-us-page .about-us-partner-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  border: 1px solid rgba(17, 24, 32, .07);
  border-radius: 50%;
  background: radial-gradient(circle at center, #ffffff 0%, #ffffff 48%, #f5f6f8 49%, #f5f6f8 100%);
  box-shadow:
    inset 0 0 0 7px rgba(17, 24, 32, .022),
    0 10px 22px rgba(15, 23, 42, .06);
}

.about-us-page .about-us-partner-icon::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 3px solid transparent;
  border-top-color: rgba(215, 25, 32, .72);
  border-radius: 50%;
  transform: rotate(-38deg);
  pointer-events: none;
}

.about-us-page .about-us-partner-icon img {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.about-us-page .about-us-partner-card h3 {
  max-width: 340px;
  margin: 0;
  color: #101820;
  font-size: clamp(20px, 1.2vw, 23px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.026em;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.about-us-page .about-us-partner-card h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: #d71920;
}

.about-us-page .about-us-partner-card > p {
  max-width: 370px;
  margin: 12px 0 0;
  color: #566273;
  font-size: 15px;
  line-height: 1.52;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.about-us-page .about-us-partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 24, 32, .08);
}

.about-us-page .about-us-partner-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #5d6978;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.3;
}

.about-us-page .about-us-partner-tags span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d71920;
}

.about-us-page .about-us-philosophy {
  width: 100%;
  padding: 96px 0 100px;
  background: #ffffff;
}

.about-us-page .about-us-philosophy-head {
  max-width: 820px;
}

.about-us-page .about-us-philosophy-head h2 {
  max-width: 760px;
}

.about-us-page .about-us-philosophy-head > p:last-child {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--about-body);
  font-size: 17px;
  line-height: 1.7;
}

.about-us-page .about-us-philosophy-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(17, 24, 32, .10);
}

.about-us-page .about-us-philosophy-list article {
  min-width: 0;
  min-height: 215px;
  padding: 4px 36px 0;
  border-left: 1px solid rgba(17, 24, 32, .09);
}

.about-us-page .about-us-philosophy-list article:first-child {
  padding-left: 0;
  border-left: 0;
}

.about-us-page .about-us-philosophy-index {
  display: block;
  color: #bcc4ce;
  font-size: clamp(48px, 3.4vw, 64px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: .9;
}

.about-us-page .about-us-philosophy-list h3 {
  margin: 24px 0 0;
  color: #111820;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.22;
  overflow-wrap: break-word;
}

.about-us-page .about-us-philosophy-rule {
  display: block;
  width: 32px;
  height: 3px;
  margin: 24px 0 18px;
  border-radius: 999px;
  background: #d71920;
}

.about-us-page .about-us-philosophy-list p {
  margin: 0;
  color: var(--about-muted);
  font-size: 15.5px;
  line-height: 1.68;
  overflow-wrap: break-word;
}

.about-us-page .about-us-certification {
  width: 100%;
  padding: 88px 0 64px;
  background:
    radial-gradient(circle at 82% 18%, rgba(200, 20, 40, .025), transparent 32%),
    linear-gradient(180deg, #f4f7fa 0%, #ffffff 100%);
}

.about-us-page .about-us-certification-layout {
  display: grid;
  grid-template-columns: minmax(430px, .88fr) minmax(0, 1.42fr);
  gap: clamp(54px, 4vw, 72px);
  align-items: center;
}

.about-us-page .about-us-certification-copy {
  min-width: 0;
  padding-inline-end: clamp(34px, 3vw, 54px);
  border-inline-end: 1px solid rgba(17, 24, 32, .08);
}

.about-us-page .about-us-certification-copy h2 {
  max-width: 560px;
  margin: 24px 0 0;
  color: #111820;
  font-size: clamp(48px, 3.55vw, 58px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.01;
  overflow-wrap: break-word;
}

.about-us-page .about-us-certification-description {
  max-width: 500px;
  margin-top: 24px;
}

.about-us-page .about-us-certification-lead,
.about-us-page .about-us-certification-detail {
  margin: 0;
  color: #4f5c6a;
  font-size: 16.5px;
  line-height: 1.68;
}

.about-us-page .about-us-certification-detail {
  margin-top: 12px;
  color: #667281;
  font-size: 15.5px;
}

.about-us-page .about-us-certification-points {
  display: grid;
  gap: 22px;
  max-width: 500px;
  margin-top: 30px;
}

.about-us-page .about-us-certification-point {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.about-us-page .about-us-certification-point-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #fff0f1;
}

.about-us-page .about-us-certification-point-icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.about-us-page .about-us-certification-point h3 {
  margin: 0;
  color: #15202c;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.about-us-page .about-us-certification-point p {
  margin: 4px 0 0;
  color: #5d6875;
  font-size: 14.25px;
  line-height: 1.52;
}

.about-us-page .about-us-certification-note {
  max-width: 500px;
  margin: 20px 0 0;
  color: #78828d;
  font-size: 12.5px;
  line-height: 1.55;
}

.about-us-page .about-us-cert-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 0;
  max-width: 500px;
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 24, 32, .12);
}

.about-us-page .about-us-cert-list span {
  display: inline-flex;
  align-items: center;
  color: #25303c;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
}

.about-us-page .about-us-cert-list span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-inline: 10px;
  border-radius: 50%;
  background: #d71920;
}

.about-us-page .about-us-certification-content {
  position: relative;
  display: grid;
  grid-template-rows: minmax(400px, 1fr) auto;
  min-width: 0;
  min-height: 580px;
  padding-top: 6px;
  align-content: stretch;
  isolation: isolate;
  overflow: visible;
}

.about-us-page .about-us-certification-network {
  position: absolute;
  z-index: 0;
  top: clamp(-380px, -18vw, -300px);
  inset-inline-end: clamp(-180px, -8vw, -110px);
  width: clamp(860px, 59vw, 1100px);
  aspect-ratio: 1 / 1;
  opacity: .28;
  pointer-events: none;
  user-select: none;
}

.about-us-page .about-us-certification-network img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.about-us-page .about-us-certification-visual {
  position: relative;
  z-index: 2;
  display: grid;
  align-self: center;
  width: min(100%, 1020px);
  margin: 44px auto 0;
  padding: 0;
  place-items: center;
  background: transparent;
}

.about-us-page .about-us-certification-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(15, 23, 42, .14));
}

.about-us-page .about-us-certification-regions {
  position: relative;
  z-index: 3;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
  margin-top: 2px;
  padding-top: 26px;
  border-top: 1px solid #d9e0e7;
}

.about-us-page .about-us-certification-regions article {
  min-width: 0;
  padding-inline: 16px;
}

.about-us-page .about-us-certification-regions article + article {
  border-inline-start: 1px solid rgba(17, 24, 32, .09);
}

.about-us-page .about-us-certification-regions img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.about-us-page .about-us-certification-regions h3 {
  margin: 12px 0 0;
  color: #16202a;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: break-word;
}

.about-us-page .about-us-certification-regions p {
  margin: 6px 0 0;
  color: #566270;
  font-size: 13px;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.about-us-page .about-us-cta {
  position: relative;
  width: 100%;
  min-height: 400px;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
  color: #ffffff;
  background-color: #07101c;
  background-image: var(--about-cta-bg, linear-gradient(135deg, #111820, #1d2731));
  background-position: center 54%;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-us-page .about-us-cta::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 58% 48%, rgba(218, 102, 48, .08), transparent 34%),
    linear-gradient(90deg, rgba(5, 15, 27, .96) 0%, rgba(5, 15, 27, .9) 30%, rgba(5, 15, 27, .72) 48%, rgba(5, 15, 27, .36) 67%, rgba(5, 15, 27, .05) 100%);
}

.about-us-page .about-us-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 400px;
  padding-block: 60px;
  align-items: center;
}

.about-us-page .about-us-cta-copy {
  max-width: 680px;
}

.about-us-page .about-us-cta-copy h2 {
  max-width: 650px;
  margin: 24px 0 0;
  color: #ffffff;
  font-size: clamp(46px, 3.6vw, 60px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.02;
  overflow-wrap: break-word;
}

.about-us-page .about-us-cta-description {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: 16.5px;
  line-height: 1.65;
}

.about-us-page .about-us-cta .about-us-eyebrow {
  color: #ff3a47;
}

.about-us-page .about-us-cta-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
}

.about-us-page .about-us-cta .about-us-btn {
  min-width: 185px;
  min-height: 54px;
  padding-inline: 28px;
  border-radius: 4px;
}

.about-us-page .about-us-cta .about-us-btn::after {
  content: "\2192";
  margin-inline-start: 24px;
  font-size: 16px;
  transition: transform .2s ease;
}

.about-us-page .about-us-cta .about-us-btn:hover::after {
  transform: translateX(2px);
}

.about-us-page .about-us-cta .about-us-btn-light {
  min-width: 175px;
  border-color: rgba(255, 255, 255, .68);
  color: #ffffff;
  background: rgba(255, 255, 255, .03);
}

.about-us-page .about-us-cta .about-us-btn-light:hover {
  background: rgba(255, 255, 255, .12);
}

[dir="rtl"] .about-us-page .about-us-cta::before {
  background:
    radial-gradient(circle at 42% 48%, rgba(218, 102, 48, .08), transparent 34%),
    linear-gradient(270deg, rgba(5, 15, 27, .96) 0%, rgba(5, 15, 27, .9) 30%, rgba(5, 15, 27, .72) 48%, rgba(5, 15, 27, .36) 67%, rgba(5, 15, 27, .05) 100%);
}

[dir="rtl"] .about-us-page .about-us-cta .about-us-btn::after {
  transform: rotate(180deg);
}

[dir="rtl"] .about-us-page .about-us-cta .about-us-btn:hover::after {
  transform: rotate(180deg) translateX(2px);
}

@media screen and (max-width: 1199px) {
  .about-us-hero-grid,
  .about-us-identity-grid,
  .about-us-capability-head,
  .about-us-capability-grid {
    grid-template-columns: 1fr;
  }

  .about-us-page .about-us-hero {
    padding: 38px 0 50px;
  }

  .about-us-page .about-us-hero-grid {
    grid-template-columns: 1fr;
    width: min(var(--about-container), calc(100% - (var(--about-gutter) * 2)));
    min-height: 0;
    overflow: hidden;
    margin: 0 auto;
    border: 1px solid rgba(17, 24, 32, .08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 56px rgba(15, 23, 42, .08);
  }

  .about-us-page .about-us-hero-copy {
    min-height: auto;
    padding: 58px 38px 44px;
  }

  .about-us-page .about-us-hero-media {
    min-height: 420px;
  }

  .about-us-page .about-us-hero-media::before,
  .about-us-page .about-us-hero-media-picture {
    display: none;
  }

  .about-us-page .about-us-hero-media-mobile {
    display: block;
    position: relative;
    inset: auto;
    min-height: 420px;
    overflow: hidden;
    background: #eef2f5;
  }

  .about-us-page .about-us-hero-media-mobile img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center right;
  }

  .about-us-page .about-us-hero-features-shell {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    min-height: auto;
    margin-top: 46px;
  }

  .about-us-page .about-us-hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    padding: 26px 38px;
    border-top: 1px solid rgba(17, 24, 32, .08);
    background: #ffffff;
    box-shadow: none;
  }

  .about-us-page .about-us-hero-features article {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 22px 24px;
  }

  .about-us-page .about-us-feature-icon {
    width: 64px;
    height: 64px;
  }

  .about-us-page .about-us-feature-icon img {
    width: 38px;
    height: 38px;
  }

  .about-us-page .about-us-hero-features h3 {
    font-size: 17px;
  }

  .about-us-page .about-us-hero-features p {
    font-size: 14px;
    line-height: 1.55;
  }

  .about-us-page .about-us-hero-features article:nth-child(2n) {
    border-right: 0;
  }

  .about-us-page .about-us-hero-features article:nth-child(n + 3) {
    border-top: 1px solid rgba(17, 24, 32, .1);
  }

  .about-us-overview-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-us-identity-grid {
    gap: 48px;
  }

  .about-us-overview-cards article {
    min-height: 300px;
  }

  .about-us-page .about-us-philosophy-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-us-page .about-us-philosophy-list article:nth-child(2n + 1) {
    padding-left: 0;
    border-left: 0;
  }

  .about-us-page .about-us-philosophy-list article:nth-child(n + 3) {
    padding-top: 34px;
    border-top: 1px solid rgba(17, 24, 32, .09);
  }

}

@media screen and (max-width: 1199px) {
  .about-us-page .about-us-stats-inner {
    width: min(100% - 48px, 1120px);
    padding: 72px 0;
  }

  .about-us-page .about-us-stats-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-us-page .about-us-stat-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .about-us-page .about-us-stat-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, .14);
  }
}

@media screen and (max-width: 767px) {
  .about-us-page {
    --about-gutter: 18px;
  }

  .about-us-page h2 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.1;
  }

  .about-us-page .about-us-hero {
    padding: 24px 0 38px;
  }

  .about-us-page .about-us-hero-grid {
    border-radius: 14px;
  }

  .about-us-page .about-us-hero-copy {
    padding: 40px 24px 34px;
  }

  .about-us-page .about-us-hero-copy h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .about-us-page .about-us-hero-copy .about-us-lead,
  .about-us-overview-detail .about-us-richtext,
  .about-us-overview-detail .about-us-richtext p {
    font-size: 15px;
    line-height: 1.68;
  }

  .about-us-page .about-us-actions,
  .about-us-page .about-us-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .about-us-page .about-us-btn {
    width: 100%;
  }

  .about-us-page .about-us-hero-features,
  .about-us-capability-cards,
  .about-us-overview-cards {
    grid-template-columns: 1fr;
  }

  .about-us-page .about-us-hero-features article,
  .about-us-page .about-us-philosophy-list article {
    border-right: 0;
  }

  .about-us-page .about-us-hero-features {
    padding: 8px 24px 22px;
  }

  .about-us-page .about-us-hero-features article {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 18px 0;
    border-top: 1px solid rgba(17, 24, 32, .1);
  }

  .about-us-page .about-us-feature-icon {
    width: 48px;
    height: 48px;
  }

  .about-us-page .about-us-feature-icon img {
    width: 28px;
    height: 28px;
  }

  .about-us-page .about-us-hero-features p {
    margin-top: 12px;
  }

  .about-us-page .about-us-hero-features article:first-child {
    border-top: 0;
  }

  .about-us-page .about-us-hero-features article:nth-child(n + 3) {
    border-top: 1px solid rgba(17, 24, 32, .1);
  }

  .about-us-page .about-us-hero-media,
  .about-us-page .about-us-hero-media-mobile,
  .about-us-page .about-us-hero-media-mobile img {
    min-height: 300px;
  }

  .about-us-identity,
  .about-us-capability,
  .about-us-page .about-us-philosophy,
  .about-us-page .about-us-certification {
    padding: 66px 0;
  }

  .about-us-identity .about-us-overview-copy h2 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.04;
    letter-spacing: -.035em;
  }

  .about-us-overview-lead {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.5;
  }

  .about-us-overview-rule {
    margin: 24px 0 28px;
  }

  .about-us-page .about-us-stats-inner {
    width: min(100% - 32px, 640px);
    padding: 62px 0;
  }

  .about-us-page .about-us-stats-heading h2 {
    font-size: 38px;
  }

  .about-us-page .about-us-stats-heading p {
    font-size: 17px;
  }

  .about-us-page .about-us-stats-rail {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .about-us-page .about-us-stat-item {
    min-height: auto;
    padding: 28px;
  }

  .about-us-page .about-us-stat-item + .about-us-stat-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .about-us-overview-cards article {
    min-height: auto;
    padding: 28px;
  }

  .about-us-overview-icon {
    width: 84px;
    height: 84px;
  }

  .about-us-overview-icon::before {
    inset: 8px;
    border-width: 3px;
  }

  .about-us-overview-icon img {
    width: 42px;
    height: 42px;
  }

  .about-us-overview-cards h3 {
    margin-top: 24px;
    font-size: 21px;
  }

  .about-us-card-rule {
    margin: 18px 0 18px;
  }

  .about-us-overview-cards p {
    font-size: 15px;
  }

  .about-us-capability-image {
    min-height: 260px;
  }

  .about-us-capability-cards article,
  .about-us-page .about-us-philosophy-list article {
    min-height: auto;
    padding: 24px;
  }

  .about-us-page .about-us-philosophy {
    padding: 66px 0 72px;
  }

  .about-us-page .about-us-philosophy-list {
    grid-template-columns: 1fr;
    margin-top: 40px;
    padding-top: 0;
    border-top: 0;
  }

  .about-us-page .about-us-philosophy-list article,
  .about-us-page .about-us-philosophy-list article:first-child,
  .about-us-page .about-us-philosophy-list article:nth-child(2n + 1),
  .about-us-page .about-us-philosophy-list article:nth-child(n + 3) {
    min-height: 0;
    padding: 30px 0;
    border: 0;
    border-top: 1px solid rgba(17, 24, 32, .09);
  }

  .about-us-page .about-us-philosophy-index {
    font-size: 42px;
  }

}

@media screen and (max-width: 1359px) {
  .about-us-page .about-us-partner-inner {
    width: min(100% - 48px, 1120px);
    padding: 82px 0 92px;
  }

  .about-us-page .about-us-partner-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
  }

  .about-us-page .about-us-partner-visual {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .about-us-page .about-us-partner-visual img {
    position: absolute;
    min-height: 0;
  }

  .about-us-page .about-us-partner-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    height: auto;
  }

  .about-us-page .about-us-partner-card {
    min-height: 270px;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .about-us-page .about-us-partner-inner {
    width: min(100% - 32px, 640px);
    padding: 66px 0 74px;
  }

  .about-us-page .about-us-partner-heading {
    margin-bottom: 30px;
  }

  .about-us-page .about-us-partner-heading h2 {
    font-size: 38px;
    line-height: 1.05;
  }

  .about-us-page .about-us-partner-heading > p:not(.about-us-section-kicker) {
    font-size: 17px;
  }

  .about-us-page .about-us-partner-layout {
    gap: 20px;
  }

  .about-us-page .about-us-partner-visual {
    aspect-ratio: 4 / 3;
  }

  .about-us-page .about-us-partner-visual figcaption {
    right: 22px;
    bottom: 22px;
    left: 22px;
    font-size: 14.5px;
  }

  .about-us-page .about-us-partner-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-us-page .about-us-partner-card {
    min-height: auto;
    padding: 26px 24px 22px;
  }

  .about-us-page .about-us-partner-icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .about-us-page .about-us-partner-icon img {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-us-page .about-us-partner-card {
    transition: none;
  }

  .about-us-page .about-us-partner-card:hover {
    transform: none;
  }
}

/* Certification and final CTA responsive rules. */
@media screen and (max-width: 1199px) {
  .about-us-page .about-us-certification-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-us-page .about-us-certification-copy {
    padding-inline-end: 0;
    border-inline-end: 0;
  }

  .about-us-page .about-us-certification-description,
  .about-us-page .about-us-certification-points,
  .about-us-page .about-us-certification-note,
  .about-us-page .about-us-cert-list {
    max-width: 760px;
  }

  .about-us-page .about-us-certification-visual {
    width: min(100%, 900px);
    margin-top: 24px;
  }

  .about-us-page .about-us-certification-content {
    grid-template-rows: minmax(360px, auto) auto;
    min-height: 540px;
  }

  .about-us-page .about-us-certification-network {
    top: -75px;
    inset-inline-end: -170px;
    width: min(82vw, 880px);
    aspect-ratio: 1 / 1;
    opacity: .20;
  }

  .about-us-page .about-us-certification-regions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-us-page .about-us-certification-regions article {
    padding: 22px;
    border-top: 1px solid rgba(17, 24, 32, .09);
  }

  .about-us-page .about-us-certification-regions article + article {
    border-inline-start: 0;
  }

  .about-us-page .about-us-certification-regions article:not(:nth-child(3n + 1)) {
    border-inline-start: 1px solid rgba(17, 24, 32, .09);
  }
}

@media screen and (max-width: 767px) {
  .about-us-page .about-us-certification {
    padding: 68px 0 52px;
  }

  .about-us-page .about-us-certification-layout {
    gap: 38px;
  }

  .about-us-page .about-us-certification-copy h2 {
    font-size: clamp(38px, 10vw, 42px);
    line-height: 1.04;
  }

  .about-us-page .about-us-certification-description {
    margin-top: 22px;
  }

  .about-us-page .about-us-certification-visual {
    width: 100%;
    margin-top: 22px;
  }

  .about-us-page .about-us-certification-visual img {
    max-height: none;
  }

  .about-us-page .about-us-certification-content {
    grid-template-rows: auto auto;
    min-height: auto;
    padding-top: 10px;
  }

  .about-us-page .about-us-certification-network {
    top: -18px;
    inset-inline-end: -230px;
    width: 620px;
    aspect-ratio: 1 / 1;
    opacity: .12;
  }

  .about-us-page .about-us-certification-regions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 26px;
    padding-top: 0;
  }

  .about-us-page .about-us-certification-regions article,
  .about-us-page .about-us-certification-regions article:not(:nth-child(3n + 1)) {
    padding: 20px 12px;
    border-inline-start: 0;
    border-top: 1px solid rgba(17, 24, 32, .09);
  }

  .about-us-page .about-us-certification-regions article:nth-child(2n) {
    border-inline-start: 1px solid rgba(17, 24, 32, .09);
  }

  .about-us-page .about-us-certification-regions img {
    width: 32px;
    height: 32px;
  }

  .about-us-page .about-us-cta {
    min-height: 570px;
    margin-bottom: 0;
    background-position: 66% center;
  }

  .about-us-page .about-us-cta::before {
    background:
      radial-gradient(circle at 56% 46%, rgba(200, 20, 40, .08), transparent 34%),
      linear-gradient(90deg, rgba(5, 15, 27, .96) 0%, rgba(5, 15, 27, .88) 62%, rgba(5, 15, 27, .58) 100%);
  }

  [dir="rtl"] .about-us-page .about-us-cta::before {
    background:
      radial-gradient(circle at 44% 46%, rgba(200, 20, 40, .08), transparent 34%),
      linear-gradient(270deg, rgba(5, 15, 27, .96) 0%, rgba(5, 15, 27, .88) 62%, rgba(5, 15, 27, .58) 100%);
  }

  .about-us-page .about-us-cta-inner {
    min-height: 570px;
    padding-block: 68px;
    align-items: flex-end;
  }

  .about-us-page .about-us-cta-copy h2 {
    font-size: clamp(38px, 10vw, 48px);
    line-height: 1.04;
  }

  .about-us-page .about-us-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .about-us-page .about-us-cta .about-us-btn {
    width: 100%;
    min-width: 0;
  }
}

@media screen and (max-width: 420px) {
  .about-us-page .about-us-certification-network {
    top: 6px;
    inset-inline-end: -270px;
    width: 540px;
    opacity: .09;
  }

  .about-us-page .about-us-certification-regions {
    grid-template-columns: 1fr;
  }

  .about-us-page .about-us-certification-regions article:nth-child(2n) {
    border-inline-start: 0;
  }
}
