/* ==========================================================================
   About pages
   ========================================================================== */

:root {
  --about-red: #d9001b;
  --about-red-deep: #b80017;
  --about-text: #222222;
  --about-muted: #7c7e82;
  --about-line: #dce3eb;
  --about-soft: #f6f7f9;
  --about-card: #ffffff;
}

.page-about {
  margin: 0;
  background: #ffffff;
  color: var(--about-text);
  font-family:
    "SF Pro Rounded",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.about-shell {
  width: min(100% - 48px, 1200px);
  margin: 0 auto;
}

.about-shell--wide {
  width: min(100% - 48px, 1326px);
}

.about-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #f4d8d7;
}

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

.about-hero__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.about-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.74) 34%, rgba(255, 255, 255, 0.05) 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(217, 0, 27, 0.08));
}

.about-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0 56px;
}

.about-hero__title {
  margin: 0;
  color: #111111;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-hero__subtitle {
  max-width: 580px;
  margin: 18px 0 0;
  color: #333333;
  font-size: 22px;
  line-height: 1.55;
}

.about-tabs {
  position: sticky;
  top: var(--site-header-height, 80px);
  z-index: 20;
  border-bottom: 1px solid #eceff3;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.about-tabs__inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-bottom: 1px solid #eceff3;
}

.about-tab {
  display: inline-flex;
  min-width: 110px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e3e3e3;
  border-radius: 999px;
  background: #ffffff;
  color: #333333;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.about-tab:hover,
.about-tab:focus-visible {
  border-color: rgba(217, 0, 27, 0.45);
  color: var(--about-red);
  outline: none;
}

.about-tab.is-active {
  border-color: var(--about-red);
  background: var(--about-red);
  color: #ffffff;
}

.about-panel {
  background: #ffffff;
}

.about-panel[hidden] {
  display: none;
}

.page-about:not(.page-about--en) .about-hero,
.page-about:not(.page-about--en) .about-hero__content {
  height: 420px;
  min-height: 420px;
}

.page-about:not(.page-about--en) .about-hero {
  background: #f6dad8;
}

.page-about:not(.page-about--en) .about-hero__content {
  align-items: flex-start;
  padding: 0;
}

.page-about:not(.page-about--en) .about-hero__media::after {
  display: none;
}

.page-about:not(.page-about--en) .about-hero__media img,
.page-about:not(.page-about--en) .about-figma-slice {
  filter: contrast(1.08) saturate(1.02);
}

.about-figma-section {
  overflow: hidden;
  background: #ffffff;
}

.about-figma-section > .about-shell {
  width: 100%;
  max-width: 1920px;
}

.about-figma-slice {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.about-figma-accessible-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.about-section {
  padding: 88px 0;
}

.about-section--culture-figma {
  padding: 56px 0 88px;
  background: #ffffff;
}

.about-section--milestone-figma {
  padding: 30px 0 48px;
}

.about-culture-stage {
  padding: 0;
}

.about-section--soft {
  background: var(--about-soft);
}

.about-section__head {
  margin-bottom: 44px;
  text-align: center;
}

.about-section__title {
  margin: 0;
  color: #222222;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.about-section__desc {
  max-width: 800px;
  margin: 14px auto 0;
  color: var(--about-muted);
  font-size: 18px;
  line-height: 1.75;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 520px) 1fr;
  align-items: center;
  gap: 56px;
}

.about-intro__image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(32, 34, 37, 0.12);
}

.about-intro__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.about-intro__logo {
  display: block;
  width: 210px;
  margin-bottom: 28px;
}

.about-intro__content p {
  margin: 0 0 16px;
  color: #555960;
  font-size: 16px;
  line-height: 1.9;
}

.about-brand-intro {
  padding: 72px 0 48px;
  background: #ffffff;
}

.about-brand-intro__card {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-brand-intro__layout {
  display: grid;
  grid-template-columns: minmax(0, 570px) minmax(0, 1fr);
  align-items: start;
  gap: 40px;
}

.about-brand-intro__media {
  overflow: hidden;
  border-radius: 8px;
}

.about-brand-intro__media img {
  display: block;
  width: 100%;
  height: auto;
}

.about-brand-intro__content {
  padding-top: 6px;
}

.about-brand-intro__title {
  margin: 0 0 18px;
  color: #222222;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.about-brand-intro__content p {
  color: #60646b;
  font-size: 14px;
  line-height: 26px;
}

.about-brand-intro__content p:last-child {
  margin-bottom: 0;
}

.about-brand-honors {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.about-brand-honors__item {
  display: block;
  height: 42px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(191, 143, 72, 0.42);
  border-radius: 999px;
  padding: 0 18px;
  color: #a67228;
  font-size: 14px;
  font-weight: 700;
}

.about-patents {
  position: relative;
  overflow: hidden;
  padding: 96px 0 360px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 225, 222, 0.72)),
    linear-gradient(90deg, rgba(217, 0, 27, 0.08), rgba(255, 184, 107, 0.12));
}

