.about-profile-page {
  background: #fff;
  --profile-accent: rgba(147, 7, 8, 1);
  --profile-accent-soft: rgba(147, 7, 8, 0.08);
  --profile-accent-faint: rgba(147, 7, 8, 0.14);
  --profile-surface: #f7f7f7;
  --profile-border: #ece7e7;
  --profile-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.content-breadcrumb {
  background: #ffffff;
  padding: 16px 0;
  color: var(--red);
  font-size: 15px;
  border-bottom: 1px solid #eee;
}

.content-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.content-breadcrumb a {
  color: #333333;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
  display: flex;
  align-items: center;
}

.content-breadcrumb a:hover {
  color: var(--red);
  opacity: 0.8;
}

.content-breadcrumb__sep {
  color: #999;
  font-size: 14px;
}

.content-breadcrumb__current {
  color: var(--red);
}

.content-breadcrumb i.fa-home {
  margin-right: 6px;
  font-size: 16px;
}

.page-breadcrumb {
  background: #000;
  padding: 12px 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.page-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-breadcrumb a {
  color: #fff;
  transition: opacity 0.2s ease;
}

.page-breadcrumb a:hover {
  opacity: 0.8;
}

.page-breadcrumb__sep {
  color: #fff;
  font-size: 12px;
}

.page-breadcrumb__current {
  color: var(--red);
}

.about-profile-hero {
  position: relative;
  min-height: clamp(430px, 31vw, 560px);
  overflow: hidden;
  background: #111;
  margin-top: -24px;
}

.about-profile-main {
  position: relative;
  z-index: 0;
}

.about-profile-main::before {
  display: none;
}

body:has(main.about-profile-main) .site-header {
  box-shadow: none;
  border-bottom: none;
}

.about-profile-hero__image,
.about-profile-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-profile-hero__image {
  object-fit: cover;
}

.about-profile-hero__overlay {
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.84) 0%, rgba(12, 12, 12, 0.54) 30%, rgba(12, 12, 12, 0.2) 62%, rgba(12, 12, 12, 0.02) 100%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.06) 0%, rgba(12, 12, 12, 0.4) 100%);
}

.about-profile-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(430px, 31vw, 560px);
  max-width: 600px;
  padding-top: 40px;
  padding-bottom: 34px;
  color: #fff;
}

.about-profile-hero__eyebrow {
  margin: 0 0 8px;
  color: #ff5656;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-profile-hero h1 {
  margin: 0;
  font-size: clamp(34px, 3.7vw, 54px);
  font-weight: 700;
  line-height: 1.04;
}

.about-profile-hero__summary {
  max-width: 500px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.5;
}

.about-profile-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  margin-top: 24px;
}

.about-profile-hero__stats article {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 138px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.about-profile-hero__icon {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  flex: 0 0 18px;
}

.about-profile-hero__icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
}

.about-profile-company {
  padding: 40px 0 28px;
}

.about-profile-company__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.about-profile-company__copy {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: 100%;
}

.about-profile-company__copy--home {
  width: auto;
  max-width: 100%;
  min-width: 0;
  min-height: 430px;
  box-sizing: border-box;
  align-self: stretch;
  margin: 0;
  padding: 28px 0;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  justify-content: flex-start;
  align-items: flex-start;
}

.about-profile-company__copy--home .section-label {
  margin: 0 0 8px;
  color: var(--profile-accent);
}

.about-profile-company__copy--home h2 {
  width: 100%;
  max-width: 520px;
  margin: 0 0 18px;
  color: #303030;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: left;
}

.about-profile-company__copy--home h2 span {
  display: block;
}

.about-profile-company__copy--home h2 span + span {
  margin-top: 12px;
  padding-left: 72px;
}

.about-profile-company__heading {
  margin-bottom: 14px;
}

.about-profile-company__heading.section-center {
  margin-bottom: 14px;
  text-align: left;
}

.about-profile-company__heading .section-tag {
  margin-bottom: 8px;
  color: var(--red);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.about-profile-company__heading .section-tag--dark {
  color: var(--red);
}

.about-profile-company__heading h2 {
  color: #2f2f2f;
}

.about-profile-company__copy p:not(.section-tag):not(.section-label) {
  margin: 0 0 7px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.5;
}

.about-profile-company__text p {
  margin: 0;
  max-width: 100%;
  color: #969696;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
}

.about-profile-company__text p + p {
  margin-top: 6px;
}

.about-profile-company__numbers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  gap: 16px;
  align-self: end;
  margin-top: 0;
  padding-top: 20px;
}

.about-profile-company__numbers article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 118px;
  padding: 14px 12px 12px;
  border: 1px solid #e7e8ec;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 2px 3px rgba(13, 18, 30, 0.03), 0 8px 18px rgba(13, 18, 30, 0.06);
  text-align: center;
}

.about-profile-company__numbers img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.about-profile-page .about-profile-company__numbers strong {
  display: block;
  margin: 10px 0 0;
  color: var(--profile-accent);
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.about-profile-page .about-profile-company__numbers span {
  display: block;
  margin-top: 6px;
  color: #222;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
}

.about-profile-company__media {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0;
  box-sizing: border-box;
  align-self: stretch;
  width: 100%;
  margin: 0 0 16px 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.about-profile-video-card {
  position: relative;
  display: flex;
  align-self: stretch;
  min-height: 0;
  background: #111;
}

.about-profile-video-card__media {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  background: #111;
}

.about-profile-video-card__trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(147, 7, 8, 0.96);
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(147, 7, 8, 0.28);
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.about-profile-video-card__trigger:hover {
  background: rgba(147, 7, 8, 1);
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow: 0 12px 28px rgba(147, 7, 8, 0.34);
}

.about-profile-video-card__trigger span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #fff;
}

.about-profile-video-card.is-playing .about-profile-video-card__trigger {
  opacity: 0;
  pointer-events: none;
}

.about-profile-company__media-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 78px;
  background: rgba(147, 7, 8, 1);
}

.about-profile-page .about-profile-company__media > .about-profile-company__media-stats {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  min-height: 78px !important;
  background: rgba(147, 7, 8, 1) !important;
}

