body.page-about {
  overflow-x: clip;
  background: #fff;
}
main[data-about-page] {
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}
main[data-about-page] .container {
  max-width: 1060px;
}

/* ── Hero ── */
.about-hero {
  padding: clamp(24px, 3vw, 34px) 0 28px;
  border-bottom: 1px solid #f1f4f7;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.025);
}
.about-hero__top {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(250px, 0.7fr);
  gap: 16px 28px;
  align-items: start;
  margin-bottom: 18px;
}
.about-hero h1 {
  font-family: var(--fo-font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.03em;
  color: var(--fo-navy);
  margin: 0;
  max-width: 16ch;
}
.about-hero h1 em {
  font-style: normal;
  color: var(--fo-orange);
}
.about-hero__lead {
  margin: 2px 0 0;
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--fo-text-muted);
  max-width: 40ch;
}
.about-hero__media {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}
.about-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 5.7;
  object-fit: cover;
  border-radius: 24px;
  background: var(--neutral-200);
}
.about-hero__scroll {
  position: absolute;
  inset-inline-end: 22px;
  bottom: -16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--fo-orange);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(245, 130, 32, 0.38);
  z-index: 2;
  transition: background var(--duration-fast), transform var(--duration-fast);
}
.about-hero__scroll:hover {
  background: var(--fo-orange-dark);
  transform: translateY(2px);
}
.about-hero__scroll svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* ── Story ── */
.about-story {
  padding: clamp(58px, 7vw, 82px) 0 clamp(44px, 6vw, 66px);
  scroll-margin-top: calc(var(--fo-header) + 12px);
  border-bottom: 1px solid #f2f5f8;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.025);
}
.about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.82fr);
  gap: 24px 38px;
  align-items: stretch;
}
.about-story__copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.about-story__quote {
  width: 30px;
  height: 30px;
  color: #d5dce3;
  margin-bottom: 10px;
}
.about-story__quote svg {
  width: 100%;
  height: 100%;
  display: block;
}
.about-story__copy p {
  margin: 0 0 16px;
  font-size: 0.84rem;
  line-height: 1.95;
  color: var(--fo-text);
  max-width: 54ch;
}
.about-story__wide {
  position: relative;
  display: block;
  margin: auto 0 0;
  border-radius: 18px;
  overflow: hidden;
  max-width: 100%;
}
.about-story__wide img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 4.8;
  object-fit: cover;
}
.about-story__wide::after {
  content: "FIND OUT";
  position: absolute;
  inset-inline-end: 14px;
  bottom: 12px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-shadow: 0 1px 10px rgba(15, 23, 42, 0.45);
}
.about-story__portrait {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  height: 100%;
}
.about-story__portrait > img:not(.about-story__portrait-logo) {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
}
.about-story__portrait-logo {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 2%;
  width: min(48%, 180px);
  height: auto;
  transform: translateX(-50%);
  object-fit: contain;
  opacity: 0.32;
  filter: saturate(1.15) brightness(1.08);
  pointer-events: none;
  user-select: none;
}
/* ── Values ── */
.about-values {
  padding: clamp(54px, 7vw, 76px) 0 clamp(50px, 6vw, 68px);
  border-bottom: 1px solid #f4f6f8;
}
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 28px;
  text-align: center;
}
.about-values__icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 12px;
  border-radius: 8px;
  background: #f5faff;
  color: var(--fo-blue);
  display: grid;
  place-items: center;
}
.about-values__icon svg {
  width: 19px;
  height: 19px;
  display: block;
}
.about-values h2 {
  margin: 0 0 6px;
  font-family: var(--fo-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fo-navy);
}
.about-values p {
  margin: 0 auto;
  max-width: 32ch;
  font-size: 0.72rem;
  line-height: 1.75;
  color: var(--fo-text-muted);
}

