.services-page {
  --services-header-offset: 118px;
  background: #ffffff;
  color: #334155;
}

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

.cooperation-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

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

.cooperation-kicker--light {
  color: #ffb08a;
}

.cooperation-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.65fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 54px;
}

.cooperation-heading h2,
.cooperation-advantages__copy h2 {
  margin-top: 16px;
  color: #0f1b31;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
}

.cooperation-heading > p,
.cooperation-heading--center > p,
.cooperation-advantages__copy > p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.75;
}

.cooperation-heading--center {
  display: block;
  max-width: 860px;
  margin-right: auto;
  margin-bottom: 54px;
  margin-left: auto;
  text-align: center;
}

.cooperation-heading--center .cooperation-kicker {
  justify-content: center;
}

.cooperation-heading--center .cooperation-kicker::after {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

.cooperation-heading--center > p {
  margin-top: 18px;
}

.cooperation-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--color-primary);
  border-radius: 5px;
  background: var(--color-primary);
  padding: 0 22px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background-color .24s ease, border-color .24s ease, color .24s ease;
}

.cooperation-button:hover {
  border-color: var(--color-primary-dark);
  background: var(--color-primary-dark);
}

.cooperation-button--outline {
  border-color: rgba(255,255,255,.5);
  background: transparent;
}

.cooperation-button--outline:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,.1);
}

.cooperation-button .material-symbols-outlined {
  font-size: 18px;
}

.services-page.is-enhanced [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1);
}

.services-page.is-enhanced [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cooperation-hero {
  position: relative;
  min-height: 730px;
  overflow: hidden;
  background: #071426;
  padding-top: var(--services-header-offset);
}

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

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

.cooperation-hero__overlay {
  background:
    linear-gradient(90deg, rgba(5,15,30,.96) 0%, rgba(5,15,30,.88) 43%, rgba(5,15,30,.42) 72%, rgba(5,15,30,.22) 100%),
    linear-gradient(180deg, rgba(5,15,30,.16), rgba(5,15,30,.82));
}

.cooperation-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(730px - var(--services-header-offset));
  flex-direction: column;
  justify-content: center;
  padding-top: 36px;
  padding-bottom: 36px;
}

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

.cooperation-breadcrumb a {
  color: inherit;
}

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

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

.cooperation-hero__copy {
  max-width: 780px;
}

.cooperation-hero h1 {
  max-width: 780px;
  margin-top: 20px;
  color: #ffffff;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 58px;
  font-weight: 800;
  line-height: 1.04;
}

.cooperation-hero__copy > p {
  max-width: 710px;
  margin-top: 24px;
  color: rgba(255,255,255,.76);
  font-size: 17px;
  line-height: 1.72;
}

.cooperation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.cooperation-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 780px;
  margin-top: 54px;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.cooperation-hero__facts > div {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 0;
}

.cooperation-hero__facts > div + div {
  border-left: 1px solid rgba(255,255,255,.18);
  padding-left: 22px;
}

.cooperation-hero__facts strong {
  color: #ffffff;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.cooperation-hero__facts span {
  color: rgba(255,255,255,.66);
  font-size: 12px;
  line-height: 1.35;
}

.cooperation-paper {
  position: relative;
  background-color: #fafbfc;
  background-image: linear-gradient(rgba(255,255,255,.78), rgba(255,255,255,.78)), url("../images/cooperation/ppt-texture.jpg");
  background-position: center bottom;
  background-size: cover;
}

.cooperation-models,
.cooperation-operations,
.cooperation-future {
  position: relative;
}

.cooperation-anchor-alias {
  position: absolute;
  top: 0;
  left: 0;
}

.cooperation-models {
  padding: 112px 0 120px;
}

.cooperation-models__rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.cooperation-models__rail::before {
  content: "";
  position: absolute;
  top: 52%;
  right: -24px;
  left: -24px;
  height: 118px;
  background: linear-gradient(90deg, rgba(244,88,24,.06), rgba(244,88,24,.25), rgba(244,88,24,.06));
  clip-path: polygon(0 50%, 8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%);
  transform: translateY(-50%);
}