.about-patents::after {
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: min(100% - 48px, 980px);
  height: 330px;
  content: "";
  transform: translateX(-50%);
  background: url("../assets/about/patent-certificate.png") center bottom / contain no-repeat;
  opacity: 0.92;
}

.about-patents--figma {
  position: relative;
  overflow: hidden;
  min-height: 1153px;
  padding: 100px 0 104px;
  background: #f7efee;
}

.about-patents--figma::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  min-height: 1153px;
  width: max(100%, 1920px);
  content: "";
  transform: translateX(-50%);
  background: url("../assets/about/figma-about-patents-optimized.png") center bottom / cover no-repeat;
}

.about-patents--figma::after {
  display: none;
}

.about-patents__inner {
  position: relative;
  z-index: 1;
}

.about-patents__head {
  text-align: center;
}

.about-patents__head .about-section__desc {
  max-width: none;
  margin-top: 18px;
  font-size: 18px;
}

.about-patents__metrics {
  display: flex;
  /* grid-template-columns: repeat(4, minmax(0, 1fr)); */
  gap: 24px;
  margin: 58px auto 0;
  width: min(100%, 1080px);
  justify-content: space-around;
}

.about-patent-stat {
  text-align: center;
}

.about-patent-stat__icon {
  width: 98px;
  height: 99px;
  margin: 0 auto 18px;
}

.about-patent-stat__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-patent-stat strong {
  display: block;
  color: #222222;
  font-size: 50px;
  font-weight: 800;
  line-height: 0.95;
}

.about-patent-stat span {
  display: block;
  margin-top: 14px;
  color: #7c7e82;
  font-size: 17px;
  line-height: 1.45;
}

.about-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.about-metric {
  display: grid;
  min-height: 148px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  text-align: center;
  box-shadow: 0 18px 44px rgba(114, 54, 44, 0.08);
}

.about-metric strong {
  display: block;
  color: #222222;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}

.about-metric span {
  display: block;
  margin-top: 12px;
  color: var(--about-muted);
  font-size: 16px;
  line-height: 1.45;
}

.about-timeline-wrap {
    background: var(--about-soft);
  }

  .about-milestone-timeline {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px 0 60px;
  }

  .about-milestone-line {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 50%;
    width: 2px;
    background-color: #e5e5e5;
    transform: translateX(-50%);
  }

  .about-milestone-item {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    pointer-events: none;
  }

  .about-milestone-item:last-child {
    margin-bottom: 0;
  }

  @media (min-width: 721px) {
    .about-milestone-item + .about-milestone-item {
      margin-top: -150px;
    }
  }

  .about-milestone-content-left,
  .about-milestone-content-right {
    width: 50%;
    display: flex;
    align-items: flex-start;
    position: relative;
  }

  .about-milestone-content-left {
    justify-content: flex-end;
    padding-right: 160px;
  }

  .about-milestone-content-right {
    justify-content: flex-start;
    padding-left: 160px;
  }

  .about-milestone-item:nth-of-type(odd) .about-milestone-content-left {
    visibility:hidden
  }

  .about-milestone-item:nth-of-type(even) .about-milestone-content-right {
    visibility:hidden
  }

  .about-milestone-dot {
    position: absolute;
    left: 50%;
    top: 46px;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d9001b;
    z-index: 2;
    cursor: pointer;
    pointer-events: auto;
  }

  .about-milestone-label {
    position: absolute;
    top: 24px;
    background-image: url('../assets/about/box_01.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    border: none;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    width: 106px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    z-index: 3;
  }

  /* Right side label (Card on right) */
  .about-milestone-content-right .about-milestone-label {
    left: 22px;
    padding-right: 10px;
  }
  
  /* Left side label (Card on left) */
  .about-milestone-content-left .about-milestone-label {
    right: 22px;
    transform: scaleX(-1);
  }
  
  /* Un-flip text for left label */
  .about-milestone-content-left .about-milestone-label::after {
    content: attr(data-year);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
    transform: scaleX(-1); /* Unflip the text */
    padding-left: 10px;
    color: #333; /* Make sure the default state text is visible */
  }
  
  .about-milestone-content-left .about-milestone-label {
    color: transparent; /* Hide the flipped text */
  }
  
  .about-milestone-item.is-active .about-milestone-label {
    background-image: url('../assets/about/box_02.png');
    color: #d9001b;
  }
  
  .about-milestone-item.is-active .about-milestone-content-right .about-milestone-label {
    transform: scaleX(-1); /* Flip background for active right label to point left */
    padding-right: 0;
  }
  
  .about-milestone-item.is-active .about-milestone-content-right .about-milestone-label::after {
    content: attr(data-year);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
    transform: scaleX(-1); /* Unflip the text */
    padding-right: 10px;
    color: #d9001b;
  }

  .about-milestone-item.is-active .about-milestone-content-right .about-milestone-label {
    color: transparent; /* Hide the flipped text */
  }

  .about-milestone-item.is-active .about-milestone-content-left .about-milestone-label {
    color: #d9001b;
    transform: none; /* Unflip background for active left label to point right */
    padding-left: 10px;
  }
  
  .about-milestone-item.is-active .about-milestone-content-left .about-milestone-label::after {
    display: none; /* No need for pseudo-element when text is not flipped */
  }
  
  .about-milestone-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: left;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
  }

  .about-milestone-item.is-active .about-milestone-card {
    border-color: #d9001b;
    box-shadow: 0 16px 40px rgba(217, 0, 27, 0.08);
  }

  .about-milestone-card__year {
    font-size: 28px;
    color: #333;
    margin: 0 0 24px;
    font-weight: 800;
    transition: color 0.3s ease;
  }

  .about-milestone-item.is-active .about-milestone-card__year {
    color: #d9001b;
  }

  .about-milestone-event {
    margin-bottom: 20px;
  }

  .about-milestone-event:last-child {
    margin-bottom: 0;
  }

  .about-milestone-event strong {
    display: block;
    font-size: 16px;
    color: #222;
    margin-bottom: 8px;
    font-weight: 700;
  }

  .about-milestone-event p {
    font-size: 14px;
    color: #7c7e82;
    line-height: 1.6;
    margin: 0;
  }

.about-figma-slice--milestone {
  width: min(100%, 1326px);
  margin: 0 auto;
  border-radius: 0;
}

.page-about--en .about-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 136px;
  row-gap: 28px;
  padding: 58px 0 28px;
}

