:root {
  --about-navy: #041c34;
  --about-blue: #07508e;
  --about-yellow: #ffb600;
  --about-line: #dce4eb;
  --about-muted: #5d7081;
  --about-soft: #f5f8fb;
}

.about-page {
  color: #0b2948;
  background: #fff;
}

.about-page .site-header {
  z-index: 160;
}

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

.about-hero {
  padding: 56px max(34px, calc((100% - 1280px) / 2));
  overflow: hidden;
  background-color: var(--about-navy);
  color: #fff;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(440px, 1.12fr);
  gap: 66px;
  align-items: center;
}

.about-eyebrow,
.about-page .section-kicker {
  margin: 0 0 12px;
  color: var(--about-yellow);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.about-hero h1 {
  max-width: 610px;
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 3.35vw, 50px);
  line-height: 1.06;
}

.about-lead {
  max-width: 610px;
  margin: 20px 0 0;
  color: #d4e0ea;
  font-size: 15px;
  line-height: 1.72;
}

.about-trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.about-trust-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 0 17px;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.about-trust-item:first-child {
  padding-left: 0;
}

.about-trust-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.about-trust-item > svg {
  width: 31px;
  height: 31px;
  color: var(--about-yellow);
  stroke-width: 1.7;
}

.about-trust-item strong,
.about-trust-item span {
  display: block;
  overflow-wrap: anywhere;
}

.about-trust-item strong {
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
}

.about-trust-item span {
  margin-top: 3px;
  color: #c5d2dd;
  font-size: 10px;
  line-height: 1.35;
}

.about-video-shell {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 5px;
  background: #0b2a45;
}

.about-company-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #061e33;
}

.about-video-shade {
  position: absolute;
  inset: 0;
  background: rgba(3, 19, 33, .18);
  pointer-events: none;
}

.about-video-shell.is-playing .about-video-shade,
.about-video-shell.is-playing .about-video-play,
.about-video-shell.is-playing .about-video-caption {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.about-video-shade,
.about-video-play,
.about-video-caption {
  transition: opacity .2s ease, visibility .2s ease, background .2s ease, transform .2s ease;
}

.about-video-play,
.about-video-caption {
  position: absolute;
  border: 0;
  color: #fff;
  cursor: pointer;
}

.about-video-play {
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  color: #092844;
  transform: translate(-50%, -50%);
  box-shadow: 0 14px 34px rgba(2, 18, 33, .3);
  transition: transform .2s ease, background .2s ease;
}

.about-video-play:hover {
  background: var(--about-yellow);
  transform: translate(-50%, -50%) scale(1.04);
}

.about-video-play svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
  fill: currentColor;
}

.about-video-caption {
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 16px;
  background: rgba(2, 20, 36, .76);
  font-size: 12px;
  font-weight: 800;
  text-align: left;
}

.about-video-caption svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.about-video-play:focus-visible,
.about-video-caption:focus-visible,
.about-button:focus-visible {
  outline: 3px solid var(--about-yellow);
  outline-offset: 3px;
}

.about-stats {
  padding: 18px max(34px, calc((100% - 1180px) / 2));
  background: #fff;
}

.about-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-stat {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 108px;
  padding: 18px 20px;
  border: 1px solid var(--about-line);
  border-radius: 4px;
  background: #fff;
}

.about-stat-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #082f55;
  color: #fff;
}

.about-stat-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.6;
}

.about-stat strong {
  display: block;
  color: #092c51;
  font-size: 35px;
  line-height: 1;
}

.about-stat p {
  margin: 8px 0 0;
  color: var(--about-muted);
  font-size: 12px;
  line-height: 1.35;
}

.about-factory {
  padding: 42px max(34px, calc((100% - 1180px) / 2)) 60px;
}

.about-factory-inner {
  display: grid;
  grid-template-columns: minmax(260px, .68fr) minmax(0, 1.52fr);
  gap: 62px;
  align-items: center;
}

.about-page .section-kicker {
  color: var(--about-blue);
}

.about-factory h2,
.about-buyer-support h2,
.about-cases h2,
.about-project-cta h2 {
  margin: 0;
  color: #0b2948;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.12;
}

.about-factory-copy > p:not(.section-kicker) {
  margin: 17px 0 0;
  color: var(--about-muted);
  font-size: 14px;
  line-height: 1.72;
}