.cooperation-model {
  position: relative;
  z-index: 1;
  min-height: 360px;
  border: 1px solid #f07a43;
  border-radius: 6px;
  background: rgba(255,255,255,.95);
  padding: 34px 34px 28px;
}

.cooperation-model__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cooperation-model__top > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #fff2eb;
  color: var(--color-primary);
  font-size: 24px;
}

.cooperation-model__top b {
  color: rgba(244,88,24,.18);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.cooperation-model h3 {
  margin-top: 32px;
  color: #122037;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.18;
}

.cooperation-model p {
  margin-top: 18px;
  color: #637188;
  font-size: 15px;
  line-height: 1.72;
}

.cooperation-model__tag {
  position: absolute;
  right: 34px;
  bottom: 28px;
  left: 34px;
  border-top: 1px solid #e4e8ee;
  padding-top: 15px;
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.cooperation-advantages {
  padding: 118px 0;
  background: #ffffff;
}

.cooperation-advantages__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, .72fr);
  gap: 90px;
  align-items: center;
}

.cooperation-advantages__copy > p {
  max-width: 720px;
  margin-top: 20px;
}

.cooperation-benefits {
  margin-top: 42px;
  border-top: 1px solid #dfe4eb;
}

.cooperation-benefits > div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid #dfe4eb;
  padding: 24px 0;
}

.cooperation-benefits > div > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: #fff0e8;
  color: var(--color-primary);
  font-size: 22px;
}

.cooperation-benefits h3 {
  color: #162238;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.cooperation-benefits p {
  margin-top: 7px;
  color: #68768a;
  font-size: 14px;
  line-height: 1.65;
}

.cooperation-advantages__visual {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 6px;
  background: #0a172b;
}

.cooperation-advantages__visual img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: center 42%;
}

.cooperation-advantages__visual::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(180deg, transparent, rgba(4,13,26,.92));
}

.cooperation-advantages__visual figcaption {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 28px;
  left: 30px;
}

.cooperation-advantages__visual figcaption span {
  color: #ff9a68;
  font-size: 10px;
  font-weight: 800;
}

.cooperation-advantages__visual figcaption strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 20px;
  line-height: 1.35;
}

.cooperation-operations {
  overflow: hidden;
  padding: 112px 0 116px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(120deg, #071326, #10213b);
  background-size: 72px 72px, 72px 72px, auto;
}

.cooperation-operations .cooperation-heading h2,
.cooperation-operations .cooperation-heading > p {
  color: #ffffff;
}

.cooperation-operations .cooperation-heading > p {
  color: rgba(255,255,255,.62);
}

.cooperation-operations__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.cooperation-operations__columns article {
  position: relative;
  min-height: 430px;
  padding: 44px 50px 42px 0;
}

.cooperation-operations__columns article + article {
  border-left: 1px solid rgba(255,255,255,.18);
  padding-right: 0;
  padding-left: 50px;
}

.cooperation-operations__icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255,154,104,.5);
  border-radius: 50%;
  color: #ff9a68;
}

.cooperation-operations__columns small {
  display: block;
  margin-top: 24px;
  color: #ff9a68;
  font-size: 10px;
  font-weight: 800;
}

.cooperation-operations__columns h3 {
  margin-top: 10px;
  color: #ffffff;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.cooperation-operations__columns p {
  max-width: 560px;
  margin-top: 16px;
  color: rgba(255,255,255,.65);
  font-size: 15px;
  line-height: 1.68;
}

.cooperation-operations__columns ul {
  margin-top: 24px;
}

.cooperation-operations__columns li {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 12px 0 12px 18px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.5;
}

.cooperation-operations__columns li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

.supplier-rights {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 46px;
}