.page-about--en .about-timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  content: "";
  background: #d6dce5;
}

.page-about--en .about-timeline-card {
  position: relative;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 30px 34px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(28, 34, 45, 0.07);
}

.page-about--en .about-timeline-card:nth-child(odd) {
  grid-column: 1;
}

.page-about--en .about-timeline-card:nth-child(even) {
  grid-column: 2;
  transform: translateY(54px);
}

.page-about--en .about-timeline-card::before {
  position: absolute;
  top: 34px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--about-red);
  box-shadow: 0 0 0 7px #ffffff;
  content: "";
}

.page-about--en .about-timeline-card:nth-child(odd)::before {
  right: -74px;
}

.page-about--en .about-timeline-card:nth-child(even)::before {
  left: -74px;
}

.page-about--en .about-timeline-card.is-featured {
  border-color: rgba(217, 0, 27, 0.45);
}

.page-about--en .about-timeline-card h2 {
  margin: 0 0 18px;
  color: var(--about-red);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

.page-about--en .about-timeline-card:not(.is-featured) h2 {
  color: #222222;
}

.page-about--en .about-timeline-card dl {
  margin: 0;
}

.page-about--en .about-timeline-card dt {
  margin-top: 14px;
  color: #222222;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
}

.page-about--en .about-timeline-card dt:first-child {
  margin-top: 0;
}

.page-about--en .about-timeline-card dd {
  margin: 4px 0 0;
  color: #7c7e82;
  font-size: 14px;
  line-height: 1.7;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 82px;
}

.about-value-card {
  position: relative;
  min-height: 172px;
  overflow: hidden;
  border-radius: 8px;
  color: #ffffff;
}

.about-value-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-value-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.44));
}

.about-value-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  min-height: 172px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.about-value-card h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
}

.about-value-card span {
  align-self: flex-start;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 7px 18px;
  color: #b07022;
  font-size: 14px;
  font-weight: 800;
}

.about-photo-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.1fr;
  grid-auto-rows: 170px;
  gap: 0;
  overflow: hidden;
  border-radius: 8px;
}

.about-photo-strip img,
.about-activity-grid img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.about-photo-strip img:nth-child(1) {
  grid-row: span 2;
}

.about-photo-strip img:nth-child(3) {
  grid-row: span 2;
}

.about-activity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 170px;
  overflow: hidden;
  border-radius: 8px;
}

.about-activity-card {
  display: flex;
  grid-column: span 2;
  flex-direction: column;
  justify-content: center;
  background: rgba(217, 0, 27, 0.9);
  padding: 28px;
  color: #ffffff;
  text-align: center;
}

.about-activity-card h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
}

.about-activity-card p {
  margin: 12px auto 0;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.75;
}

.about-culture-figma {
  display: grid;
  gap: 72px;
  width: min(100%, 1024px);
  margin: 0 auto;
  overflow: hidden;
}

.about-culture-figma .about-figma-slice {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: auto;
}

.about-culture-values-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.about-culture-value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-culture-value-item img {
  height: 80px;
  width: 150px;
  height: 70px;
  margin-bottom: 16px;
}

.about-culture-value-item p {
  font-size: 18px;
  color: #333;
  margin: 0;
  font-weight: 500;
}

.about-culture-figma__values {
  max-width: none;
  margin: 0;
}

.about-culture-office-block {
  display: grid;
  gap: 48px;
}

.about-culture-section-head {
  text-align: center;
}

.about-culture-section-head__title {
  margin: 0;
  color: #222222;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.about-culture-section-head__desc {
  margin: 28px 0 0;
  color: #7c7e82;
  font-size: 18px;
  line-height: 1.667;
}

