
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #001f5b;
  color: #fff;
  width: 100%;
  overflow-x: hidden;
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
}


.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 30, 100, 0.72) 0%,
    rgba(0, 40, 130, 0.55) 40%,
    rgba(0, 20, 80, 0.80) 100%
  );
}


.header {
  position: relative;
  z-index: 10;
  width: min(calc(100% - 300px), 766px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 24px;
}

.header__logo .logo-img {
  height: 64px;
  width: auto;
  display: block;
}

.header__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.header__email {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.header__email:hover {
  color: #fff;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.header__nav a:hover {
  opacity: 0.75;
}


.hero__content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px 20px;
}

.hero__title {
  font-size: clamp(96px, 14.5vw, 176px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 0.9;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 4px 40px rgba(0,0,0,0.3);
}

.hero__subtitle {
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-top: 20px;
  line-height: 1.5;
}


.hero__stats {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 48px 60px;
  background: transparent;
}

.stat {
  flex: 1;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.stat:last-child {
  border-right: none;
}

.stat__number {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat__label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
  letter-spacing: 0.02em;
}


@media (max-width: 900px) {
  .header {
    width: 100%;
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
  }

  .header__nav {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero__stats {
    flex-wrap: wrap;
    padding: 32px 20px;
    gap: 24px;
  }

  .stat {
    border-right: none;
    min-width: 140px;
  }
}

@media (max-width: 540px) {
  .hero__title {
    font-size: 72px;
  }

  .hero__stats {
    gap: 16px;
  }

  .stat {
    min-width: 120px;
  }
}

.about__white-top {
  display: none;
}


.assortment {
  background: #f7f9fc;
  color: #2A4BA1;
  padding: 54px 60px 70px;
}

.assortment__inner {
  max-width: 1580px;
  margin: 0 auto;
}

.assortment__tabs {
  width: min(870px, 100%);
  height: 40px;
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr 1.72fr;
  margin: 0 auto 94px;
  overflow: hidden;
  border: 1px solid #2A4BA1;
  border-radius: 999px;
  background: #fff;
}

.assortment__tab {
  border: 0;
  border-right: 1px solid rgba(42, 75, 161, 0.35);
  background: transparent;
  color: #2A4BA1;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  overflow: hidden;
  cursor: pointer;
}

.assortment__tab:last-child {
  border-right: 0;
}

.assortment__tab.is-active {
  background: #2A4BA1;
  color: #fff;
}

.assortment__layout {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(420px, 42%);
  align-items: center;
  gap: 38px;
}

.assortment__title {
  font-size: clamp(50px, 4.4vw, 68px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}

.assortment__products {
  --assortment-card-height: 258px;
  min-height: 258px;
  max-width: 700px;
  position: relative;
}

.assortment__slider {
  position: relative;
  width: 100%;
}

.assortment__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 220px;
  gap: 12px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 72px 10px;
}

.assortment__track::-webkit-scrollbar {
  display: none;
}

.assortment__product {
  height: var(--assortment-card-height);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 32px 14px 22px;
  border: 1px solid transparent;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(42, 75, 161, 0.06);
  overflow: hidden;
  font-family: inherit;
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.assortment__product:hover,
.assortment__product.is-active {
  border-color: rgba(42, 75, 161, 0.35);
  box-shadow: 0 12px 28px rgba(42, 75, 161, 0.14);
}

.assortment__product:active {
  transform: translateY(1px);
}

.assortment__product-image-wrap {
  width: 100%;
  height: 158px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.assortment__product-img {
  max-width: 124px;
  max-height: 142px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.assortment__product-img.is-missing {
  display: none;
}

.assortment__product-title {
  width: 100%;
  min-height: 54px;
  color: #2A4BA1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.12;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.assortment__arrow {
  position: absolute;
  top: calc(var(--assortment-card-height) / 2);
  z-index: 3;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2A4BA1;
  border-radius: 50%;
  background: #fff;
  color: #2A4BA1;
  box-shadow: 0 8px 20px rgba(42, 75, 161, 0.14);
  cursor: pointer;
  transform: translateY(-50%);
}

.assortment__arrow--prev {
  left: 18px;
}

.assortment__arrow--next {
  right: 18px;
}

.assortment__arrow span {
  display: block;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-1px);
}

.assortment__loading,
.assortment__empty {
  grid-column: 1 / -1;
  align-self: center;
  color: rgba(42, 75, 161, 0.72);
  font-size: 18px;
  font-weight: 600;
}

.assortment__packs {
  margin-top: 50px;
  padding-left: 205px;
}

.assortment__packs img {
  width: 310px;
  max-width: 100%;
  height: auto;
  display: block;
}

.assortment__right {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.assortment__halo {
  position: absolute;
  width: 497.681px;
  height: 497.681px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #2A4BA1 0 42%, transparent 43%),
    repeating-radial-gradient(circle at 50% 50%, rgba(42, 75, 161, 0.08) 0 18px, rgba(42, 75, 161, 0.03) 18px 36px);
}

.assortment__main-img {
  position: relative;
  z-index: 1;
  width: 497.681px;
  height: 497.681px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.assortment__main-img.is-changing {
  opacity: 0;
  transform: scale(0.97);
}

@media (max-width: 1200px) {
  .assortment__tabs {
    height: 34px;
    margin-bottom: 64px;
  }

  .assortment__tab {
    font-size: 11px;
  }

  .assortment__title {
    font-size: clamp(38px, 4.7vw, 50px);
  }

  .assortment__products {
    --assortment-card-height: 190px;
    min-height: 190px;
    max-width: 560px;
  }

  .assortment__track {
    grid-auto-columns: 178px;
    padding-left: 54px;
    padding-right: 54px;
  }

  .assortment__product {
    height: var(--assortment-card-height);
    padding: 18px 12px 16px;
    border-radius: 18px;
  }

  .assortment__product-image-wrap {
    height: 112px;
  }

  .assortment__product-img {
    max-width: 92px;
    max-height: 106px;
  }

  .assortment__product-title {
    font-size: 11px;
    min-height: 38px;
  }

  .assortment__packs {
    padding-left: 145px;
  }

  .assortment__packs img {
    width: 250px;
  }

  .assortment__right {
    min-height: 460px;
  }

  .assortment__halo {
    width: 460px;
    height: 460px;
  }

  .assortment__main-img {
    max-width: 360px;
    max-height: 420px;
  }
}

@media (max-width: 768px) {
  .assortment {
    padding: 44px 24px 50px;
    overflow: hidden;
  }

  .assortment__tabs {
    height: auto;
    grid-template-columns: 1fr 1fr;
    border-radius: 14px;
    margin-bottom: 34px;
  }

  .assortment__tab {
    min-height: 34px;
    border-bottom: 1px solid rgba(42, 75, 161, 0.35);
    font-size: 10px;
  }

  .assortment__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .assortment__products {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
    margin: 0 auto;
    overflow: hidden;
  }

  .assortment__slider {
    width: 100%;
    overflow: hidden;
  }

  .assortment__track {
    grid-auto-columns: minmax(176px, calc(100vw - 144px));
    padding-left: 40px;
    padding-right: 40px;
  }

  .assortment__arrow--prev {
    left: 4px;
  }

  .assortment__arrow--next {
    right: 4px;
  }

  .assortment__packs {
    padding-left: 0;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .assortment__products {
    width: calc(100vw - 48px);
  }

  .assortment__right {
    min-height: 260px;
  }

  .assortment__halo {
    width: 260px;
    height: 260px;
  }
}


.about {
  position: relative;
  background: #fff;
  overflow: hidden;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  z-index: 1;
}

.about__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  mix-blend-mode: multiply;
}

.about__overlay {
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 45, 130, 0.04) 0%, rgba(0, 45, 130, 0.16) 100%);
}

.about__inner {
  position: relative;
  z-index: 10;
  max-width: 760px;
  margin: 0 auto;
  padding: 196px 0 86px;
}

.about__title {
  font-size: 38px;
  font-weight: 900;
  text-align: center;
  color: #fff;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.about__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 72px;
}

.about__col p {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.26;
  color: #fff;
  text-align: justify;
}


.about__banner {
  border-top: 0;
  padding-top: 0;
  width: min(1260px, calc(100vw - 80px));
  margin-left: 50%;
  transform: translateX(-50%);
}

.about__banner-title {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: 0;
}

.about__banner-sub {
  max-width: 620px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.25;
  text-align: center;
}

.about__banner-sub strong {
  font-weight: 700;
  color: #fff;
}


@media (max-width: 768px) {
  .about__cols {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

  .about__inner {
    padding: 48px 24px 60px;
  }

  .about__banner-title {
    font-size: 24px;
  }

  .about__banner {
    width: 100%;
    margin-left: 0;
    transform: none;
  }
}

.why {
  background: #f7f9fc; 
  padding: 48px 60px 50px;
}

.why__inner {
  max-width: 1480px;
  margin: 0 auto;
}

.why__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 50px;
  font-weight: 800;
  font-style: normal;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #2A4BA1;
  margin-bottom: 42px;
}


.why__list {
  display: flex;
  justify-content: space-between;
  gap: 0;
  position: relative; 
}


.why__list::before {
  content: '';
  position: absolute;
  top: 63px;
  left: 40px;
  right: 40px;
  height: 4px;
  background: #EDF2F8;
  z-index: 0;
}

.why__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}


.why__icon-wrap {
  position: relative;
  z-index: 1; 
  margin-bottom: 18px;
}

.why__icon {
  width: 126px;
  height: 126px;
  object-fit: contain;
  display: block;
}


.why__icon-wrap--iso {
  position: relative;
}

.why__iso-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: auto;
  object-fit: contain;
}


.why__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.12;
  color: #2A4BA1;
  max-width: 220px;
}


@media (max-width: 768px) {
  .why__title,
  .partners__title {
    font-size: 34px;
  }

  .why__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .why__list::before {
    display: none; 
  }

  .why__item {
    flex: 0 0 calc(50% - 40px);
  }

  .why__text {
    font-size: 14px;
    line-height: 1.35;
    max-width: 220px;
  }
}

@media (max-width: 540px) {
  .why__title,
  .partners__title {
    font-size: 28px;
  }

  .why {
    padding: 48px 24px;
  }

  .why__item {
    flex: 0 0 100%;
    margin-bottom: 24px;
  }

  .why__item:last-child {
    margin-bottom: 0;
  }

  .why__icon {
    width: 110px;
    height: 110px;
  }
}


.products {
  background: #f7f9fc;
  overflow: hidden;
  margin-top: 0;
}

.products__inner {
  width: 100%;
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(80px, 47vw) minmax(0, 1fr);
  align-items: center;
  position: relative;
}


.products__text {
  max-width: 390px;
  margin-left: clamp(82px, 9.2vw, 168px);
  transform: translateY(18px);
  position: relative;
  z-index: 2;
}

.products__text p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.18;
  color: #1849b1;
}


.products__visual {
  position: relative;
  min-height: 360px;
  align-self: stretch;
}

.products__circle {
  display: none;
}

.products__img {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -170px;
  width: min(62vw, 980px);
  height: auto;
  transform: translateY(-50%);
  object-fit: contain;
}


@media (max-width: 768px) {
  .products {
    margin-top: 0;
  }

  .products__inner {
    width: 100%;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 24px 0;
    text-align: center;
  }

  .products__text {
    max-width: 560px;
    margin: 0 auto;
  }

  .products__visual {
    min-height: clamp(280px, 62vw, 390px);
    width: calc(100% + 48px);
    margin-left: -24px;
    overflow: hidden;
  }

  .products__img {
    right: 44%;
    top: auto;
    bottom: 0;
    width: min(122vw, 760px);
    transform: translateX(50%);
  }
}

@media (max-width: 540px) {
  .products__inner {
    padding-top: 40px;
  }

  .products__text p {
    font-size: 13px;
    line-height: 1.35;
  }

  .products__visual {
    min-height: 330px;
  }

  .products__img {
    right: 38%;
    width: 154vw;
  }
}


.production {
  background: #f7f9fc;
  padding: 54px 60px 86px;
}

.production__card {
  position: relative;
  width: min(100%, 1610px);
  aspect-ratio: 805 / 368;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 52px;
  color: #fff;
}

.production__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.production__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 36, 96, 0.03) 0%, rgba(0, 92, 201, 0.42) 54%, rgba(0, 130, 235, 0.95) 100%),
    linear-gradient(180deg, rgba(0, 43, 110, 0.02) 0%, rgba(0, 59, 140, 0.34) 100%);
}