.about-check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.about-check-list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #2c4358;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.about-check-list svg {
  width: 18px;
  height: 18px;
  color: var(--about-yellow);
  stroke-width: 2.2;
}

.about-factory-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}

.about-factory-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 1.55 / 1;
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  background: #dce5ec;
}

.about-factory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.about-factory-card:hover img {
  transform: scale(1.035);
}

.about-factory-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 29px;
  padding: 7px 10px;
  background: rgba(3, 30, 53, .84);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.about-buyer-support {
  padding: 40px max(34px, calc((100% - 1240px) / 2)) 54px;
  border-top: 1px solid #edf1f4;
  background: #fff;
}

.about-section-heading {
  text-align: center;
}

.about-support-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 27px;
}

.about-support-card {
  min-width: 0;
  min-height: 202px;
  padding: 24px 15px 19px;
  border: 1px solid var(--about-line);
  border-radius: 4px;
  background: #fff;
  text-align: center;
}

.about-support-card > svg {
  width: 43px;
  height: 43px;
  margin-bottom: 16px;
  color: #093e71;
  stroke-width: 1.55;
}

.about-support-card h3 {
  min-height: 38px;
  margin: 0 0 8px;
  color: #0c2c4a;
  font-size: 14px;
  line-height: 1.35;
}

.about-support-card p {
  margin: 0;
  color: var(--about-muted);
  font-size: 11px;
  line-height: 1.55;
}

.about-cases {
  padding: 42px max(34px, calc((100% - 1280px) / 2)) 50px;
  border-top: 1px solid var(--about-line);
  border-bottom: 1px solid var(--about-line);
  background: var(--about-soft);
}

.about-cases-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .85fr);
  gap: 50px;
  align-items: end;
}

.about-cases-heading > p {
  max-width: 520px;
  margin: 0 0 3px auto;
  color: var(--about-muted);
  font-size: 13px;
  line-height: 1.65;
}

.about-case-carousel {
  --about-case-gap: 14px;
  overflow: hidden;
  margin-top: 25px;
  direction: ltr;
}

.about-case-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: about-cases-scroll-right 42s linear infinite;
}

.about-case-set {
  display: flex;
  flex: none;
  gap: var(--about-case-gap);
  padding-right: var(--about-case-gap);
}

.about-case-card {
  position: relative;
  flex: none;
  width: clamp(245px, 24vw, 310px);
  aspect-ratio: 1.48 / 1;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #102b47;
}

.about-case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.about-case-card:hover img {
  transform: scale(1.035);
}

.about-case-carousel:hover .about-case-track {
  animation-play-state: paused;
}

@keyframes about-cases-scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.about-project-cta {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 18px max(18px, calc((100% - 1320px) / 2));
  padding: 20px 34px;
  border-radius: 4px;
  background: var(--about-navy);
  color: #fff;
}

.about-project-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 2px solid var(--about-yellow);
  border-radius: 50%;
  color: var(--about-yellow);
}

.about-project-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.6;
}

.about-project-cta h2 {
  color: #fff;
  font-size: 25px;
}

.about-project-cta p {
  margin: 5px 0 0;
  color: #c8d6e1;
  font-size: 12px;
  line-height: 1.5;
}

.about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 210px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 3px;
  background: var(--about-yellow);
  color: #071c31;
  font-size: 13px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease;
}

.about-button:hover {
  background: #ffc328;
  transform: translateY(-2px);
}

.about-button svg {
  width: 18px;
  height: 18px;
}

html[dir="rtl"] .about-hero-copy,
html[dir="rtl"] .about-factory-copy,
html[dir="rtl"] .about-cases-heading,
html[dir="rtl"] .about-project-cta {
  text-align: right;
}

html[dir="rtl"] .about-trust-item {
  border-right: 0;
  border-left: 1px solid rgba(255, 255, 255, .2);
}

html[dir="rtl"] .about-trust-item:first-child {
  padding-right: 0;
  padding-left: 17px;
}

html[dir="rtl"] .about-trust-item:last-child {
  padding-right: 17px;
  padding-left: 0;
  border-left: 0;
}

html[dir="rtl"] .about-video-caption {
  text-align: right;
}