.about-culture-figma__office-frame {
  overflow: hidden;
}

.about-culture-figma__activity {
  max-width: none;
  margin: 0;
}

.about-culture-office-layout {
  display: grid;
  /* gap: 20px; */
}

.about-culture-office-layout__top,
.about-culture-office-layout__left,
.about-culture-office-layout__center,
.about-culture-office-layout__right {
  min-width: 0;
}

.about-culture-office-layout__bottom {
  display: grid;
  grid-template-columns: 407fr 413fr 380fr;
  /* gap: 20px; */
  align-items: stretch;
}

.about-culture-office-layout__center {
  display: grid;
  grid-template-rows: 191fr 176fr;
  /* gap: 20px; */
}

.about-culture-office-layout__image {
  display: block;
  width: 100%;
  height: auto;
  /* border-radius: 8px; */
}

.about-culture-activity {
  margin-top: 72px;
}

.about-activity-list {
  display: grid;
  width: min(100%, 1024px);
  height: clamp(240px, 27.34vw, 280px);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: 8px;
  margin: 0 auto;
  background: #f4f5f7;
}

.about-activity-entry {
  min-width: 0;
  min-height: 0;
  grid-column: span 2;
  grid-row: span 1;
}

.about-activity-entry__card {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  color: inherit;
}

.about-activity-entry__media {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-activity-entry__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-activity-entry__card:hover .about-activity-entry__media img {
  transform: scale(1.04);
}

.about-activity-entry__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 28px 24px;
  background: rgba(217, 0, 27, 0.82);
  opacity: 0;
  text-align: center;
  transform: translateY(14px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.about-activity-entry__card:hover .about-activity-entry__body {
  opacity: 1;
  transform: translateY(0);
}

.about-activity-entry__title {
  display: block;
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
}

.about-activity-entry__desc {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.8;
}

.about-activity-list:not(:has(.about-activity-entry:nth-child(2))) .about-activity-entry {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
}

.about-activity-list:has(.about-activity-entry:nth-child(2)):not(:has(.about-activity-entry:nth-child(3))) .about-activity-entry {
  grid-column: span 3;
  grid-row: 1 / -1;
}

.about-activity-list:has(.about-activity-entry:nth-child(3)):not(:has(.about-activity-entry:nth-child(4))) .about-activity-entry:nth-child(1) {
  grid-column: span 3;
  grid-row: 1 / -1;
}

.about-activity-list:has(.about-activity-entry:nth-child(3)):not(:has(.about-activity-entry:nth-child(4))) .about-activity-entry:nth-child(n + 2) {
  grid-column: span 3;
}

.about-activity-list:has(.about-activity-entry:nth-child(4)):not(:has(.about-activity-entry:nth-child(5))) .about-activity-entry {
  grid-column: span 3;
}

.about-activity-list:has(.about-activity-entry:nth-child(5)) .about-activity-entry {
  grid-column: span 2;
}

.about-activity-list:has(.about-activity-entry:nth-child(5)):not(:has(.about-activity-entry:nth-child(6))) .about-activity-entry:nth-child(1) {
  grid-row: 1 / -1;
}

.about-activity-empty {
  border-radius: 8px;
  background: rgba(217, 0, 27, 0.06);
  padding: 32px 24px;
  color: rgba(16, 17, 20, 0.72);
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}

.page-about--en .about-hero__title {
  font-size: 54px;
}

.page-about--en .about-tab {
  min-width: 130px;
}

.about-security-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.68) 45%, rgba(0, 0, 0, 0.05) 100%),
    url("../assets/about/security/security-hero-figma.png") center / cover no-repeat,
    #101114;
  color: #ffffff;
}

.about-security-hero::after,
.about-contact-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.about-security-hero::after {
  background:
    linear-gradient(105deg, transparent 0 42%, rgba(217, 0, 27, 0.36) 42% 56%, transparent 56%),
    radial-gradient(circle at 78% 38%, rgba(217, 0, 27, 0.45), transparent 28%);
}

.about-security-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: center;
  padding: 70px 0;
}