.production__content {
  position: absolute;
  z-index: 1;
  top: 17%;
  right: 7%;
  width: min(40%, 520px);
}

.production__title {
  font-size: clamp(30px, 3.5vw, 66px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: clamp(16px, 1.8vw, 30px);
  text-transform: uppercase;
}

.production__features {
  display: grid;
  gap: clamp(12px, 1.2vw, 22px);
  margin: 0 0 clamp(22px, 2.3vw, 42px);
  padding: 0;
  list-style: none;
}

.production__features li {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.2vw, 18px);
  font-size: clamp(16px, 1.55vw, 31px);
  font-weight: 500;
  line-height: 1.1;
}

.production__check {
  width: clamp(28px, 3vw, 54px);
  height: clamp(28px, 3vw, 54px);
  flex: 0 0 clamp(28px, 3vw, 54px);
  border-radius: 50%;
  background: #fff;
  position: relative;
}

.production__check::after {
  content: '';
  position: absolute;
  left: 31%;
  top: 28%;
  width: 34%;
  height: 20%;
  border-left: clamp(3px, 0.28vw, 5px) solid #2A4BA1;
  border-bottom: clamp(3px, 0.28vw, 5px) solid #2A4BA1;
  transform: rotate(-45deg);
}

.production__thumbs {
  width: min(100%, 620px);
  height: auto;
  display: block;
  margin-bottom: clamp(14px, 1.6vw, 28px);
}