.about-profile-company__media-stats article {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 14px 18px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: rgba(147, 7, 8, 1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, filter 0.3s ease;
}

.about-profile-page .about-profile-company__media > .about-profile-company__media-stats > article {
  display: flex !important;
  align-items: center !important;
  min-height: 78px !important;
  padding: 14px 18px !important;
  color: #fff !important;
  background: rgba(147, 7, 8, 1) !important;
}

.about-profile-page .about-profile-company__media > .about-profile-company__media-stats > article strong,
.about-profile-page .about-profile-company__media > .about-profile-company__media-stats > article span {
  color: #fff !important;
}

.about-profile-company__media-stats article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(147, 7, 8, 0.96), rgba(120, 0, 0, 0.9));
  transform: scaleX(var(--segment-progress, 0));
  transform-origin: left center;
  transition: transform 0.2s linear;
}

.about-profile-company__media-stats article::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((var(--segment-progress, 0) * 100%) - 40px);
  width: 92px;
  background: linear-gradient(90deg, rgba(147, 7, 8, 0), rgba(255, 255, 255, 0.18), rgba(147, 7, 8, 0));
  opacity: calc(var(--segment-progress, 0) * 1);
  filter: blur(1px);
  pointer-events: none;
  transition: left 0.2s linear, opacity 0.2s linear;
}

.about-profile-company__media-stats article > * {
  position: relative;
  z-index: 1;
}

.about-profile-company__media-stats article.is-active {
  transform: translateY(-2px);
  background: rgba(147, 7, 8, 1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 8px 18px rgba(147, 7, 8, 0.24);
  filter: saturate(1.02);
}

.about-profile-company__media-stats article.is-active .about-profile-company__stat-icon {
  transform: scale(1.06);
  transition: transform 0.25s ease;
}

.about-profile-company__media-stats article.is-active strong {
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.22);
}

.about-profile-company__media-stats article.is-complete {
  background: rgba(147, 7, 8, 0.96);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.about-profile-company__media-stats article.is-complete strong,
.about-profile-company__media-stats article.is-complete span {
  color: #fff;
}

.about-profile-company__media-stats article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.about-profile-company__stat-icon {
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.about-profile-company__stat-icon--globe {
  background-image: url("../img/about_profile/factory_area.webp");
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  background-size: 100% 100%;
}

.about-profile-company__stat-icon--stack {
  background-image: url("../img/about_profile/profile_stat_icon_01.webp");
   width: 50px;
  height: 50px;
  flex: 0 0 50px;
  background-size: 100% 100%;
}

.about-profile-company__stat-icon--certificate {
  background-image: url("../img/about_profile/profile_stat_icon_02.webp");
   width: 50px;
  height: 50px;
  flex: 0 0 50px;
  background-size: 100% 100%;
}

.about-profile-company__media-stats strong,
.about-profile-company__media-stats article > div span {
  display: block;
  line-height: 1.1;
}

.about-profile-company__media-stats article > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 34px;
}

.about-profile-company__media-stats strong {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.about-profile-company__media-stats span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
}

.about-profile-section-bridge {
  padding: 10px 0 20px;
  background: #fff;
}

.about-profile-section-bridge__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.about-profile-section-bridge__line {
  display: block;
  width: 120px;
  height: 2px;
  background: var(--profile-accent);
  border-radius: 999px;
}

.about-profile-section-bridge p {
  margin: 0;
  color: var(--profile-accent);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.has-profile-motion .about-profile-company[data-about-company-motion] .about-profile-company__copy--home,
.has-profile-motion .about-profile-company[data-about-company-motion] .about-profile-company__media {
  opacity: 0;
  transition: opacity 0.56s ease, transform 0.56s ease;
  will-change: opacity, transform;
}

.has-profile-motion .about-profile-company[data-about-company-motion] .about-profile-company__copy--home {
  transform: translateX(-24px);
}

.has-profile-motion .about-profile-company[data-about-company-motion] .about-profile-company__media {
  transform: translateX(24px);
}

.has-profile-motion .about-profile-company[data-about-company-motion].is-visible .about-profile-company__copy--home,
.has-profile-motion .about-profile-company[data-about-company-motion].is-visible .about-profile-company__media {
  opacity: 1;
  transform: translateX(0);
}

.has-profile-motion .about-profile-section-bridge[data-about-bridge-motion] .about-profile-section-bridge__inner {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.48s ease, transform 0.48s ease;
  will-change: opacity, transform;
}

.has-profile-motion .about-profile-section-bridge[data-about-bridge-motion].is-visible .about-profile-section-bridge__inner {
  opacity: 1;
  transform: translateY(0);
}

.about-profile-manufacturing {
  padding: 8px 0 34px;
  background: #ffffff;
}

.about-profile-manufacturing__grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.about-profile-manufacturing__intro {
  padding: 46px 34px 40px 0;
}

.about-profile-manufacturing__intro h2 {
  max-width: 520px;
  margin: 0;
  color: #303030;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.about-profile-manufacturing__intro h2 span {
  display: block;
}

.about-profile-manufacturing__intro h2 span + span {
  margin-top: 12px;
  padding-left: 72px;
}

.about-profile-manufacturing__accent {
  display: block;
  width: 36px;
  height: 3px;
  margin: 18px 0 22px;
  background: var(--red);
}

.about-profile-manufacturing__intro p {
  margin: 0;
  color: #2f3850;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

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

.about-profile-manufacturing__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 46px 26px 40px;
  text-align: center;
  border-left: 1px solid #e1e1e1;
}

.about-profile-manufacturing__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(210, 13, 13, 0.08);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
}

.about-profile-manufacturing__icon--supply {
  background-image: url("../img/about_profile/why_choose_us_icon_01.webp");
}

.about-profile-manufacturing__icon--experience {
  background-image: url("../img/about_profile/why_choose_us_icon_02.webp");
}

.about-profile-manufacturing__icon--standards {
  background-image: url("../img/about_profile/why_choose_us_icon_03.webp");
}

.about-profile-manufacturing__icon--worldwide {
  background-image: url("../img/about_profile/why_choose_us_icon_04.webp");
}

.about-profile-manufacturing__item h3 {
  margin: 0 0 10px;
  color: #111111;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.about-profile-manufacturing__item p {
  margin: 0;
  color: #2f3850;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

@media (min-width: 1131px) {
  .about-profile-company__media-stats article {
    min-height: 78px;
    padding: 14px 18px;
  }
}

.about-profile-production {
  padding: 38px 0 20px;
  background: #fff;
}

.about-profile-production__header {
  margin-bottom: 24px;
  text-align: center;
  animation: none;
}

.about-profile-production__header h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: #303030;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

.about-profile-production__header h2::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: var(--profile-accent);
}

.about-profile-production__header p {
  margin: 10px 0 0;
  color: #8b8b8b;
  font-size: 15px;
  line-height: 1.6;
}

.about-profile-section-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 14px;
}