.supplier-rights > div {
  min-width: 0;
  border-left: 1px solid rgba(255,255,255,.14);
  padding: 10px 24px;
}

.supplier-rights > div:last-child {
  border-right: 1px solid rgba(255,255,255,.14);
}

.supplier-rights .material-symbols-outlined {
  color: #ff8c55;
  font-size: 24px;
}

.supplier-rights strong,
.supplier-rights small {
  display: block;
}

.supplier-rights strong {
  margin-top: 14px;
  color: #ffffff;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 16px;
}

.supplier-rights small {
  margin-top: 8px;
  color: rgba(255,255,255,.52);
  font-size: 11px;
  line-height: 1.5;
}

.cooperation-entry {
  padding: 114px 0 122px;
}

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

.cooperation-entry__grid article {
  overflow: hidden;
  border: 1px solid #dfe4ea;
  border-radius: 6px;
  background: rgba(255,255,255,.96);
}

.cooperation-entry__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #edf2f6;
}

.cooperation-entry__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}

.cooperation-entry__grid article:hover .cooperation-entry__media img {
  transform: scale(1.035);
}

.cooperation-entry__media > span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.cooperation-entry__body {
  position: relative;
  min-height: 265px;
  padding: 32px 30px 28px;
}

.cooperation-entry__icon {
  position: absolute;
  top: -24px;
  right: 28px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: #fff0e8;
  color: var(--color-primary);
}

.cooperation-entry__body h3 {
  color: #132037;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.cooperation-entry__body p {
  margin-top: 14px;
  color: #66758a;
  font-size: 14px;
  line-height: 1.72;
}

.cooperation-entry__body small {
  position: absolute;
  right: 30px;
  bottom: 26px;
  left: 30px;
  border-top: 1px solid #e1e6ec;
  padding-top: 14px;
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 800;
}

.cooperation-future {
  padding: 112px 0 118px;
  background: #ffffff;
}

.cooperation-future__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
}

.cooperation-future__track::before {
  content: "";
  position: absolute;
  top: 58px;
  right: 5%;
  left: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f05a21 12%, #f05a21 88%, transparent);
}