.production__button {
  width: 77%;
  min-height: clamp(24px, 2.6vw, 42px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #2A4BA1;
  text-decoration: none;
  font-family: inherit;
  font-size: clamp(9px, 0.72vw, 15px);
  font-weight: 700;
  cursor: pointer;
}

.production__arrow {
  width: clamp(22px, 2.2vw, 36px);
  height: clamp(22px, 2.2vw, 36px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #2A4BA1;
  font-size: clamp(14px, 1.4vw, 22px);
  line-height: 1;
  box-shadow: 0 0 0 2px #2A4BA1 inset;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 19, 58, 0.78);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  border-radius: 18px;
  background: #001f5b;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.video-modal__player {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 18px;
  background: #000;
}

.video-modal__close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #2A4BA1;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

body.video-modal-open {
  overflow: hidden;
}


@media (max-width: 768px) {
  .production {
    padding: 56px 24px 70px;
  }

  .production__card {
    min-height: 440px;
    aspect-ratio: auto;
    border-radius: 32px;
  }

  .production__content {
    top: auto;
    left: 32px;
    right: 32px;
    bottom: 32px;
    width: auto;
  }

  .production__card::after {
    background:
      linear-gradient(180deg, rgba(0, 53, 126, 0.08) 0%, rgba(0, 72, 170, 0.92) 100%),
      linear-gradient(90deg, rgba(0, 50, 130, 0.06) 0%, rgba(0, 122, 225, 0.7) 100%);
  }

  .production__title {
    margin-bottom: 22px;
  }

  .production__features {
    gap: 14px;
    margin-bottom: 24px;
  }

  .production__check {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .production__check::after {
    left: 12px;
    top: 10px;
    width: 13px;
    height: 8px;
    border-left-width: 4px;
    border-bottom-width: 4px;
  }
}

@media (max-width: 540px) {
  .production {
    padding: 44px 18px 56px;
  }

  .production__card {
    min-height: 520px;
    border-radius: 24px;
  }

  .production__content {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }

  .production__features li {
    font-size: 15px;
  }

  .production__thumbs {
    margin-bottom: 18px;
  }

  .production__button {
    min-height: 40px;
    padding-left: 14px;
  }
}


.partners {
  background: #f7f9fc;
  padding: 72px 60px 118px;
}

.partners__inner {
  max-width: 980px;
  margin: 0 auto;
}

.partners__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 50px;
  font-weight: 800;
  font-style: normal;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #2A4BA1;
  margin-bottom: 44px;
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  row-gap: 50px;
}

.partners__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #2A4BA1;
}

.partners__item:nth-child(1) { grid-column: 1 / span 3; }
.partners__item:nth-child(2) { grid-column: 4 / span 3; }
.partners__item:nth-child(3) { grid-column: 7 / span 3; }
.partners__item:nth-child(4) { grid-column: 10 / span 3; }
.partners__item:nth-child(5) { grid-column: 3 / span 3; }
.partners__item:nth-child(6) { grid-column: 6 / span 3; }
.partners__item:nth-child(7) { grid-column: 9 / span 3; }

.partners__item:not(:nth-child(4))::after {
  content: '';
  position: absolute;
  top: 72px;
  left: calc(50% + 73px);
  width: calc(100% - 146px);
  height: 4px;
  background: #EDF2F8;
  z-index: 0;
}

.partners__item:nth-child(7)::after {
  display: none;
}

.partners__item:nth-child(4)::after {
  display: none;
}

.partners__icon-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.partners__icon {
  width: 146px;
  height: 146px;
  object-fit: contain;
  display: block;
}

.partners__text {
  max-width: 172px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.18;
}


@media (max-width: 768px) {
  .partners {
    padding: 54px 24px 78px;
  }

  .partners__title {
    font-size: 34px;
  }

  .partners__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 26px;
  }

  .partners__item,
  .partners__item:nth-child(n) {
    grid-column: auto;
  }

  .partners__item::after,
  .partners__item:nth-child(n)::after {
    display: none;
  }

  .partners__icon {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 480px) {
  .partners__title {
    font-size: 28px;
  }

  .partners__grid {
    grid-template-columns: 1fr;
  }
}


.cooperation {
  background: #f7f9fc;
}

.cooperation__card {
  position: relative;
  min-height: 672px;
  overflow: hidden;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  color: #fff;
}

.cooperation__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.cooperation__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 57, 152, 0.05) 0%, rgba(10, 64, 161, 0.08) 44%, rgba(0, 43, 126, 0.2) 100%);
}

