.about-page {
  background: #ffffff;
}

.about-container {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.about-hero {
  position: relative;
  display: flex;
  min-height: 560px;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-navy);
  padding-top: 118px;
}

.about-hero__media,
.about-hero__overlay {
  position: absolute;
  inset: 0;
}

.about-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
}

.about-hero__overlay {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.7) 46%, rgba(15, 23, 42, 0.28) 100%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.12) 20%, rgba(15, 23, 42, 0.72) 100%);
}

.about-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 92px;
  padding-bottom: 72px;
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.about-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.about-breadcrumb a:hover {
  color: #ffffff;
}

.about-breadcrumb .material-symbols-outlined {
  font-size: 16px;
}

.about-hero .about-eyebrow {
  color: #ff8a52;
}

.about-hero h1 {
  max-width: 820px;
  margin-top: 18px;
  color: #ffffff;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-hero p {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.7;
}

.about-profile {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background: #ffffff;
}

.about-profile__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: 72px;
  align-items: center;
}

.about-profile__visual {
  position: relative;
  min-height: 590px;
  padding-right: 86px;
  padding-bottom: 64px;
}

.about-profile__visual-main {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 526px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.about-profile__visual-secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 43%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 8px solid #ffffff;
  border-radius: var(--radius-md);
  background: #ffffff;
}

.about-profile__visual-secondary img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-profile__content {
  position: relative;
}

.about-profile__content h2,
.about-scenes__header h2,
.about-industries__header h2,
.about-network__header h2,
.about-strategy__content h2 {
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.about-profile__content h2 {
  max-width: 640px;
  margin-top: 18px;
}

.about-profile__lead {
  margin-top: 24px;
  color: var(--color-slate);
  font-size: 18px;
  line-height: 1.72;
}

.about-profile__copy {
  margin-top: 18px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.72;
}

.about-profile__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  margin-top: 30px;
}

.about-profile__point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.about-profile__point .material-symbols-outlined {
  margin-top: 1px;
  color: var(--color-primary);
  font-size: 20px;
}

.about-profile__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  margin-top: 34px;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  padding: 0 22px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.25s ease;
}

.about-profile__action:hover {
  background: var(--color-primary-dark);
}

.about-profile__action .material-symbols-outlined {
  font-size: 18px;
}

.about-profile__watermark {
  position: absolute;
  right: -80px;
  bottom: -96px;
  width: 300px;
  opacity: 0.055;
  pointer-events: none;
}

.about-stats {
  background: var(--color-navy);
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-stat {
  position: relative;
  min-height: 168px;
  padding: 34px 28px;
}

.about-stat + .about-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.about-stat__value {
  color: #ffffff;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.about-stat__label {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.5;
}

.about-stat::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 0;
  left: 28px;
  height: 3px;
  background: var(--color-primary);
  transform: scaleX(0.25);
  transform-origin: left;
}

.about-scenes {
  padding: 104px 0;
  background: #ffffff;
}

.about-scenes__header {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.58fr);
  gap: 72px;
  align-items: end;
}

.about-scenes__header h2 {
  max-width: 720px;
  margin-top: 18px;
}

.about-scenes__copy {
  color: #64748b;
  font-size: 16px;
  line-height: 1.72;
}

.about-scenes__copy p + p {
  margin-top: 12px;
}

.about-scenes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 22px;
  margin-top: 54px;
}

.about-scene {
  min-width: 0;
}