.page-security:not(.page-about--en) .about-security-hero h1,
.page-security:not(.page-about--en) .about-security-hero p {
  /* position: absolute; */
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.page-security .about-security-hero,
.page-security .about-security-hero__inner {
  min-height: 0;
  height: clamp(320px, 21.875vw, 520px);
}

.page-security .about-security-hero__inner {
  position: static;
}

.page-security .about-security-hero {
  background: url("../assets/about/security/security-hero-figma.png") center / cover no-repeat #101114;
}

.page-security .about-security-hero::after {
  display: none;
}

.page-security:not(.page-about--en) .about-security-hero h1,
.page-security:not(.page-about--en) .about-security-hero p {
  /* position: absolute; */
  left: clamp(96px, 12.5vw, 240px);
  z-index: 1;
  overflow: visible;
  width: auto;
  height: auto;
  clip: auto;
  white-space: normal;
}

.page-security:not(.page-about--en) .about-security-hero h1 {
  color: #ffffff;
  font-size: 54px;
  font-weight: 600;
}

.page-security:not(.page-about--en) .about-security-hero p {
  top: 50.6%;
  margin-top: 20px;
  color: #ffffff;
  font-size: 22px;
}

.about-security-hero h1,
.about-security-hero h2,
.about-contact-hero h1,
.about-contact-hero h2 {
  margin: 0;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.about-security-hero p,
.about-contact-hero p {
  /* max-width: 640px; */
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.8;
}

.about-security-matrix {
  background: #ffffff;
}

.about-security-grid {
  display: grid;
  gap: 32px;
}

.about-security-card {
  display: grid;
  grid-template-columns: minmax(0, 568px) 1fr;
  overflow: hidden;
  min-height: 350px;
  border: 1px solid #dce3eb;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: none;
}

.about-security-card--flip {
  grid-template-columns: 1fr minmax(0, 568px);
}

.about-security-card--flip .about-security-card__media {
  order: 2;
}

.about-security-card__media {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  background: #101114;
}

.about-security-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(217, 0, 27, 0.08), rgba(0, 0, 0, 0.02));
}

.about-security-card__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.about-security-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 26px 38px 46px;
}

.about-security-card h3 {
  max-width: 550px;
  margin: 0;
  color: #222222;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.18;
}

.about-security-card p {
  margin: 10px 0 18px;
  color: var(--about-muted);
  font-size: 20px;
  line-height: 1.3;
}

.about-security-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-security-card li {
  position: relative;
  padding-left: 18px;
  color: #222222;
  font-size: 14px;
  line-height: 2.28;
}

.about-security-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #d9001b;
  content: "✦";
}

.about-contact-hero {
  position: relative;
  overflow: hidden;
  height: clamp(260px, 27.083vw, 520px);
  padding: 0;
  background: url("../assets/about/contact/contact-hero-figma.png") center / cover no-repeat #220000;
  color: #ffffff;
  text-align: center;
}

.about-contact-hero::before {
  display: none;
}

.about-contact-hero::after {
  display: none;
}

.about-contact-hero .about-shell {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: left;
}

.page-contact.page-about--en .about-contact-hero h1,
.page-contact.page-about--en .about-contact-hero p {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.about-contact-section {
  padding: 54px 0 56px;
}

.page-contact.page-about--en .about-contact-section .about-shell {
  width: min(100% - 48px, 680px);
}

.about-contact-block {
  padding-bottom: 28px;
  border-bottom: 1px solid #e7ebf0;
}

.about-contact-block + .about-contact-block {
  margin-top: 24px;
}

.about-contact-block h2,
.about-contact-block h3 {
  position: relative;
  margin: 0 0 16px;
  padding-left: 30px;
  color: #222222;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

.about-contact-block h2::before,
.about-contact-block h3::before {
  position: absolute;
  top: 0.03em;
  left: 0;
  width: 22px;
  height: 22px;
  content: "";
  background: center / contain no-repeat;
}

.about-contact-block--hq h2::before,
.about-contact-block--hq h3::before {
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 19V4.5h8V19M3.5 19h15M8 8h2M8 11h2M8 14h2M13 10h4v9' stroke='%23d9001b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.about-contact-block--branches h2::before,
.about-contact-block--branches h3::before {
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 20s6-5.36 6-11A6 6 0 1 0 5 9c0 5.64 6 11 6 11Z' stroke='%23d9001b' stroke-width='1.8' stroke-linejoin='round'/%3E%3Ccircle cx='11' cy='9' r='2.2' stroke='%23d9001b' stroke-width='1.8'/%3E%3C/svg%3E");
}

.about-contact-meta {
  display: grid;
  grid-template-columns: 1.45fr 0.72fr 0.9fr;
  gap: 26px;
  color: #555960;
  font-size: 10px;
  line-height: 1.7;
}

.about-contact-meta--en {
  display: flex !important;
  flex-direction: column;
  padding-left: 12px;
}

.about-branch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 58px;
}

.about-branch-grid article {
  display: grid;
  gap: 8px;
}

.about-branch-grid strong {
  color: #222222;
  font-size: 16px;
  font-weight: 800;
}

.about-contact-address {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: #6f737a;
  cursor: pointer;
  font: inherit;
  font-size: 10px;
  line-height: 1.7;
  text-align: left;
  transition: color 0.2s ease;
}

.about-contact-address:hover,
.about-contact-address:focus-visible,
.about-contact-address.is-active {
  color: #d9001b;
  outline: none;
}

.about-contact-address.is-active {
  font-weight: 800;
}

.about-contact-map {
  margin: 52px 0 0;
  overflow: hidden;
  border: 1px solid #e6ebf3;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(24, 39, 75, 0.08);
}

.about-contact-map__tip {
  margin: 0;
  padding: 18px 24px;
  border-bottom: 1px solid #e9edf3;
  color: #7c7e82;
  font-size: 13px;
  line-height: 1.7;
}

.about-contact-map__body {
  position: relative;
  min-height: 420px;
  background: #f4f5f7;
  margin-top: 95px;
  border-radius: 16px;
}

.about-contact-map__canvas {
  width: 100%;
  height: 420px;
  min-height: 420px;
}

.about-contact-map__fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(246, 248, 251, 0.92)),
    repeating-linear-gradient(-45deg, rgba(217, 0, 27, 0.06) 0 12px, transparent 12px 24px);
  color: #555960;
  text-align: center;
}