/* ── Why us: one 2×2 composition, badge on the cross ── */
.about-why-sec {
  padding: clamp(22px, 3vw, 34px) 0 0;
  background: #fbfdff;
}
.about-why {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  direction: ltr;
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
  overflow: visible;
  background: transparent;
}
.about-why::before,
.about-why::after {
  display: none;
}
.about-why__card {
  position: relative;
  min-width: 0;
  min-height: 235px;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 54px clamp(28px, 5vw, 68px) 42px;
  direction: rtl;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.about-why__card:nth-of-type(1) {
  background: linear-gradient(135deg, #f1f7fd 0%, rgba(249, 252, 255, 0.38) 72%, transparent 100%);
  border-right: 1px solid #82b9e9;
  border-bottom: 1px solid #82b9e9;
}
.about-why__card:nth-of-type(2) {
  background: linear-gradient(225deg, #f8fbfe 0%, rgba(255, 255, 255, 0.22) 72%, transparent 100%);
  border-bottom: 1px solid #82b9e9;
}
.about-why__card:nth-of-type(3) {
  background: linear-gradient(45deg, #f8fbfe 0%, rgba(255, 255, 255, 0.22) 72%, transparent 100%);
  border-right: 1px solid #82b9e9;
}
.about-why__card:nth-of-type(4) {
  background: linear-gradient(315deg, #f1f7fd 0%, rgba(249, 252, 255, 0.38) 72%, transparent 100%);
}
.about-why__card:nth-of-type(1),
.about-why__card:nth-of-type(2) { padding-bottom: 62px; }
.about-why__card:nth-of-type(3),
.about-why__card:nth-of-type(4) { padding-top: 62px; }
.about-why__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #f2f8fe;
  color: #67ace2;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.about-why__card:nth-of-type(1) .about-why__icon,
.about-why__card:nth-of-type(4) .about-why__icon {
  color: var(--fo-orange);
  background: #fff7e9;
}
.about-why__icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
.about-why__card h3 {
  margin: 0 0 7px;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--fo-navy);
}
.about-why__card p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--fo-text-muted);
  max-width: 36ch;
}
.about-why__badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 104px;
  min-width: 104px;
  height: 104px;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 0 8px 28px rgba(76, 132, 181, 0.1);
  pointer-events: none;
}
.about-why__badge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  width: 84px;
  height: 38px;
  border-radius: 13px;
  background: var(--fo-blue);
  box-shadow: 0 8px 22px rgba(74, 144, 226, 0.28);
}
.about-why__badge::after {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: 0;
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(18deg);
}
.about-why__badge span {
  position: relative;
  z-index: 1;
  display: block;
  white-space: nowrap;
  color: #fff;
}
.about-why__arrow {
  position: absolute;
  z-index: 2;
  width: 5px;
  height: 5px;
  border: 0;
  border-radius: 50%;
  background: #69abe2;
  box-shadow: 0 0 0 3px rgba(105, 171, 226, 0.1);
}
.about-why__arrow--top {
  display: none;
}
.about-why__arrow--right {
  top: 40%;
  right: -6px;
  transform: translateY(-50%);
}
.about-why__arrow--bottom {
  display: none;
}
.about-why__arrow--left {
  top: 60%;
  left: -6px;
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  .about-hero__top {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 12px;
  }
  .about-hero h1 { max-width: 18ch; }
  .about-hero__lead { max-width: 46ch; }
  .about-hero__media img { aspect-ratio: 16 / 8; border-radius: 20px; }
  .about-story { padding-top: 28px; }
  .about-story__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-story__portrait { order: -1; max-width: 420px; }
  .about-story__portrait > img:not(.about-story__portrait-logo) { aspect-ratio: 4 / 4.2; min-height: 0; }
  .about-story__wide { max-width: none; }
  .about-values__grid { gap: 20px 16px; }
  .about-why { max-width: none; }
  .about-why__card { min-height: 190px; padding: 28px 18px 24px; }
  .about-why__card:nth-of-type(1),
  .about-why__card:nth-of-type(2) { padding-bottom: 40px; }
  .about-why__card:nth-of-type(3),
  .about-why__card:nth-of-type(4) { padding-top: 40px; }
}
@media (max-width: 720px) {
  .about-hero { padding-top: 14px; }
  .about-hero h1 { font-size: clamp(1.4rem, 7vw, 1.75rem); }
  .about-hero__media img { aspect-ratio: 16 / 10; border-radius: 16px; }
  .about-hero__scroll {
    width: 40px;
    height: 40px;
    inset-inline-end: 14px;
    bottom: -14px;
  }
  .about-story__portrait,
  .about-story__wide { border-radius: 16px; }
  .about-values__grid { grid-template-columns: 1fr; gap: 18px; }
  .about-why__card { min-height: 170px; padding: 22px 10px; }
  .about-why__card:nth-of-type(1),
  .about-why__card:nth-of-type(2) { padding-bottom: 34px; }
  .about-why__card:nth-of-type(3),
  .about-why__card:nth-of-type(4) { padding-top: 34px; }
  .about-why__icon { width: 34px; height: 34px; margin-bottom: 10px; }
  .about-why__card h3 { font-size: 0.95rem; }
  .about-why__card p { font-size: 0.7rem; line-height: 1.55; }
  .about-why__badge {
    width: 82px;
    min-width: 82px;
    height: 82px;
    padding: 0;
    font-size: 0.72rem;
    border-radius: 50%;
  }
  .about-why__badge::before { width: 72px; height: 32px; border-radius: 11px; }
}
@media (prefers-reduced-motion: reduce) {
  .about-hero__scroll:hover { transform: none; }
}