.about-scene img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.about-scene figcaption {
  margin-top: 13px;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.about-industries {
  overflow: hidden;
  padding: 104px 0;
  background: linear-gradient(180deg, #f7fafe 0%, #edf4fb 100%);
}

.about-industries__header {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.about-industries__header .about-eyebrow::after {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

.about-industries__header h2 {
  margin-top: 18px;
}

.about-industries__header > p {
  margin-top: 18px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.72;
}

.about-industries__viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.about-industries__collection {
  display: flex;
  gap: 5px;
  height: 430px;
}

.about-industry {
  position: relative;
  min-width: 0;
  flex: 1 1 0;
  overflow: hidden;
  background: var(--color-navy);
  transition: flex-grow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-industry__trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.about-industry__trigger:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -3px;
}

.about-industry:hover {
  flex-grow: 1.9;
}

.about-industry::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4, 19, 38, 0.02) 22%, rgba(4, 19, 38, 0.94) 100%);
  pointer-events: none;
}

.about-industry__trigger > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.45s ease;
}

.about-industry:hover .about-industry__trigger > img {
  transform: scale(1.045);
}

.about-industry__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  padding: 22px 18px;
  color: #ffffff;
}

.about-industry__content > .material-symbols-outlined {
  font-size: 23px;
}

.about-industry strong {
  display: block;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.about-industry small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.5;
}

.about-network {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.88)),
    url("../images/contact-map.webp") center / cover no-repeat;
}

.about-network__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: 72px;
  align-items: center;
}

.about-network__header .about-eyebrow {
  color: #ff8a52;
}

.about-network__header h2 {
  max-width: 620px;
  margin-top: 18px;
  color: #ffffff;
}

.about-network__header > p {
  max-width: 600px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.72;
}

.about-network__carousel {
  position: relative;
  margin-top: 34px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #0b1526;
}

.about-network__slides {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.about-network__slides img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  transform: translateY(18px) scale(1.015);
  transition: opacity 0.42s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-user-drag: none;
}

.about-network__slides img.is-active {
  z-index: 1;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.about-network__carousel-bar {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 10px 8px 16px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.about-network__carousel-actions {
  display: flex;
  gap: 6px;
}

.about-network__carousel-actions button {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: transparent;
  color: #ffffff;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.about-network__carousel-actions button:hover {
  border-color: var(--color-primary-light);
  background: rgba(228, 90, 32, 0.16);
}

.about-network__carousel-actions .material-symbols-outlined {
  font-size: 20px;
}

.about-network__locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 8px;
}

.about-location {
  appearance: none;
  display: block;
  width: 100%;
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.25s ease, padding 0.25s ease;
}

.about-location:nth-child(even) {
  padding: 26px;
}

.about-location--wide {
  grid-column: 1 / -1;
  min-height: 168px;
  padding: 26px;
}

.about-location:hover,
.about-location.is-active {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 138, 82, 0.36);
}

.about-location:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: -2px;
}

.about-location__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.about-location__number {
  color: var(--color-primary-light);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.about-location__role {
  max-width: 68%;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  text-align: right;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.about-location h3 {
  margin-top: 18px;
  color: #ffffff;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  transition: color 0.25s ease;
}

.about-location:hover h3,
.about-location.is-active h3 {
  color: var(--color-primary-light);
}

.about-location p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.65;
}

.about-strategy {
  padding: 104px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f5f8fc 58%, #edf3f9 100%);
}

.about-strategy__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 72px;
  align-items: center;
}

.about-strategy__content h2 {
  max-width: 660px;
  margin-top: 18px;
}

.about-strategy__content > p {
  max-width: 660px;
  margin-top: 22px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.72;
}

.about-strategy__markets {
  margin-top: 34px;
  border-top: 1px solid var(--color-border);
}

.about-strategy__market {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border);
}

.about-strategy__market > .material-symbols-outlined {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(228, 90, 32, 0.1);
  color: var(--color-primary);
  font-size: 22px;
}

.about-strategy__market h3 {
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.about-strategy__market p {
  margin-top: 7px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}

.about-strategy__outlook {
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr);
  gap: 18px;
  margin-top: 28px;
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255, 255, 255, 0.78);
  padding: 20px 22px;
}