.about-profile-section-bar h2,
.about-profile-company__heading h2 {
  margin: 0;
  font-family: inherit;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-profile-section-bar a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.about-profile-section-bar a::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../img/youjiantou.png") center/100% 100% no-repeat;
}

.about-profile-section-bar--light h2,
.about-profile-section-bar--light a {
  color: #fff;
}

.about-profile-production__carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  animation: none;
}

.about-profile-production__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--profile-accent);
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(147, 7, 8, 0.18);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.about-profile-production__arrow:hover {
  background: rgba(147, 7, 8, 0.92);
  transform: scale(1.04);
  box-shadow: 0 10px 22px rgba(147, 7, 8, 0.22);
}

.about-profile-production__arrow:active {
  transform: scale(0.96);
}

.about-profile-production__arrow img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.about-profile-production__viewport {
  overflow: hidden;
}

.about-profile-production__viewport::-webkit-scrollbar {
  display: none;
}

.about-profile-production__track {
  display: flex;
  gap: 12px;
  transform: translateX(var(--production-track-offset, 0px));
  transition: transform 0.35s ease;
  will-change: transform;
}

.about-profile-production__card {
  flex: 0 0 calc((100% - 36px) / 4);
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--profile-border);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  min-width: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-profile-production__card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 60px;
  z-index: 2;
  background: linear-gradient(135deg, #f7f7f7 0%, #ffffff 52%, #eceff3 100%);
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.about-profile-production__card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.58 / 1;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  transform: scale(1.08);
  transition: transform 0.6s ease;
}

.about-profile-production__card span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  border-radius: 0 0 18px 18px;
  background-color: var(--profile-accent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: none;
}

.about-profile-production__card:hover {
  transform: none;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.about-profile-production__card:hover img {
  transform: scale(1.08);
}

.about-profile-production__card:hover span {
  background-color: var(--profile-accent);
  color: #fff;
}

.has-profile-motion .about-profile-production[data-production-motion] .about-profile-production__header {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.48s ease, transform 0.48s ease;
  will-change: opacity, transform;
}

.has-profile-motion .about-profile-production[data-production-motion] .about-profile-production__card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.48s ease, transform 0.48s ease, box-shadow 0.35s ease;
  will-change: opacity, transform;
}

.has-profile-motion .about-profile-production[data-production-motion].is-visible .about-profile-production__header {
  opacity: 1;
  transform: translateY(0);
}

.has-profile-motion .about-profile-production[data-production-motion].is-visible .about-profile-production__card {
  opacity: 1;
  transform: translateY(0);
}

.has-profile-motion .about-profile-production[data-production-motion].is-visible .about-profile-production__card::after {
  transform: scaleX(0);
  transform-origin: right center;
}

.has-profile-motion .about-profile-production[data-production-motion].is-visible .about-profile-production__card:nth-child(1) {
  transition-delay: 0.1s;
}

.has-profile-motion .about-profile-production[data-production-motion].is-visible .about-profile-production__card:nth-child(2) {
  transition-delay: 0.2s;
}

.has-profile-motion .about-profile-production[data-production-motion].is-visible .about-profile-production__card:nth-child(3) {
  transition-delay: 0.3s;
}

.has-profile-motion .about-profile-production[data-production-motion].is-visible .about-profile-production__card:nth-child(4) {
  transition-delay: 0.4s;
}

.has-profile-motion .about-profile-production[data-production-motion].is-visible .about-profile-production__card:nth-child(5) {
  transition-delay: 0.5s;
}

.has-profile-motion .about-profile-production[data-production-motion].is-visible .about-profile-production__card:nth-child(6) {
  transition-delay: 0.6s;
}

.has-profile-motion .about-profile-production[data-production-motion].is-visible .about-profile-production__card:nth-child(1)::after {
  transition-delay: 0.14s;
}

.has-profile-motion .about-profile-production[data-production-motion].is-visible .about-profile-production__card:nth-child(2)::after {
  transition-delay: 0.24s;
}

.has-profile-motion .about-profile-production[data-production-motion].is-visible .about-profile-production__card:nth-child(3)::after {
  transition-delay: 0.34s;
}

.has-profile-motion .about-profile-production[data-production-motion].is-visible .about-profile-production__card:nth-child(4)::after {
  transition-delay: 0.44s;
}

.has-profile-motion .about-profile-production[data-production-motion].is-visible .about-profile-production__card:nth-child(5)::after {
  transition-delay: 0.54s;
}

.has-profile-motion .about-profile-production[data-production-motion].is-visible .about-profile-production__card:nth-child(6)::after {
  transition-delay: 0.64s;
}

.about-profile-flow-tag {
  padding: 20px 0 0;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7f7 100%);
}

.about-profile-flow-tag__pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--profile-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 24px rgba(147, 7, 8, 0.16);
}

.about-profile-flow-tag .container {
  display: flex;
  justify-content: center;
}

.has-profile-motion .about-profile-flow-tag[data-flow-tag-motion] .about-profile-flow-tag__pill {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.46s ease, transform 0.46s ease;
  will-change: opacity, transform;
}

.has-profile-motion .about-profile-flow-tag[data-flow-tag-motion].is-visible .about-profile-flow-tag__pill {
  opacity: 1;
  transform: translateY(0);
}

.about-profile-support-flow {
  padding: 18px 0 30px;
  background: #ffffff;
}

.about-profile-support-flow__grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.about-profile-support-flow__intro {
  padding: 28px 34px 28px 0;
}

.about-profile-support-flow__intro h2 {
  max-width: 520px;
  margin: 0;
  color: #303030;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.about-profile-support-flow__intro h2 span {
  display: block;
}

.about-profile-support-flow__intro h2 span + span {
  margin-top: 12px;
  padding-left: 72px;
}

.about-profile-support-flow__accent {
  display: block;
  width: 36px;
  height: 3px;
  margin: 20px 0 18px;
  background: #d20d0d;
}

.about-profile-support-flow__intro p {
  max-width: 235px;
  margin: 0;
  color: #2f3850;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.about-profile-support-flow__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-top: 14px;
}

.about-profile-support-flow__line {
  position: absolute;
  top: 66px;
  left: 56px;
  right: 18px;
  height: 2px;
  background: #d20d0d;
}

.about-profile-support-flow__line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #d20d0d;
  border-right: 2px solid #d20d0d;
  transform: translateY(-50%) rotate(45deg);
}

.about-profile-support-flow__item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  text-align: center;
}