.cooperation-future__track > div {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cooperation-future__track b {
  display: grid;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  place-items: center;
  border: 1px solid #f28a59;
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-primary);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.cooperation-future__track span {
  display: block;
  margin-top: 20px;
  color: #26354b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.cooperation-future__statement {
  margin-top: 72px;
  border-top: 1px solid #dce2e9;
  padding-top: 48px;
  text-align: center;
}

.cooperation-future__statement > span {
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 800;
}

.cooperation-future__statement h3 {
  max-width: 980px;
  margin: 14px auto 30px;
  color: #102039;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.14;
}

@media (max-width: 1180px) {
  .cooperation-hero h1 { font-size: 50px; }
  .cooperation-heading { gap: 40px; }
  .cooperation-advantages__layout { gap: 52px; }
  .cooperation-model { padding-right: 26px; padding-left: 26px; }
  .supplier-rights { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px 0; }
  .supplier-rights > div:nth-child(4) { border-left: 1px solid rgba(255,255,255,.14); }
  .cooperation-future__track { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px 24px; }
  .cooperation-future__track::before { display: none; }
}

@media (max-width: 900px) {
  .services-page { --services-header-offset: 88px; }
  .cooperation-container { padding-right: 20px; padding-left: 20px; }
  .cooperation-heading { display: block; }
  .cooperation-heading > p { margin-top: 18px; }
  .cooperation-models__rail { grid-template-columns: 1fr; }
  .cooperation-models__rail::before { display: none; }
  .cooperation-model { min-height: 310px; }
  .cooperation-advantages__layout { grid-template-columns: 1fr; }
  .cooperation-advantages__visual { min-height: 520px; }
  .cooperation-advantages__visual img { height: 520px; }
  .cooperation-operations__columns { grid-template-columns: 1fr; }
  .cooperation-operations__columns article { min-height: 0; padding: 38px 0; }
  .cooperation-operations__columns article + article { border-top: 1px solid rgba(255,255,255,.18); border-left: 0; padding-left: 0; }
  .cooperation-entry__grid { grid-template-columns: 1fr; }
  .cooperation-entry__grid article { display: grid; grid-template-columns: minmax(280px, .9fr) 1fr; }
  .cooperation-entry__media { height: 100%; aspect-ratio: auto; }
  .cooperation-entry__body { min-height: 290px; }
}

@media (max-width: 640px) {
  .cooperation-container { padding-right: 16px; padding-left: 16px; }
  .cooperation-heading h2,
  .cooperation-advantages__copy h2 { font-size: 32px; }
  .cooperation-heading--center { text-align: left; }
  .cooperation-heading--center .cooperation-kicker { justify-content: flex-start; }
  .cooperation-heading--center .cooperation-kicker::after { display: none; }
  .cooperation-hero { min-height: 690px; }
  .cooperation-hero__content {
    min-height: calc(690px - var(--services-header-offset));
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .cooperation-hero__overlay { background: linear-gradient(90deg, rgba(5,15,30,.94), rgba(5,15,30,.7)); }
  .cooperation-hero h1 { font-size: 40px; }
  .cooperation-hero__copy > p { font-size: 15px; }
  .cooperation-breadcrumb { margin-bottom: 30px; }
  .cooperation-actions { flex-direction: column; align-items: stretch; }
  .cooperation-hero__facts { grid-template-columns: 1fr; margin-top: 36px; }
  .cooperation-hero__facts > div { min-height: 52px; padding: 10px 0; }
  .cooperation-hero__facts > div + div { border-top: 1px solid rgba(255,255,255,.16); border-left: 0; padding-left: 0; }
  .cooperation-models,
  .cooperation-advantages,
  .cooperation-operations,
  .cooperation-entry,
  .cooperation-future { padding-top: 82px; padding-bottom: 86px; }
  .cooperation-model { min-height: 340px; padding: 28px 24px; }
  .cooperation-model__tag { right: 24px; left: 24px; }
  .cooperation-advantages__visual,
  .cooperation-advantages__visual img { min-height: 460px; height: 460px; }
  .supplier-rights { grid-template-columns: 1fr; gap: 0; }
  .supplier-rights > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); padding: 20px 0; }
  .supplier-rights > div:last-child { border-right: 0; }
  .cooperation-entry__grid { gap: 14px; }
  .cooperation-entry__grid article {
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(108px, 34%) minmax(0, 1fr);
    align-items: stretch;
  }
  .cooperation-entry__media {
    width: 100%;
    height: 100%;
    min-height: 184px;
    aspect-ratio: auto;
  }
  .cooperation-entry__media > span {
    top: 10px;
    left: 10px;
    width: 34px;
    height: 34px;
    font-size: 12px;
  }
  .cooperation-entry__body {
    display: flex;
    min-width: 0;
    min-height: 184px;
    flex-direction: column;
    padding: 18px 14px 14px;
  }
  .cooperation-entry__icon {
    position: static;
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    border-width: 0;
  }
  .cooperation-entry__icon .material-symbols-outlined { font-size: 18px; }
  .cooperation-entry__body h3 { font-size: 17px; line-height: 1.25; }
  .cooperation-entry__body p {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.5;
  }
  .cooperation-entry__body small {
    position: static;
    display: block;
    margin-top: auto;
    padding-top: 10px;
    font-size: 8px;
  }
  .cooperation-future__track { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 14px; }
  .cooperation-future__track b { width: 68px; height: 68px; }
  .cooperation-future__statement h3 { font-size: 34px; }
}

@media (max-width: 480px) {
  .services-page { --services-header-offset: 72px; }
}

@media (prefers-reduced-motion: reduce) {
  .services-page.is-enhanced [data-reveal],
  .cooperation-entry__media img { opacity: 1; transform: none; transition: none; }
}