@media (max-width: 1120px) {
  .about-hero-inner {
    grid-template-columns: minmax(0, .95fr) minmax(390px, 1fr);
    gap: 38px;
  }

  .about-trust-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-trust-item,
  .about-trust-item:first-child,
  .about-trust-item:last-child,
  html[dir="rtl"] .about-trust-item,
  html[dir="rtl"] .about-trust-item:first-child,
  html[dir="rtl"] .about-trust-item:last-child {
    padding: 0;
    border: 0;
  }

  .about-factory-inner {
    gap: 38px;
  }

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

@media (max-width: 860px) {
  .about-hero {
    padding: 48px 30px 54px;
  }

  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-hero h1 {
    max-width: 720px;
  }

  .about-trust-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .about-trust-item,
  .about-trust-item:first-child,
  .about-trust-item:last-child,
  html[dir="rtl"] .about-trust-item,
  html[dir="rtl"] .about-trust-item:first-child,
  html[dir="rtl"] .about-trust-item:last-child {
    padding: 0 14px;
  }

  .about-trust-item:first-child,
  html[dir="rtl"] .about-trust-item:first-child {
    padding-left: 0;
  }

  .about-stats,
  .about-factory,
  .about-buyer-support,
  .about-cases {
    padding-right: 30px;
    padding-left: 30px;
  }

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

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

  .about-factory-copy {
    max-width: 700px;
  }

  .about-cases-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-cases-heading > p {
    margin-left: 0;
  }

  .about-project-cta {
    grid-template-columns: 62px minmax(0, 1fr);
    margin-right: 30px;
    margin-left: 30px;
  }

  .about-project-cta .about-button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 620px) {
  .about-hero {
    padding: 44px 18px 46px;
  }

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

  .about-lead {
    font-size: 14px;
  }

  .about-trust-list {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 27px;
  }

  .about-trust-item,
  .about-trust-item:first-child,
  .about-trust-item:last-child,
  html[dir="rtl"] .about-trust-item,
  html[dir="rtl"] .about-trust-item:first-child,
  html[dir="rtl"] .about-trust-item:last-child {
    padding: 0;
  }

  .about-video-play {
    width: 62px;
    height: 62px;
  }

  .about-stats,
  .about-factory,
  .about-buyer-support,
  .about-cases {
    padding-right: 18px;
    padding-left: 18px;
  }

  .about-stats {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .about-stats-inner {
    gap: 10px;
  }

  .about-stat {
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 10px;
    min-height: 94px;
    padding: 14px 11px;
  }

  .about-stat-icon {
    width: 43px;
    height: 43px;
  }

  .about-stat-icon svg {
    width: 22px;
    height: 22px;
  }

  .about-stat strong {
    font-size: 29px;
  }

  .about-stat p {
    font-size: 10px;
  }

  .about-factory {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .about-factory-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .about-factory-card {
    aspect-ratio: 1.25 / 1;
  }

  .about-factory-card figcaption {
    font-size: 9px;
  }

  .about-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .about-support-card {
    min-height: 190px;
    padding: 21px 11px 16px;
  }

  .about-support-card h3 {
    font-size: 12px;
  }

  .about-support-card p {
    font-size: 10px;
  }

  .about-cases {
    padding-top: 36px;
    padding-bottom: 40px;
  }

  .about-case-carousel {
    --about-case-gap: 9px;
    margin-top: 20px;
  }

  .about-case-card {
    width: min(76vw, 286px);
    aspect-ratio: 1.35 / 1;
  }

  .about-project-cta {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 15px;
    margin: 14px 18px;
    padding: 19px 17px;
  }

  .about-project-icon {
    width: 50px;
    height: 50px;
  }

  .about-project-icon svg {
    width: 27px;
    height: 27px;
  }

  .about-project-cta h2 {
    font-size: 20px;
  }

  .about-button {
    min-width: 0;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 350px) {
  .about-hero h1 {
    font-size: 34px;
  }

  .about-stats-inner,
  .about-factory-gallery,
  .about-support-grid {
    grid-template-columns: 1fr;
  }

  .about-stat {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .about-factory-card {
    aspect-ratio: 1.55 / 1;
  }

  .about-support-card {
    min-height: 0;
  }

  .about-case-card {
    aspect-ratio: 1.48 / 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-factory-card img,
  .about-case-card img,
  .about-video-play,
  .about-button {
    transition: none;
  }
}