.about-profile-support-flow__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  border: 1px solid rgba(210, 13, 13, 0.14);
  border-radius: 50%;
  background: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px 32px;
  box-shadow: 0 8px 20px rgba(210, 13, 13, 0.08);
}

.about-profile-support-flow__icon--production {
  background-image: url("../img/about_profile/why_choose_us_icon_06.webp");
}

.about-profile-support-flow__icon--support {
  background-image: url("../img/about_profile/why_choose_us_icon_02.webp");
}

.about-profile-support-flow__icon--success {
  background-image: url("../img/about_profile/why_choose_us_icon_04.webp");
}

.about-profile-support-flow__item h3 {
  margin: 0 0 6px;
  color: #111111;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.about-profile-support-flow__item p {
  max-width: 220px;
  margin: 0;
  color: #2f3850;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

@keyframes about-profile-production-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__header,
.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step,
.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__rail {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.52s ease, transform 0.52s ease;
  will-change: opacity, transform;
}

.about-profile-page .profile-process-ref[data-profile-process-motion].is-visible .profile-process-ref__header,
.about-profile-page .profile-process-ref[data-profile-process-motion].is-visible .profile-process-ref__step,
.about-profile-page .profile-process-ref[data-profile-process-motion].is-visible .profile-process-ref__rail {
  opacity: 1;
  transform: translateY(0);
}

.about-profile-page .profile-process-ref[data-profile-process-motion].is-visible .profile-process-ref__header {
  transition-delay: 0.02s;
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__header h2,
.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__header p {
  opacity: 0;
  filter: blur(4px);
  transition: opacity 0.48s ease, transform 0.48s ease, filter 0.48s ease;
  will-change: opacity, transform, filter;
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__header h2 {
  position: relative;
  transform: translateY(16px);
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__header h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: var(--red);
  transform: scaleX(0.3);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.44s ease 0.14s, opacity 0.44s ease 0.14s;
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__header p {
  transform: translateY(16px);
}

.about-profile-page .profile-process-ref[data-profile-process-motion].is-visible .profile-process-ref__header h2,
.about-profile-page .profile-process-ref[data-profile-process-motion].is-visible .profile-process-ref__header p {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.about-profile-page .profile-process-ref[data-profile-process-motion].is-visible .profile-process-ref__header h2 {
  transition-delay: 0.04s;
}

.about-profile-page .profile-process-ref[data-profile-process-motion].is-visible .profile-process-ref__header p {
  transition-delay: 0.12s;
}

.about-profile-page .profile-process-ref[data-profile-process-motion].is-visible .profile-process-ref__header h2::after {
  opacity: 1;
  transform: scaleX(1);
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__rail {
  opacity: 1;
  transform: none;
  height: 1px;
  border-bottom: 0 !important;
  overflow: hidden;
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__rail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    #d7d7d7 0 8px,
    transparent 8px 14px
  );
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.22s;
}

.about-profile-page .profile-process-ref[data-profile-process-motion].is-visible .profile-process-ref__rail::before {
  transform: scaleX(1);
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step {
  transform: translateY(18px);
  transition-duration: 0.54s;
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 1px;
  height: 0;
  background: linear-gradient(180deg, rgba(147, 7, 8, 0.18) 0%, rgba(147, 7, 8, 0.78) 100%);
  transform: translateX(-50%);
  transform-origin: top center;
  transition: height 0.38s ease;
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step h3 {
  position: relative;
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: var(--red);
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: center;
  transition: opacity 0.26s ease, transform 0.26s ease;
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step img {
  clip-path: inset(0 100% 0 0 round 3px);
  transform: scale(1.08);
  transition: clip-path 0.52s cubic-bezier(0.22, 1, 0.36, 1), transform 0.52s ease;
  will-change: clip-path, transform;
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__marker {
  opacity: 0.45;
  transform: scale(0.58);
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 0 rgba(147, 7, 8, 0);
  transition: transform 0.34s ease, opacity 0.34s ease, box-shadow 0.34s ease;
  will-change: transform, opacity, box-shadow;
}

.about-profile-page .profile-process-ref[data-profile-process-motion].is-visible .profile-process-ref__step::before {
  height: 18px;
}

.about-profile-page .profile-process-ref[data-profile-process-motion].is-visible .profile-process-ref__step img {
  clip-path: inset(0 0 0 0 round 3px);
  transform: scale(1);
}

.about-profile-page .profile-process-ref[data-profile-process-motion].is-visible .profile-process-ref__step .profile-process-ref__marker {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 7px rgba(147, 7, 8, 0.12);
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(1) {
  transition-delay: 0.24s;
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(1)::before,
.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(1) img,
.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(1) .profile-process-ref__marker {
  transition-delay: 0.24s;
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(2) {
  transition-delay: 0.36s;
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(2)::before,
.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(2) img,
.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(2) .profile-process-ref__marker {
  transition-delay: 0.36s;
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(3) {
  transition-delay: 0.48s;
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(3)::before,
.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(3) img,
.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(3) .profile-process-ref__marker {
  transition-delay: 0.48s;
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(4) {
  transition-delay: 0.6s;
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(4)::before,
.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(4) img,
.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(4) .profile-process-ref__marker {
  transition-delay: 0.6s;
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(5) {
  transition-delay: 0.72s;
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(5)::before,
.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(5) img,
.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(5) .profile-process-ref__marker {
  transition-delay: 0.72s;
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(6) {
  transition-delay: 0.84s;
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(6)::before,
.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(6) img,
.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(6) .profile-process-ref__marker {
  transition-delay: 0.84s;
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(7) {
  transition-delay: 0.96s;
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(7)::before,
.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(7) img,
.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:nth-of-type(7) .profile-process-ref__marker {
  transition-delay: 0.96s;
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:hover {
  transform: translateY(-6px);
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:hover .profile-process-ref__index {
  color: rgba(147, 7, 8, 1);
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:hover img {
  transform: scale(1.04);
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:hover h3::after {
  opacity: 1;
  transform: scaleX(1);
}

.about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step:hover .profile-process-ref__marker {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 9px rgba(147, 7, 8, 0.16);
}

@media (prefers-reduced-motion: reduce) {
  .has-profile-motion .about-profile-company[data-about-company-motion] .about-profile-company__copy--home,
  .has-profile-motion .about-profile-company[data-about-company-motion] .about-profile-company__media,
  .has-profile-motion .about-profile-section-bridge[data-about-bridge-motion] .about-profile-section-bridge__inner,
  .has-profile-motion .about-profile-flow-tag[data-flow-tag-motion] .about-profile-flow-tag__pill,
  .has-profile-motion .about-profile-production[data-production-motion] .about-profile-production__header,
  .has-profile-motion .about-profile-production[data-production-motion] .about-profile-production__card,
  .has-profile-motion .about-profile-why-us[data-why-us-motion] .about-profile-why-us__media,
  .has-profile-motion .about-profile-why-us[data-why-us-motion] .about-profile-why-us__intro,
  .has-profile-motion .about-profile-why-us[data-why-us-motion] .about-profile-why-us__points article,
  .about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__header,
  .about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__header h2,
  .about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__header p,
  .about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__rail,
  .about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__header h2::after {
    transform: none;
    transition: none;
  }

  .about-profile-production__card::after {
    transform: none;
    transition: none;
  }

  .about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__rail::before,
  .about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step::before,
  .about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step h3::after,
  .about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step img,
  .about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__marker {
    transform: none;
    opacity: 1;
    clip-path: none;
    transition: none;
    box-shadow: none;
  }

  .about-profile-page .profile-process-ref[data-profile-process-motion] .profile-process-ref__step::before {
    height: 18px;
  }
}

.about-profile-why-us {
  position: relative;
  padding: 0 0 64px;
  background: linear-gradient(180deg, #fbf7f7 0%, #ffffff 36%);
}

.has-profile-motion .about-profile-why-us[data-why-us-motion] .about-profile-why-us__media,
.has-profile-motion .about-profile-why-us[data-why-us-motion] .about-profile-why-us__intro,
.has-profile-motion .about-profile-why-us[data-why-us-motion] .about-profile-why-us__points article {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}

.has-profile-motion .about-profile-why-us[data-why-us-motion] .about-profile-why-us__media {
  transform: translateX(-24px);
}

.has-profile-motion .about-profile-why-us[data-why-us-motion] .about-profile-why-us__intro {
  transform: translateX(24px);
  transition-delay: 0.08s;
}

.has-profile-motion .about-profile-why-us[data-why-us-motion] .about-profile-why-us__points article {
  transform: translateY(16px);
}

.has-profile-motion .about-profile-why-us[data-why-us-motion].is-visible .about-profile-why-us__media,
.has-profile-motion .about-profile-why-us[data-why-us-motion].is-visible .about-profile-why-us__intro,
.has-profile-motion .about-profile-why-us[data-why-us-motion].is-visible .about-profile-why-us__points article {
  opacity: 1;
  transform: translate(0, 0);
}

.has-profile-motion .about-profile-why-us[data-why-us-motion].is-visible .about-profile-why-us__points article:nth-child(1) {
  transition-delay: 0.16s;
}

.has-profile-motion .about-profile-why-us[data-why-us-motion].is-visible .about-profile-why-us__points article:nth-child(2) {
  transition-delay: 0.24s;
}

.has-profile-motion .about-profile-why-us[data-why-us-motion].is-visible .about-profile-why-us__points article:nth-child(3) {
  transition-delay: 0.32s;
}

.about-profile-why-us__card {
  display: grid;
  grid-template-columns: 40% minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  height: 620px;
  margin-top: -14px;
  padding: 18px;
  border: 1px solid var(--profile-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--profile-shadow);
  overflow: hidden;
}

.about-profile-why-us__media {
  position: relative;
  display: flex;
  align-self: stretch;
  overflow: hidden;
  height: 584px;
  border-radius: 18px;
}

.about-profile-why-us__media img {
  flex: 1 1 auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.about-profile-why-us__card:hover .about-profile-why-us__media img {
  transform: scale(1.02);
}

.about-profile-why-us__media-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.92);
  color: #303030;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
}

.about-profile-why-us__media-note strong {
  display: block;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.about-profile-why-us__media-note p {
  margin: 6px 0 0;
  color: #6a6a6a;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.about-profile-why-us__content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  height: 584px;
  overflow: hidden;
  padding: 8px 6px 10px 4px;
}

.about-profile-why-us__intro {
  max-width: 644px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-profile-why-us__tag {
  margin: 0 0 8px;
  color: var(--profile-accent);
}

.about-profile-why-us__tag::after {
  content: none;
}

.about-profile-why-us__intro h2 {
  max-width: 520px;
  margin: 0;
  color: #303030;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: left;
}

.about-profile-why-us__intro h2 > span {
  display: block;
}

.about-profile-why-us__intro h2 > span + span {
  margin-top: 12px;
  padding-left: 72px;
}

.about-profile-why-us__intro h2 > span span {
  color: var(--profile-accent);
}

.about-profile-why-us__action {
  align-self: flex-start;
  min-height: 40px;
  margin-top: 18px;
  padding: 0 20px;
  font-size: 12px;
  letter-spacing: 0.08em;
  gap: 12px;
  border-radius: 2px;
}

.about-profile-why-us__action span[aria-hidden="true"] {
  font-size: 16px;
  line-height: 1;
}

.about-profile-why-us__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
  padding-top: 0;
  margin-bottom: 0;
}

.about-profile-why-us__points article {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--profile-border);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #faf7f7 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.about-profile-why-us__points article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--profile-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
}

.about-profile-why-us__points article::after {
  content: attr(data-point-index);
  position: absolute;
  right: 16px;
  bottom: 8px;
  z-index: 0;
  color: rgba(147, 7, 8, 0.28);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  transition: color 0.24s ease;
}

.about-profile-why-us__points article:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(16, 24, 40, 0.12);
  border-color: rgba(147, 7, 8, 0.16);
}

.about-profile-why-us__points article:hover::before {
  transform: scaleX(1);
}

.about-profile-why-us__points article:hover::after {
  color: rgba(147, 7, 8, 0.42);
}

.about-profile-why-us__points img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-profile-why-us__points article:hover img {
  transform: scale(1.03);
}

.about-profile-why-us__point-body {
  position: relative;
  z-index: 1;
  padding: 16px 16px 18px;
}

.about-profile-why-us__point-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-profile-why-us__point-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(147, 7, 8, 1);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: transform 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}

.about-profile-page .about-profile-why-us__point-number {
  background: rgba(147, 7, 8, 1) !important;
  color: #fff !important;
}

.about-profile-why-us__points article:hover .about-profile-why-us__point-number {
  transform: translateY(-2px) scale(1.08);
  background: rgba(147, 7, 8, 1);
}

.about-profile-page .about-profile-why-us__points article:hover .about-profile-why-us__point-number {
  background: rgba(147, 7, 8, 1) !important;
  color: #fff !important;
}

.about-profile-why-us__point-body strong {
  color: #2f2f2f;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.about-profile-why-us__point-head strong {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.about-profile-why-us__point-body span {
  display: -webkit-box;
  margin-top: 6px;
  color: #969696;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.about-profile-why-us__closing {
  margin: 22px 0 0;
  color: #7f7f7f;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.about-profile-process-flow {
  padding: 0 0 34px;
  background: #ffffff;
}

.about-profile-process-flow__panel {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: center;
  background: #ffffff;
  border-radius: 4px;
  padding: 30px 34px 28px 32px;
}

.about-profile-process-flow__intro {
  padding-right: 28px;
}

.about-profile-process-flow__intro h2 {
  max-width: 520px;
  margin: 0;
  color: #303030;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.about-profile-process-flow__intro h2 span {
  display: block;
}

.about-profile-process-flow__intro h2 span + span {
  margin-top: 12px;
  padding-left: 72px;
}

.about-profile-process-flow__accent {
  display: block;
  width: 38px;
  height: 3px;
  margin: 18px 0 18px;
  background: #d20d0d;
}

.about-profile-process-flow__intro p {
  max-width: 250px;
  margin: 0;
  color: #49505f;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.about-profile-process-flow__steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr);
  align-items: start;
}

.about-profile-process-flow__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-profile-process-flow__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border: 1px solid rgba(210, 13, 13, 0.14);
  border-radius: 50%;
  background: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
  box-shadow: 0 6px 16px rgba(210, 13, 13, 0.08);
}

.about-profile-process-flow__icon--understand {
  background-image: url("../img/about_profile/why_choose_us_icon_02.webp");
}

.about-profile-process-flow__icon--plan {
  background-image: url("../img/about_profile/why_choose_us_icon_03.webp");
}

.about-profile-process-flow__icon--execute {
  background-image: url("../img/about_profile/why_choose_us_icon_06.webp");
}

.about-profile-process-flow__icon--deliver {
  background-image: url("../img/about_profile/why_choose_us_icon_04.webp");
}

.about-profile-process-flow__item h3 {
  margin: 0 0 6px;
  color: #202020;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.about-profile-process-flow__item p {
  max-width: 170px;
  margin: 0;
  color: #49505f;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
}

.about-profile-process-flow__arrow {
  position: relative;
  align-self: start;
  display: block;
  height: 2px;
  margin-top: 28px;
  background: #d20d0d;
}

.about-profile-process-flow__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #d20d0d;
  border-right: 2px solid #d20d0d;
  transform: translateY(-50%) rotate(45deg);
}

.about-profile-strength {
  padding: 28px 0 28px;
}

.about-profile-strength__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.about-profile-strength__panel {
  display: flex;
  flex-direction: column;
}

.about-profile-strength__panel h2 {
  margin: 0 0 14px;
  color: #1a1a1a;
  font-family: inherit;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
}

.about-profile-strength__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  flex: 1 1 auto;
}

.about-profile-strength__features article,
.about-profile-strength__partners > div {
  border: 1px solid #ededed;
  border-radius: 2px;
  background: #fff;
}

.about-profile-strength__features article {
  display: flex;
  flex-direction: column;
  min-height: 132px;
  padding: 14px 12px 12px;
}

.about-profile-strength__features img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.about-profile-strength__features h3 {
  margin: 10px 0 10px;
  min-height: 2.2em;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.08;
}

.about-profile-strength__features p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}

.about-profile-strength__panel--partners {
  padding-left: 6px;
}

.about-profile-strength__partners {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  flex: 1 1 auto;
  align-content: start;
}

.about-profile-strength__partners > div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.about-profile-strength__partners img {
  display: block;
  width: 84%;
  height: 84%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
}

.about-profile-network {
  background:
    linear-gradient(90deg, rgba(7, 10, 16, 0.9) 0%, rgba(7, 10, 16, 0.72) 28%, rgba(7, 10, 16, 0.22) 56%, rgba(7, 10, 16, 0.08) 100%),
    url("../img/about_profile/erth_gloabel_backgroud.webp") center/cover no-repeat;
}

.about-profile-network__grid {
  display: block;
  padding-top: 22px;
  padding-bottom: 22px;
}

.about-profile-network__copy {
  color: #fff;
  max-width: 290px;
}

.about-profile-network__copy h2 {
  margin: 0 0 14px;
  color: #fff;
  font-family: inherit;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
}

.about-profile-network__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

.about-profile-network__highlights {
  display: grid;
  gap: 10px;
  max-width: 290px;
  margin-top: 20px;
}

.about-profile-network__highlights article {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 0;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}

.about-profile-network__highlights img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex: 0 0 36px;
}

.about-profile-network__highlights article:first-child img {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
  transform: scale(1.45);
  transform-origin: center;
}

.about-profile-network__highlights article:nth-child(2) img {
  transform: scale(1.08);
  transform-origin: center;
}

.about-profile-network__highlights article:nth-child(3) img {
  transform: scale(1.12);
  transform-origin: center;
}

.about-profile-network__highlights p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.about-profile-network__highlights strong {
  font-weight: 400;
}

.about-profile-cta {
  padding: 0;
  background: var(--red);
}

.about-profile-cta__panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.44fr) minmax(0, 0.56fr);
  align-items: stretch;
  background: var(--red);
  overflow: hidden;
}

.about-profile-cta__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 176px;
  padding: 26px 34px;
  color: #fff;
}

.about-profile-cta__copy h2 {
  margin: 0;
  font-size: 35px;
  line-height: 1.04;
}

.about-profile-cta__copy p {
  max-width: 320px;
  margin: 10px 0 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.65;
}

.about-profile-cta__copy .button {
  align-self: flex-start;
  min-width: 184px;
  background: #141414;
}

.about-profile-cta__copy .button:hover {
  background: #000;
}

.about-profile-cta__image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 176px;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .about-profile-production__card {
    flex-basis: calc((100% - 12px) / 2);
  }

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

@media (min-width: 1025px) {
  .about-profile-strength__grid {
    align-items: stretch;
  }

  .about-profile-strength__panel {
    height: 100%;
  }

  .about-profile-strength__partners {
    grid-auto-rows: 1fr;
    height: 100%;
    align-content: stretch;
  }
}

@media (min-width: 1025px) and (max-width: 1320px) {
  .about-profile-strength__grid {
    gap: 14px;
  }

  .about-profile-strength__panel h2 {
    margin-bottom: 12px;
    font-size: 27px;
    line-height: 1.2;
  }

  .about-profile-strength__features {
    gap: 14px;
  }

  .about-profile-strength__features article {
    min-height: 118px;
    padding: 12px 10px 10px;
  }

  .about-profile-strength__features img {
    width: 28px;
    height: 28px;
  }

  .about-profile-strength__features h3 {
    margin: 8px 0 8px;
    min-height: 2.24em;
    font-size: 18px;
    line-height: 1.12;
  }

  .about-profile-strength__features p {
    font-size: 12px;
    line-height: 1.3;
  }

  .about-profile-network__copy p {
    font-size: 12px;
  }

  .about-profile-strength__partners {
    gap: 10px;
  }

  .about-profile-strength__partners > div {
    min-height: 38px;
  }

  .about-profile-strength__partners img {
    width: 78%;
    height: 78%;
    transform: scale(1);
  }
}

@media (min-width: 1025px) and (max-width: 1360px) {
  .about-profile-company {
    padding: 30px 0 22px;
  }

  .about-profile-company__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
  }

  .about-profile-company__copy--home {
    min-height: 400px;
    align-self: stretch;
    margin-left: 36px;
    padding: 18px 0;
  }

  .about-profile-company__copy--home h2 {
    margin-bottom: 22px;
    font-size: 28px;
  }

  .about-profile-company__copy--home h2 span + span {
    padding-left: 56px;
  }

  .about-profile-page .about-profile-company__numbers strong {
    font-size: 22px;
  }

  .about-profile-page .about-profile-company__numbers span {
    font-size: 14px;
  }

  .about-profile-manufacturing__intro h2 span + span,
  .about-profile-support-flow__intro h2 span + span,
  .about-profile-process-flow__intro h2 span + span {
    padding-left: 56px;
  }

  .about-profile-company__text p {
    font-size: 15px;
    letter-spacing: 0;
    line-height: 1.55;
  }

  .about-profile-company__numbers {
    gap: 10px;
    padding-top: 16px;
  }

  .about-profile-company__numbers article {
    min-height: 108px;
    padding: 14px 12px;
  }

  .about-profile-company__media {
    width: 100%;
    align-self: stretch;
    margin: 0 0 16px 0;
  }

  .about-profile-video-card__media {
    aspect-ratio: auto;
  }

  .about-profile-company__media-stats article {
    gap: 10px;
    min-height: 54px;
    padding: 10px 12px;
  }

  .about-profile-company__stat-icon--globe,
  .about-profile-company__stat-icon--stack,
  .about-profile-company__stat-icon--certificate {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }

  .about-profile-company__media-stats strong {
    font-size: 16px;
    font-weight: 700;
  }

  .about-profile-company__media-stats span {
    font-size: 9px;
  }
}

@media (max-width: 1024px) {
  .about-profile-process-flow {
    padding: 0 0 28px;
  }

  .about-profile-process-flow__panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 24px;
  }

  .about-profile-process-flow__intro {
    padding-right: 0;
  }

  .about-profile-process-flow__intro p {
    max-width: none;
  }

  .about-profile-support-flow {
    padding: 12px 0 26px;
  }

  .about-profile-support-flow__grid {
    grid-template-columns: 1fr;
  }

  .about-profile-support-flow__intro {
    padding: 20px 0 24px;
  }

  .about-profile-support-flow__intro p {
    max-width: none;
  }

  .about-profile-support-flow__steps {
    gap: 18px;
  }

  .about-profile-support-flow__item {
    padding: 0 12px;
  }

  .about-profile-manufacturing {
    padding: 0 0 28px;
  }

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

  .about-profile-manufacturing__intro {
    padding: 34px 0 22px;
  }

  .about-profile-manufacturing__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #e1e1e1;
  }

  .about-profile-manufacturing__item {
    padding: 28px 22px 26px;
  }

  .about-profile-manufacturing__item:nth-child(odd) {
    border-left: 0;
  }

  .about-profile-production {
    padding: 30px 0 38px;
  }

  .about-profile-why-us__card {
    grid-template-columns: 1fr;
    gap: 16px;
    height: auto;
    margin-top: -8px;
    padding: 16px;
    overflow: visible;
  }

  .about-profile-why-us__media {
    height: auto;
  }

  .about-profile-why-us__media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .about-profile-why-us__content {
    gap: 16px;
    height: auto;
    overflow: visible;
    padding: 0;
  }

  .about-profile-flow-tag {
    padding-top: 16px;
  }


  .about-profile-company__media,
  .about-profile-video-card,
  .about-profile-video-card__media {
    width: 100%;
    max-width: none;
  }

  .about-profile-company__media {
    margin-top: 0;
    margin-left: 0;
  }

  .about-profile-company__heading .section-tag {
    font-size: 15px;
  }

  .about-profile-company__heading h2,
  .about-profile-section-bar h2 {
    font-family: inherit;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .about-profile-company__grid,
  .about-profile-strength__grid,
  .about-profile-network__grid,
  .about-profile-cta__panel {
    grid-template-columns: 1fr;
  }

  .about-profile-hero__content {
    max-width: 560px;
  }

  .about-profile-company__copy--home {
    min-height: 0;
    margin: 0;
    padding: 28px 0 0;
  }

  .about-profile-company__copy--home .section-label {
    margin-bottom: 14px;
  }

  .about-profile-company__copy--home h2 {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: 28px;
  }

  .about-profile-company__copy--home h2 span + span {
    padding-left: 56px;
  }

  .about-profile-company__text p {
    font-size: 15px;
    line-height: 1.65;
  }

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

  .about-profile-strength__panel--partners {
    padding-left: 0;
  }

  .about-profile-network__grid {
    gap: 22px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .about-profile-production__card {
    flex-basis: calc((100% - 12px) / 2);
  }
}

@media (max-width: 720px) {
  .about-profile-process-flow__panel {
    padding: 24px 18px;
  }

  .about-profile-process-flow__intro h2 {
    font-size: 20px;
    line-height: 1.2;
  }

  .about-profile-process-flow__intro p,
  .about-profile-process-flow__item p {
    font-size: 15px;
    line-height: 1.65;
  }

  .about-profile-process-flow__steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-profile-process-flow__arrow {
    display: none;
  }

  .about-profile-process-flow__item h3 {
    font-size: 17px;
    line-height: 1.4;
  }

  .about-profile-support-flow__intro h2 {
    font-size: 20px;
    line-height: 1.2;
  }

  .about-profile-support-flow__intro p,
  .about-profile-support-flow__item p {
    font-size: 15px;
    line-height: 1.65;
  }

  .about-profile-support-flow__steps {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 0;
  }

  .about-profile-support-flow__line {
    display: none;
  }

  .about-profile-support-flow__item {
    padding: 0;
  }

  .about-profile-support-flow__icon {
    margin-bottom: 16px;
  }

  .about-profile-support-flow__item h3 {
    font-size: 17px;
    line-height: 1.4;
  }

  .about-profile-manufacturing__intro h2 {
    font-size: 20px;
    line-height: 1.2;
  }

  .about-profile-manufacturing__intro p,
  .about-profile-manufacturing__item p {
    font-size: 15px;
    line-height: 1.65;
  }

  .about-profile-manufacturing__item h3 {
    font-size: 17px;
    line-height: 1.4;
  }

  .about-profile-why-us {
    padding-top: 0;
    padding-bottom: 32px;
  }

  .about-profile-why-us__tag {
    margin-bottom: 14px;
  }

  .about-profile-why-us__intro h2 {
    max-width: 100%;
  }

  .about-profile-why-us__points {
    grid-template-columns: 1fr;
  }

  .about-profile-flow-tag__pill {
    min-height: 38px;
    padding: 0 16px;
    font-size: 13px;
    text-align: center;
  }

  .about-profile-why-us__point-body strong,
  .about-profile-why-us__point-body span,
  .about-profile-why-us__action {
    font-size: 15px;
  }

  .about-profile-production__viewport {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .about-profile-company__media,
  .about-profile-video-card,
  .about-profile-video-card__media {
    width: 100%;
    max-width: none;
  }

  .about-profile-company__media {
    margin-left: 0;
  }

  .about-profile-hero {
    min-height: 470px;
  }

  .about-profile-hero__content {
    min-height: 470px;
    max-width: 100%;
    padding-top: 28px;
    padding-bottom: 22px;
  }

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

  .about-profile-hero__summary {
    font-size: 18px;
    line-height: 1.4;
  }

  .about-profile-company {
    padding-top: 32px;
  }

  .about-profile-company__copy--home {
    padding-top: 24px;
  }

  .about-profile-company__copy--home h2,
  .about-profile-process-flow__intro h2,
  .about-profile-support-flow__intro h2,
  .about-profile-manufacturing__intro h2,
  .about-profile-production__header h2,
  .about-profile-why-us__intro h2 {
    margin-bottom: 18px;
    font-size: 20px;
    line-height: 1.2;
  }

  .about-profile-company__copy--home h2 span + span,
  .about-profile-manufacturing__intro h2 span + span,
  .about-profile-support-flow__intro h2 span + span,
  .about-profile-process-flow__intro h2 span + span,
  .about-profile-why-us__intro h2 > span + span {
    padding-left: 44px;
  }

  .about-profile-company__text p {
    font-size: 13px;
    line-height: 1.65;
  }

  .about-profile-company__media-stats,
  .about-profile-strength__features,
  .about-profile-strength__partners {
    grid-template-columns: 1fr 1fr;
  }

  .about-profile-company__numbers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .about-profile-company__numbers article {
    flex: initial;
    min-height: 72px;
    padding: 10px 8px;
  }

  .about-profile-video-card__trigger {
    width: 64px;
    height: 64px;
  }

  .about-profile-video-card__trigger span {
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 16px;
  }

  .about-profile-section-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-profile-company__heading h2,
  .about-profile-section-bar h2,
  .about-profile-cta__copy h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
  }

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

  .about-profile-production__arrow {
    display: none;
  }

  .about-profile-production__track {
    width: max-content;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .about-profile-production__card {
    flex: 0 0 min(84vw, 280px);
    scroll-snap-align: start;
  }

  .about-profile-production__card::after {
    bottom: 48px;
  }

  .about-profile-network__grid {
    padding-top: 20px;
    padding-bottom: 18px;
  }

  .about-profile-cta__copy {
    min-height: 0;
    padding: 24px 20px;
  }

  .about-profile-cta__copy .button {
    min-width: 0;
    width: 100%;
  }

  .about-profile-cta__image-wrap img {
    min-height: 164px;
  }
}

@media (max-width: 520px) {
  .about-profile-manufacturing__list {
    grid-template-columns: 1fr;
  }

  .about-profile-manufacturing__item {
    padding: 24px 18px;
    border-left: 0;
    border-top: 1px solid #e1e1e1;
  }

  .about-profile-manufacturing__item:first-child {
    border-top: 0;
  }

  .about-profile-company__media,
  .about-profile-video-card,
  .about-profile-video-card__media {
    width: 100%;
    max-width: none;
  }

  .about-profile-company__media {
    margin-left: 0;
  }

  .about-profile-why-us__card {
    border-radius: 20px;
    padding: 14px;
  }

  .about-profile-why-us__media-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .about-profile-why-us__closing {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.65;
  }

  .about-profile-company__copy--home .section-label {
    margin-bottom: 12px;
  }

  .about-profile-company__text p {
    font-size: 13px;
    line-height: 1.7;
  }

  .about-profile-company__media-stats,
  .about-profile-strength__features,
  .about-profile-strength__partners {
    grid-template-columns: 1fr;
  }

  .about-profile-network__grid {
    gap: 18px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .about-profile-network__copy p {
    font-size: 13px;
    line-height: 1.7;
  }

  .about-profile-network__highlights {
    margin-top: 16px;
  }

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

  .about-profile-company__numbers article {
    min-height: 78px;
    padding: 10px 8px;
  }

  .about-profile-page .about-profile-company__numbers strong {
    font-size: 18px;
  }

  .about-profile-page .about-profile-company__numbers span {
    font-size: 13px;
  }

  .about-profile-hero__stats {
    gap: 12px;
  }

  .about-profile-hero__stats article {
    max-width: none;
  }

  .about-profile-company__copy h2 {
    font-size: 30px;
  }

  .about-profile-production__card {
    flex-basis: min(88vw, 246px);
  }
}

@media (max-width: 480px) {
  .about-profile-company__copy--home h2,
  .about-profile-process-flow__intro h2,
  .about-profile-support-flow__intro h2,
  .about-profile-manufacturing__intro h2,
  .about-profile-section-bar h2,
  .about-profile-production__header h2,
  .about-profile-why-us__intro h2 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
  }

  .about-profile-company__copy--home h2 span + span,
  .about-profile-manufacturing__intro h2 span + span,
  .about-profile-support-flow__intro h2 span + span,
  .about-profile-process-flow__intro h2 span + span,
  .about-profile-why-us__intro h2 > span + span {
    padding-left: 36px;
  }
}