.about-contact-map__fallback.is-visible {
  display: grid;
}

.about-contact-map__info {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(320px, calc(100% - 48px));
  padding: 18px 20px;
  border: 1px solid rgba(231, 235, 240, 0.92);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(24, 39, 75, 0.14);
  backdrop-filter: blur(12px);
}

.about-contact-map__name {
  margin: 0;
  color: #222222;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.about-contact-map__address {
  margin: 8px 0 0;
  color: #626873;
  font-size: 13px;
  line-height: 1.7;
}

.page-contact:not(.page-about--en) .about-contact-hero {
  height: 420px;
}

.page-contact:not(.page-about--en) .about-contact-hero .about-shell {
  min-height: 420px;
  padding: 0;
  text-align: left;
}

.page-contact:not(.page-about--en) .about-contact-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: 54px;
  font-weight: 600;
  line-height: 1;
}

.page-contact:not(.page-about--en) .about-contact-hero p {
  margin: 20px 0 0;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.16em;
}

.page-contact:not(.page-about--en) .about-contact-section {
  padding: 100px 0 96px;
}

.page-contact:not(.page-about--en) .about-contact-block {
  padding-bottom: 0;
  border-bottom: 0;
}

.page-contact:not(.page-about--en) .about-contact-block + .about-contact-block {
  margin-top: 80px;
}

.page-contact:not(.page-about--en) .about-contact-block h2 {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: #222222;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.page-contact:not(.page-about--en) .about-contact-block--hq h2.is-active,
.page-contact:not(.page-about--en) .about-contact-block--hq h2:hover {
  background-color: #fceceb;
}

.page-contact:not(.page-about--en) .about-contact-block--hq h2.is-active span {
  color: #d9001b;
}

.page-contact:not(.page-about--en) .about-branch-item.is-active,
.page-contact:not(.page-about--en) .about-branch-item:hover {
  background-color: #fceceb;
}

.page-contact:not(.page-about--en) .about-branch-item.is-active span {
  color: #d9001b;
}

.page-contact:not(.page-about--en) .about-contact-block h2::before {
  display: none;
}

.about-contact-heading__icon {
  display: block;
  width: 50px;
  height: 50px;
  flex: none;
}

.page-contact:not(.page-about--en) .about-contact-meta {
  max-width: 900px;
  margin-top: 22px;
  grid-template-columns: minmax(0, 374px) minmax(0, 164px) minmax(0, 187px);
  justify-content: space-between;
  gap: 24px;
  color: #696969;
  font-size: 16px;
  line-height: 1;
}

.page-contact:not(.page-about--en) .about-contact-divider {
  height: 1px;
  margin: 16px 0 21px;
  background: #e4e4e4;
}

.page-contact:not(.page-about--en) .about-branch-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 39px 47px;
}