.about-strategy__outlook > span {
  color: var(--color-primary);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-strategy__outlook p {
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
}

.about-strategy__outlook strong {
  color: var(--color-navy);
  font-weight: 700;
}

.about-strategy__visual {
  position: relative;
  display: flex;
  min-height: 520px;
  align-items: center;
  justify-content: center;
  padding: 36px 20px 76px;
}

.about-strategy__visual img {
  display: block;
  width: 100%;
  max-height: 470px;
  object-fit: contain;
}

.about-strategy__caption {
  position: absolute;
  right: 20px;
  bottom: 24px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.about-strategy__caption .material-symbols-outlined {
  color: var(--color-primary);
  font-size: 20px;
}

.about-cta {
  position: relative;
  overflow: hidden;
  background: var(--color-navy);
}

.about-cta__media,
.about-cta__overlay {
  position: absolute;
  inset: 0;
}

.about-cta__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.about-cta__overlay {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.8) 55%, rgba(15, 23, 42, 0.4) 100%);
}

.about-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 390px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.about-cta__copy {
  max-width: 760px;
}

.about-cta__copy .about-eyebrow {
  color: #ff8a52;
}

.about-cta__copy h2 {
  margin-top: 18px;
  color: #ffffff;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

.about-cta__copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.about-cta__button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  padding: 0 24px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.25s ease;
}

.about-cta__button:hover {
  background: var(--color-primary-dark);
}

.about-cta__button .material-symbols-outlined {
  font-size: 18px;
}

@media (max-width: 1100px) {
  .about-profile__layout,
  .about-network__layout,
  .about-strategy__layout {
    gap: 48px;
  }

  .about-profile__visual {
    min-height: 520px;
    padding-right: 54px;
  }

  .about-profile__visual-main {
    min-height: 456px;
  }

}