.cooperation__form {
  position: relative;
  z-index: 1;
  width: min(650px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 210px;
}

.cooperation__title {
  font-size: clamp(36px, 3.9vw, 54px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 29px;
}

.cooperation__field {
  height: 43px;
  display: flex;
  align-items: center;
  margin-bottom: 9px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  overflow: hidden;
}

.cooperation__field span {
  padding-left: 31px;
  font-size: 22px;
  font-weight: 400;
  pointer-events: none;
}

.cooperation__field input,
.cooperation__field textarea {
  min-width: 0;
  flex: 1;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 14px;
  padding: 0 24px;
}

.cooperation__field input::placeholder,
.cooperation__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.cooperation__field--phone {
  gap: 0;
}

.cooperation__phone-code {
  height: 100%;
  min-width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0 !important;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
}

.cooperation__field--phone input {
  padding-left: 12px;
  font-size: 22px;
}

.cooperation__field--comment {
  height: 102px;
  align-items: flex-start;
  border-radius: 19px;
  margin-bottom: 31px;
}

.cooperation__field--comment span {
  padding-top: 14px;
}

.cooperation__field--comment textarea {
  resize: none;
  padding-top: 14px;
  font-size: 22px;
}

.cooperation__button {
  width: 236px;
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  margin-left: auto;
  margin-right: 43px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #2A4BA1;
  font-family: inherit;
  font-size: 23px;
  font-weight: 800;
  cursor: pointer;
}

.cooperation__arrow {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  margin-right: -41px;
  border-radius: 50%;
  background: #fff;
  color: #2A4BA1;
  font-size: 34px;
  line-height: 1;
  box-shadow: 0 0 0 2px #2A4BA1 inset;
}

.footer {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 70px;
  background: #f7f9fc;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer a {
  color: #2A4BA1;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
}

.footer a:hover {
  opacity: 0.75;
}


@media (max-width: 768px) {
  .cooperation__card {
    min-height: 600px;
  }

  .cooperation__form {
    padding-top: 190px;
  }

  .cooperation__title {
    font-size: 40px;
    margin-bottom: 22px;
  }

  .cooperation__field {
    height: 38px;
  }

  .cooperation__field span,
  .cooperation__field--phone input,
  .cooperation__field--comment textarea {
    font-size: 16px;
  }

  .cooperation__field span {
    padding-left: 20px;
  }

  .cooperation__phone-code {
    min-width: 72px;
  }

  .cooperation__field--comment {
    height: 88px;
    border-radius: 16px;
  }

  .cooperation__button {
    width: 220px;
    min-height: 40px;
    margin-right: 28px;
    font-size: 18px;
  }

  .cooperation__arrow {
    width: 40px;
    height: 40px;
    margin-right: -36px;
    font-size: 30px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .cooperation__form {
    padding-top: 170px;
  }

  .cooperation__button {
    width: 100%;
    margin-right: 0;
  }

  .cooperation__arrow {
    margin-right: 0;
  }
}