.page-contact:not(.page-about--en) .about-branch-grid article {
  gap: 17px;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.page-contact:not(.page-about--en) .about-branch-grid article:hover,
.page-contact:not(.page-about--en) .about-branch-grid article.is-active {
  background-color: #fceceb;
}

.page-contact:not(.page-about--en) .about-branch-grid article.is-active strong {
  color: #d9001b;
}

.page-contact:not(.page-about--en) .about-branch-grid strong {
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.page-contact:not(.page-about--en) .about-branch-grid span {
  color: #696969;
  font-size: 14px;
  line-height: 1.5714285714;
}

@media (max-width: 1024px) {
  .about-hero__title {
    font-size: 48px;
  }

  .about-hero__subtitle {
    font-size: 20px;
  }

  .about-intro,
  .about-brand-intro__layout,
  .about-patents__metrics,
  .page-about--en .about-timeline,
  .about-metrics,
  .about-values,
  .about-security-card,
  .about-security-card--flip,
  .about-contact-meta,
  .about-branch-grid {
    grid-template-columns: 1fr;
  }

  .about-security-card--flip .about-security-card__media {
    order: 0;
  }

  .page-contact.page-about--en .about-contact-meta {
    grid-template-columns: 1.45fr 0.72fr 0.9fr;
  }

  .page-contact.page-about--en .about-branch-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-contact:not(.page-about--en) .about-contact-meta {
    max-width: none;
    grid-template-columns: 1fr;
    gap: 16px;
    font-size: 15px;
    line-height: 1.7;
  }

  .page-contact:not(.page-about--en) .about-branch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
  }

  .page-about--en .about-timeline {
    padding-left: 28px;
    row-gap: 24px;
  }

  .page-about--en .about-timeline::before {
    left: 6px;
  }

  .page-about--en .about-timeline-card,
  .page-about--en .about-timeline-card:nth-child(even),
  .page-about--en .about-timeline-card:nth-child(odd) {
    grid-column: 1;
    transform: none;
  }

  .page-about--en .about-timeline-card::before,
  .page-about--en .about-timeline-card:nth-child(even)::before,
  .page-about--en .about-timeline-card:nth-child(odd)::before {
    left: -28px;
    right: auto;
  }

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

  .about-brand-intro {
    padding: 64px 0 40px;
  }

  .about-brand-intro__layout {
    gap: 40px;
  }

  .about-brand-intro__title {
    font-size: 40px;
  }

  .about-brand-honors {
    justify-content: flex-start;
  }

  .about-patents--figma {
    min-height: 0;
    padding: 56px 0 84px;
  }

  .about-patents--figma::before {
    background-position: center bottom;
  }

  .about-patents__metrics {
    width: min(100%, 760px);
    gap: 28px 24px;
  }

  .about-section--culture-figma {
    padding: 48px 0 72px;
  }

  .about-culture-figma {
    gap: 56px;
  }

  .about-culture-office-block {
    gap: 36px;
  }

  .about-activity-list {
    height: clamp(220px, 32vw, 260px);
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .about-culture-section-head__title {
    font-size: 46px;
  }

  .about-culture-section-head__desc {
    margin-top: 22px;
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .about-culture-values-grid {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 1199px) {
  .about-shell {
    width: min(100% - 32px, 1200px);
  }

  .about-milestone-item:nth-of-type(odd) .about-milestone-content-left {
    display: none
  }

  .about-milestone-item:nth-of-type(even) .about-milestone-content-right {
    display: none
  }

  .about-shell--wide {
    width: min(100% - 32px, 1326px);
  }

  .about-hero,
  .about-hero__content {
    min-height: 340px;
  }

  .page-about:not(.page-about--en) .about-hero,
  .page-about:not(.page-about--en) .about-hero__content {
    height: 420px;
    min-height: 420px;
  }

  .about-hero__media::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.74)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(217, 0, 27, 0.08));
  }

  .about-hero__title,
  .page-about--en .about-hero__title {
    font-size: 38px;
  }

  .about-hero__subtitle {
    font-size: 17px;
  }

  .about-tabs {
    top: 0;
  }

  .about-tabs__inner {
    justify-content: flex-start;
    overflow-x: auto;
    min-height: 64px;
    padding: 0 16px;
  }

  .about-tab,
  .page-about--en .about-tab {
    min-width: max-content;
    padding: 0 18px;
    font-size: 15px;
  }

  .about-section {
    padding: 64px 0;
  }

  .about-brand-intro {
    padding: 48px 0 32px;
  }

  .about-brand-intro__layout {
    gap: 22px;
  }

  .about-brand-intro__title {
    font-size: 34px;
    line-height: 1.22;
  }

  .about-brand-intro__content p {
    font-size: 14px;
    line-height: 26px;
  }

  .about-brand-honors {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .about-patents--figma {
    min-height: 0;
    padding: 44px 0 64px;
  }

  .about-patents--figma::before {
    background-position: 54% bottom;
    background-size: cover;
  }

  .about-patents__metrics {
    margin-top: 40px;
    gap: 22px;
    flex-wrap: wrap;
  }

  .about-patent-stat__icon {
    width: 98px;
    height: 99px;
    margin-bottom: 14px;
  }

  .about-patent-stat__icon img {
    width: 100%;
    height: 100%;
  }

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

  .about-patent-stat span {
    margin-top: 10px;
    font-size: 14px;
  }

  .about-section--milestone-figma {
    padding: 24px 0 40px;
  }

  .about-section--culture-figma {
    padding: 40px 0 56px;
  }

  .about-culture-figma {
    gap: 40px;
  }

  .about-culture-office-block {
    gap: 24px;
  }

  .about-culture-activity {
    margin-top: 48px;
  }

  .about-activity-list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
    gap: 16px;
    overflow: visible;
    background: transparent;
  }

  .about-activity-entry,
  .about-activity-list:not(:has(.about-activity-entry:nth-child(2))) .about-activity-entry,
  .about-activity-list:has(.about-activity-entry:nth-child(2)):not(:has(.about-activity-entry:nth-child(3))) .about-activity-entry,
  .about-activity-list:has(.about-activity-entry:nth-child(3)):not(:has(.about-activity-entry:nth-child(4))) .about-activity-entry:nth-child(1),
  .about-activity-list:has(.about-activity-entry:nth-child(3)):not(:has(.about-activity-entry:nth-child(4))) .about-activity-entry:nth-child(n + 2),
  .about-activity-list:has(.about-activity-entry:nth-child(4)):not(:has(.about-activity-entry:nth-child(5))) .about-activity-entry,
  .about-activity-list:has(.about-activity-entry:nth-child(5)) .about-activity-entry,
  .about-activity-list:has(.about-activity-entry:nth-child(5)):not(:has(.about-activity-entry:nth-child(6))) .about-activity-entry:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
  }

  .about-activity-entry__card {
    border-radius: 8px;
  }

  .about-activity-entry__media {
    height: auto;
    aspect-ratio: 1.38 / 1;
  }

  .about-activity-entry__body {
    justify-content: flex-end;
    align-items: flex-start;
    padding: 18px 18px 20px;
    background: linear-gradient(180deg, rgba(217, 0, 27, 0.08) 0%, rgba(217, 0, 27, 0.82) 100%);
    opacity: 1;
    text-align: left;
    transform: none;
  }

  .about-activity-entry__title {
    font-size: 20px;
  }

  .about-activity-entry__desc {
    font-size: 13px;
  }

  .about-culture-section-head__title {
    font-size: 34px;
  }

  .about-culture-section-head__desc {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.6;
  }

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

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

  .about-security-hero,
  .about-security-hero__inner {
    min-height: 360px;
  }

  .about-security-hero h1,
  .about-security-hero h2,
  .about-contact-hero h1,
  .about-contact-hero h2 {
    font-size: 38px;
  }

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

  .page-security .about-security-hero,
  .page-security .about-security-hero__inner {
    height: 340px;
  }

  .page-security:not(.page-about--en) .about-security-hero h1,
  .page-security:not(.page-about--en) .about-security-hero p {
    left: 50%;
    width: min(100% - 32px, 560px);
    max-width: none;
    text-align: left;
  }

  .page-security:not(.page-about--en) .about-security-hero h1 {
    top: 24%;
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.08;
  }

  .page-security:not(.page-about--en) .about-security-hero p {
    top: 52%;
    font-size: 15px;
    line-height: 1.7;
  }

  .page-security .about-security-card {
    border-radius: 18px;
  }

  .page-contact.page-about--en .about-contact-hero {
    height: clamp(170px, 27.083vw, 260px);
  }

  .about-security-card__media {
    min-height: 220px;
  }

  .about-security-card__body {
    padding: 30px 24px;
  }

  .about-security-card h3 {
    font-size: 26px;
  }

  .about-security-card p {
    font-size: 16px;
    line-height: 1.5;
  }

  .about-security-card li {
    line-height: 1.8;
  }

  .about-contact-map {
    margin-top: 42px;
  }


  .about-contact-map__body,
  .about-contact-map__canvas {
    min-height: 360px;
    height: 360px;
  }

  .about-contact-map__info {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .page-contact.page-about--en .about-contact-section .about-shell {
    width: min(100% - 32px, 680px);
  }

  .page-contact.page-about--en .about-contact-meta,
  .page-contact.page-about--en .about-branch-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-contact.page-about--en .about-contact-meta,
  .about-contact-address {
    font-size: 12px;
  }

  .page-contact:not(.page-about--en) .about-contact-hero {
    height: 260px;
  }

  .page-contact:not(.page-about--en) .about-contact-hero .about-shell {
    min-height: 260px;
  }

  .page-contact:not(.page-about--en) .about-contact-hero h1 {
    font-size: 38px;
  }

  .page-contact:not(.page-about--en) .about-contact-hero p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }

  .page-contact:not(.page-about--en) .about-contact-section {
    padding: 40px 0 64px;
  }

  .page-contact:not(.page-about--en) .about-contact-block + .about-contact-block {
    margin-top: 56px;
  }

  .page-contact:not(.page-about--en) .about-contact-block h2 {
    gap: 6px;
    font-size: 28px;
  }

  .page-contact:not(.page-about--en) .about-contact-heading__icon {
    width: 42px;
    height: 42px;
  }

  .page-contact:not(.page-about--en) .about-contact-meta {
    max-width: none;
    grid-template-columns: 1fr;
    gap: 14px;
    font-size: 15px;
    line-height: 1.7;
  }

  .page-contact:not(.page-about--en) .about-contact-divider {
    margin: 20px 0 24px;
  }

  .page-contact:not(.page-about--en) .about-branch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
  }

  .page-contact:not(.page-about--en) .about-branch-grid strong {
    font-size: 20px;
  }

  .about-patents {
    padding-bottom: 260px;
  }

  .about-patents::after {
    height: 250px;
  }

  .about-photo-strip,
  .about-activity-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }

  .about-photo-strip img:nth-child(1),
  .about-photo-strip img:nth-child(3),
  .about-activity-card {
    grid-column: auto;
    grid-row: auto;
  }

  .about-milestone-timeline {
    padding-left: 20px;
  }

  .about-milestone-line {
    left: 0;
    transform: none;
  }

  .about-milestone-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-milestone-item[data-side="left"] {
    flex-direction: column-reverse;
  }

  .about-milestone-content-left,
  .about-milestone-content-right {
    width: 100%;
    padding: 0 0 0 30px;
    justify-content: flex-start;
    text-align: left;
  }

  .about-milestone-dot {
    left: 0;
    top: 46px;
    transform: translate(-50%, -50%);
  }

  .about-milestone-label {
    margin-top: 0;
    margin-bottom: 12px;
  }

  .about-milestone-item.is-active .about-milestone-label::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .about-milestone-label{
    display: none;
  }
}