@media (max-width: 900px) {
  .about-profile__layout,
  .about-scenes__header,
  .about-network__layout,
  .about-strategy__layout {
    grid-template-columns: 1fr;
  }

  .about-profile__visual {
    min-height: 560px;
  }

  .about-profile__visual-main {
    min-height: 496px;
  }

  .about-profile__content {
    max-width: 760px;
  }

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

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

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

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

  .about-industries__viewport {
    overflow-x: auto;
    padding-bottom: 10px;
    border-radius: 0;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .about-industries__collection {
    width: max-content;
    height: 390px;
  }

  .about-industry {
    width: 240px;
    flex: 0 0 240px;
    border-radius: var(--radius-sm);
    scroll-snap-align: start;
  }

  .about-network__header {
    max-width: 760px;
  }

  .about-strategy__content {
    max-width: 760px;
  }

  .about-strategy__visual {
    min-height: 460px;
  }

  .about-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .about-container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .about-hero {
    min-height: 500px;
    padding-top: 88px;
  }

  .about-hero__content {
    padding-top: 68px;
    padding-bottom: 54px;
  }

  .about-breadcrumb {
    margin-bottom: 22px;
  }

  .about-hero h1 {
    font-size: 40px;
    line-height: 1.1;
  }

  .about-hero p {
    font-size: 16px;
  }

  .about-profile,
  .about-scenes,
  .about-industries,
  .about-network,
  .about-strategy {
    padding: 72px 0;
  }

  .about-profile__layout {
    gap: 46px;
  }

  .about-profile__visual {
    min-height: 430px;
    padding-right: 34px;
    padding-bottom: 44px;
  }

  .about-profile__visual-main {
    min-height: 386px;
  }

  .about-profile__visual-secondary {
    width: 46%;
    border-width: 5px;
  }

  .about-profile__content h2,
  .about-scenes__header h2,
  .about-industries__header h2,
  .about-network__header h2,
  .about-strategy__content h2 {
    font-size: 30px;
  }

  .about-profile__lead {
    font-size: 16px;
  }

  .about-profile__points {
    grid-template-columns: 1fr;
  }

  .about-stat {
    min-height: 144px;
    padding: 28px 20px;
  }

  .about-stat__value {
    font-size: 34px;
  }

  .about-scenes__header {
    gap: 24px;
  }

  .about-scenes__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 42px;
  }

  .about-industries__header {
    margin-bottom: 34px;
  }

  .about-industries__viewport {
    margin-right: 0;
    margin-left: 0;
    padding-bottom: 0;
    overflow: visible;
    border-radius: var(--radius-sm);
    scrollbar-width: none;
  }

  .about-industries__collection {
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 10px;
  }

  .about-industry {
    width: 100%;
    height: 84px;
    min-width: 0;
    flex: 0 0 auto;
    border: 1px solid #d8e1eb;
    border-radius: var(--radius-sm);
    background: #ffffff;
    scroll-snap-align: none;
    transition: height 0.34s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.22s ease, box-shadow 0.22s ease;
  }

  .about-industry.is-active {
    height: 148px;
    border-color: rgba(240, 90, 33, 0.45);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
  }

  .about-industry:hover,
  .about-industry.is-active:hover {
    flex-grow: initial;
  }

  .about-industry::after {
    display: none;
  }

  .about-industry__trigger {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: stretch;
  }

  .about-industry__trigger > img {
    width: 112px;
    height: 100%;
    opacity: 1;
    object-fit: cover;
    transform: none;
    transition: none;
  }

  .about-industry:hover .about-industry__trigger > img,
  .about-industry.is-active .about-industry__trigger > img {
    transform: none;
  }

  .about-industry__content {
    position: static;
    right: auto;
    bottom: auto;
    left: auto;
    align-content: center;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    min-width: 0;
    padding: 13px 14px;
    color: var(--color-navy);
    transition: padding 0.34s ease;
  }

  .about-industry__content > .material-symbols-outlined {
    align-self: start;
    color: var(--color-primary);
    font-size: 20px;
  }

  .about-industry:not(.is-active) .about-industry__content {
    top: auto;
    display: grid;
    align-items: center;
    justify-content: initial;
    gap: 10px;
    padding: 13px 14px;
  }

  .about-industry:not(.is-active) .about-industry__content > span:last-child {
    display: block;
    min-height: 0;
  }

  .about-industry strong,
  .about-industry:not(.is-active) strong,
  .about-industry.is-active strong {
    overflow: visible;
    font-size: 14px;
    line-height: 1.25;
    white-space: normal;
    writing-mode: horizontal-tb;
    transform: none;
  }

  .about-industry small {
    display: block;
    max-height: 64px;
    margin-top: 7px;
    overflow: hidden;
    color: #64748b;
    font-size: 11px;
    line-height: 1.45;
    opacity: 1;
    transition: max-height 0.3s ease, margin 0.3s ease, opacity 0.2s ease;
  }

  .about-industry:not(.is-active) small {
    display: block;
    max-height: 0;
    margin-top: 0;
    opacity: 0;
  }

  .about-industry.is-active small {
    max-height: 64px;
    margin-top: 7px;
    opacity: 1;
  }

  .about-network__layout {
    gap: 46px;
  }

  .about-network__locations {
    grid-template-columns: 1fr;
  }

  .about-location,
  .about-location:nth-child(even) {
    min-height: 0;
    padding: 24px;
  }

  .about-location--wide {
    grid-column: auto;
  }

  .about-strategy__outlook {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-strategy__visual {
    min-height: 360px;
    padding: 20px 0 64px;
  }

  .about-cta__inner {
    min-height: 420px;
    gap: 30px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about-cta__copy h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding-top: 72px;
  }

  .about-hero h1 {
    font-size: 36px;
  }

  .about-profile__visual {
    min-height: 360px;
  }

  .about-profile__visual-main {
    min-height: 316px;
  }

  .about-stat {
    padding-right: 16px;
    padding-left: 16px;
  }

  .about-stat__value {
    font-size: 30px;
  }

  .about-stat__label {
    font-size: 13px;
  }

  .about-strategy__visual {
    min-height: 300px;
  }
}
