:root {
  /* --dark: #0c0c0c; */
  --dark: #000000;
  --black: #000000;

  --white: #ffffff;

  --orange: #f58220;

  --orange-dark: #b95500;

  --direction: row;

  --gap: 100px;

  --max-width: 1240px;

  --width: 50%;

  --padding-vert: 100px;
  --padding-horiz: 80px;

  --hover-transition: all 0.5s ease;
}

body {
}

* {
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

ul {
  list-style: none;
}

.section {
  box-sizing: border-box;
  padding-left: var(--padding-horiz);
  padding-right: var(--padding-horiz);
  padding-top: var(--padding-vert);
  padding-bottom: var(--padding-vert);
}

.section--dark {
  background: var(--dark);
}

.section--paggings {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section--hero {
  box-sizing: border-box;
  width: 100%;
  margin-top: 78px;
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 0px;
  padding-bottom: 0px;
  background: conic-gradient(
    from 190.83deg at 61.99% 84.96%,
    #990000 -28.14deg,
    #000000 46.05deg,
    #990000 115.9deg,
    #f19a43 199.36deg,
    #780000 225.79deg,
    #000000 276.87deg,
    #990000 331.86deg,
    #000000 406.05deg
  );
  color: var(--white);
}

.container-bg-milk {
  min-height: 400px;
  background: url(../img/milk.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.container {
  display: flex;
  flex-direction: var(--direction);
  justify-content: space-between;
  /* gap: var(--gap); */
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.container--padding-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.g100 {
  gap: 100px;
}

.column {
  width: 100%;
  max-width: var(--width);
  font-size: 20px;
  line-height: 120%;
}

.column-h2 {
  font-weight: 300;
  font-size: 68px;
  line-height: 90%;
  letter-spacing: -2.04px;
}

.column--padding {
  padding: 24px 28px;
}

.column--decor {
  position: relative;
  padding-top: 24px;
  padding-left: 28px;
  padding-right: 20px;
}

.column--decor::before {
  position: absolute;
  left: 0;
  top: 0;
  content: url(../img/angl_s.svg);
}

.column--decor::after {
  position: absolute;
  right: 0;
  bottom: 0;
  rotate: 180deg;
  content: url(../img/angl_s.svg);
}

.column-bottom {
  display: flex;
  align-items: flex-end;
  font-size: 17px;
}

.delimiter {
  position: relative;
  display: flex;
  height: 39px;
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  /* padding-left: var(--padding-horizontal);
  padding-right: var(--padding-horizontal); */
}

.delimiter-cross {
  text-align: center;
  background-image: url(../img/cross.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
}

.delimiter::before {
  position: absolute;
  left: 0;
  top: 0;
  content: url(../img/cross_left.svg);
}

.delimiter::after {
  position: absolute;
  right: 0;
  top: 0;
  content: url(../img/cross_right.svg);
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: black;
  color: white;

  z-index: 100;
}

.header__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1240px;
  height: 78px;
  background-color: black;
  color: white;
}

.header-logo__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 44px;
}

.header-logo {
}

.burger-wrap {
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.burger {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.burger-cross {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.burger-icon {
  display: block;
}

.off {
  display: none;
}

.burger .off {
  display: none;
}

.burger-icon .off {
  display: none;
}

.burger-cross-icon {
  display: block;
}

.mail-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  transform: var(--hover-transition);
}

.mail-wrap:hover {
  color: var(--orange-dark);
  transition: var(--hover-transition);
}

.mail-wrap:hover .mail {
  color: var(--orange-dark);
  transition: var(--hover-transition);
}

.mail {
  padding-left: 5px;
  color: var(--white);
}

.nav-wrap {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 0px;
  background-color: black;
  color: white;
  transition: height 0.8s ease;
}

.mail-wrap--mobile {
  display: none;
}

.active {
  height: 86px;
  border-top: 1px solid #676767;
  border-bottom: 1px solid #676767;
}

.nav-wrap .active {
  height: 86px;
  border-top: 1px solid #676767;
  border-bottom: 1px solid #676767;
  transition: height 0.8s ease;
}

.nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  background-color: black;
  color: white;
}

.nav-menu {
  display: flex;
  gap: 22px;
}

.nav-menu__item {
  font-family: "Inter", sans-serif;
  font-weight: 400;

  font-size: 14px;
  line-height: 120%;
  letter-spacing: -3%;

  color: var(--white);
  transition: var(--hover-transition);
}

.nav-menu__item--form {
  display: none;
}

.nav-menu__item:hover {
  color: var(--orange-dark);
  transition: var(--hover-transition);
}

.nav-button {
  width: fit-content;
  height: 36px;
  padding-top: 8px;
  padding-right: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
  border-radius: 2px;
  background: var(--orange);
  color: var(--white);
  transition: var(--hover-transition);
}

.nav-button:hover {
  background: var(--orange-dark);
  transition: var(--hover-transition);
}
/* / HERO / */

.hero {
  display: flex;
  flex-direction: var(--direction);
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  max-width: 1240px;
  height: 100%;

  margin-left: auto;
  margin-right: auto;

  z-index: 0;
}

.hero-header {
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 100%;
  max-width: 654px;

  padding-top: 114px;
  padding-bottom: 104px;
}

.hero-title {
  margin-bottom: 20px;
  font-family: "Suisse Intl";
  font-weight: 300;
  font-style: normal;
  font-size: 84px;
  line-height: 88%;
  letter-spacing: -4.2px;
}

.hero-text {
  margin-bottom: 40px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 94%;
  letter-spacing: -3%;
}

.hero-button {
  box-sizing: border-box;
  width: 187px;

  height: 36px;
  opacity: 1;
  padding-top: 8px;

  padding-bottom: 8px;

  border-radius: 2px;
  text-align: center;
  word-break: keep-all;
  background: var(--orange);
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 120%;
  letter-spacing: -3%;
  vertical-align: middle;
  color: var(--white);
  transition: var(--hover-transition);
}

.hero-button:hover {
  background: var(--orange-dark);
  transition: var(--hover-transition);
}

.hero-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 50%;
  height: 100%;
  max-width: 654px;
  max-height: 587px;
}

.hero-image img {
  display: flex;
  max-width: 654px;
  max-height: 587px;
  object-fit: scale-down;
}

/* / VIDEO / */

.video {
  gap: 100px;
}

.video-header {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-bottom: 62px;
}

.video-header::after {
  position: absolute;
  content: url(../img/angle.svg);
  left: 0;
  bottom: 20px;
}
.video-head {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 28px;
  padding-bottom: 28px;
  padding-left: 20px;

  background-color: var(--white);
  height: 88px;
  font-family: "Inter";
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: -5%;
  vertical-align: middle;
}

.video-head span {
  max-width: calc(100% - 56px);
}

.close-video {
  position: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
}

.video-title {
  padding-bottom: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 46px;
  line-height: 90%;
  letter-spacing: -1.38px;
  color: var(--white);
  word-wrap: break-word;
}

.video-text {
  display: flex;
  flex-direction: column;
  font:
    400 17px / 120% "Inter",
    sans-serif;
  letter-spacing: -0.03em;
  color: var(--white);
}

.video-text span {
  padding-bottom: 8px;
}

.video-text__list-item {
  width: fit-content;
  padding: 8px;
  margin-bottom: 4px;
  background: #3c3c3c;
  font-weight: 300;
}

.video-image {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 321px;
  background: url(../img/video.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
.video-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-container iframe {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1140 / 478; /* Сохраняем соотношение сторон */
}

.video-head {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 960px) {
  .nav-menu__item--form {
    display: block;
  }

  .video-container iframe {
    height: auto;
    max-height: 70vh;
  }

  .video-head {
    box-sizing: border-box;
    padding-top: 20px;
    padding-bottom: 12px;
    padding-left: 20px;
    height: 80px;
  }

  .video-head span {
    max-width: calc(100% - 56px);
    font-family: "Inter", sans-serif;
    font-weight: bold;
    font-size: 20px;
    font-style: normal;
    line-height: 120%;
    letter-spacing: -0.03em;
    vertical-align: middle;
  }
}

@media (max-width: 480px) {
  .video-container {
    max-width: 100%;
  }

  .video-container iframe {
    aspect-ratio: 375 / 209;
  }
}

.column--decor-2 {
  position: relative;
  padding-top: 32px;
}

.column--decor-2::after {
  position: absolute;
  content: url(../img/angle.svg);
  right: 0;
  top: -2px;
  rotate: 180deg;
}

.play {
  position: absolute;
  top: calc(50% - 53px);
  left: calc(50% - 53px);
  cursor: pointer;
  /* box-shadow: 6px 9px 24.2px 0px #00000080; */
}

.play .playCircle {
  transition: fill 0.2s ease;
  transition: var(--hover-transition);
}

.play:hover .playCircle {
  fill: var(--orange-dark);
  transition: var(--hover-transition);
}

/* / CARDS / */

.cards-title {
  margin-top: 16px;
  word-break: keep-all;
  overflow-wrap: break-word;
  max-width: 780px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 68px;
  line-height: 90%;
  letter-spacing: -2.04px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px 40px;
  justify-content: center;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  width: 100%;
  height: 406px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  cursor: pointer;
}

.card__header {
  position: relative;
  height: 312px;
  background: conic-gradient(
    from 180deg at 81.96% 21.31%,
    #ffffff -21.68deg,
    #eee7e2 103.96deg,
    #a31107 146.93deg,
    #f09842 272.64deg,
    #ffffff 338.32deg,
    #eee7e2 463.96deg
  );
  border-radius: 8px; /* опционально */
  overflow: hidden; /* важно для ограничения изображения */
}

.card__label {
  position: absolute;
  top: 12px;
  right: 12px;

  width: fit-content;
  height: 22px;
  border: 2px solid var(--white);
  border-radius: 2px;
  padding-top: 4px;
  padding-right: 8px;
  padding-bottom: 4px;
  padding-left: 8px;
  border-width: 1px;
  color: var(--white);

  font-weight: 300;

  font-size: 12px;
  line-height: 120%;
  letter-spacing: -3%;

  cursor: pointer;

  z-index: 2;
}

.card__badge {
  display: flex;
  justify-content: center;
  border-radius: 20px;
  background: #ffd29f;
  padding: 8px 16px;
  position: absolute;
  left: 8px;
  bottom: 8px;
  overflow: hidden;
  color: var(--Black, #000);
  text-align: center;
  font-variant-numeric: slashed-zero;
  font-feature-settings: "ss03" on;
  text-overflow: ellipsis;

  font-family: "Inter";
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 12.1px */
  letter-spacing: -0.22px;
  text-transform: uppercase;
}

.card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.card__title,
.card__text {
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.card__title {
  margin-top: 16px;
  font-size: 32px;

  line-height: 120%;
}

.card__text {
  margin-top: 8px;
  font-size: 14px;
  color: var(--black);
  line-height: 120%;
}

/* / MODAL / */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  background: #00000099;

  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: none;
}

.modal-overlay.active {
  display: flex;
}

.modal-window {
  /* padding-top: 70px;
  padding-bottom: 70px; */
}

.card-modal {
  position: relative;
  width: 100%;
  max-width: 820px;
  height: 100%;
  min-height: 95vh;
  max-height: 95vh;
  padding: 20px;
  border-radius: 2px;
  background-color: var(--white);
  overflow: hidden;
  padding-top: 70px;
  padding-bottom: 70px;
}

.card-modal__header {
  display: flex;
  justify-content: space-between;
  flex-shrink: 0;
}

/* .card-modal::-webkit-scrollbar {
  display: none;
} */

.card-modal__content {
  flex: 1;
  height: 100%;
  margin-top: 20px;
  overflow-y: auto;
  -ms-overflow-style: scrollbar;
  scrollbar-width: thin;
}

.card-modal__content::-webkit-scrollbar {
  width: 8px;
}
.card-modal__content::-webkit-scrollbar-track {
  background: transparent;
}
.card-modal__content::-webkit-scrollbar-thumb {
  background-color: #ef8018;
  border-radius: 4px;
}

.card-modal__wrap {
  display: flex;
  flex-direction: var(--direction);
  gap: 20px;
}

.card-modal__title {
  vertical-align: middle;
  padding-bottom: 24px;
  max-width: calc(100% - 56px);
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 32px;
  line-height: 94%;
  letter-spacing: -2%;
}

.card-modal__content-text {
  font-size: 14px;
}

tr {
  border-bottom: 1px solid var(--Neutral-2, #eaeef1);
}

td {
  width: 188px;
  border-bottom: 1px solid var(--Neutral-2, #eaeef1);
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  font-size: 14px;
  line-height: 120%;
  vertical-align: top;
}
.card-modal {
  position: relative;
  width: 100%;
  max-width: 820px;
  /* height: 660px; */

  padding: 20px;
  border-radius: 2px;
  background-color: var(--white);
}

.card-modal__content {
  overflow-y: auto;
  scrollbar-width: thin;
  -ms-overflow-style: none;
}

/* WebKit/Blink (Chrome, Safari, Edge) */
.card-modal__content::-webkit-scrollbar {
  padding-left: 2px;
  padding-right: 2px;
  width: 3px;
  height: 3px;
  border-radius: 20px;
}

/* Chrome, Safari, Edge */
.card-modal__content::-webkit-scrollbar {
  padding-left: 2px;
  padding-right: 2px;
  width: 3px;
}

.card-modal__content::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 20px;
}

/* Firefox */
.card-modal__content {
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}

.card-modal__content {
  height: 548px;
  margin-top: 0px;
}

.card-modal__content-table {
  padding-top: 20px;
}

@media (min-width: 1600px) {
  .card-modal {
    height: 680px;
    min-height: unset;
    max-height: unset;
  }

  .card-modal__content {
    height: 100%;
  }
}

.card-modal__wrap {
  display: flex;
  flex-direction: var(--direction);
  gap: 20px;
}

.card-modal__image {
  position: relative;
  display: flex;
  align-items: center;
  width: 271px;
  height: 528px;
  background: conic-gradient(
    from 180deg at 81.96% 21.31%,
    #ffffff -21.68deg,
    #eee7e2 103.96deg,
    #a31107 146.93deg,
    #f09842 272.64deg,
    #ffffff 338.32deg,
    #eee7e2 463.96deg
  );
}

.card-modal__image img {
  max-width: min-content;
  height: fit-content;
  max-width: 271px;
}

.card-modal__label {
  position: absolute;
  top: 8px;
  right: 8px;
  width: auto;
  height: 22;
  gap: 2px;
  opacity: 1;
  padding-top: 4px;
  padding-right: 8px;
  padding-bottom: 4px;
  padding-left: 8px;
  border-radius: 2px;
  border: 1px solid var(--white);

  font-family: "Inter";
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: -3%;
  color: var(--white);
}

.close {
  cursor: pointer;
}

.close-x path {
  fill: #3c3c3c;
  transition: fill 0.5s ease;
}

.close-x:hover path {
  fill: var(--orange);
  transition: fill 0.5s ease;
}

.close-x:hover path {
  fill: var(--orange);
  transition: fill 0.5s ease;
}

.application-modal {
  position: relative;
  width: 100%;
  max-width: 731px;
  height: 660px;

  padding: 20px;
  border-radius: 2px;
  background-color: var(--white);
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.container--gradient {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 180px;
  width: 1240;
  height: 180;
  gap: 40px;
  padding-top: 60px;
  padding-right: 40px;
  padding-bottom: 60px;
  padding-left: 40px;

  background: conic-gradient(
    from 184.09deg at 45.39% 133.34%,
    #000000 57.92deg,
    #990000 57.92deg,
    #000000 78.36deg,
    #780000 122.91deg,
    #d87926 164.9deg,
    #ac3d1b 224.51deg,
    #000000 249.9deg,
    #990000 302.08deg
  );

  font-family: "Inter", sans-serif;
  color: var(--white);
}

.section--padding-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.banner-text {
  max-width: 882px;
  text-align: left;
  font-weight: 200;
  font-size: 32px;
  line-height: 94%;
  letter-spacing: -2%;
}
.banner-button__wrap {
}
.banner-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 238px;
  height: 56px;
  border-radius: 2px;
  padding-top: 16px;
  padding-right: 24px;
  padding-bottom: 16px;
  padding-left: 24px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  transition: var(--hover-transition);
}

.banner-button:hover {
  background: var(--orange-dark);
  transition: var(--hover-transition);
}

/* /ADVANTADGES/ */

.advantadges-title {
  max-width: 215px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 84px;
  line-height: 96%;
  letter-spacing: -6%;
  color: var(--white);
}

.advantadges-title-big {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 84px;
  line-height: 96%;
  letter-spacing: -6%;
  color: var(--white);
}

.container-decor {
  position: relative;
  height: 100%;
}

.container-decor::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: url(../img/decor.svg);
}

.container-decor::after {
  position: absolute;
  right: 0;
  top: 0;
  content: url(../img/decor-2.svg);
}

.section--gradient-high {
  height: 540px;
  padding-bottom: 60px;
  background:
    linear-gradient(
      90deg,
      rgba(97, 35, 10, 0.7) 23.56%,
      rgba(11, 3, 2, 0) 52.28%,
      rgba(53, 15, 9, 0.7) 100%
    ),
    url("../img/adv.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
}

.advantadges-header-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  gap: 40px;
  max-width: 293px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 84px;
  line-height: 84%;
  letter-spacing: -2.52px;
  color: var(--white);
}

.section--padding-60 {
}

.advantadges-header-info span {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 94%;
  letter-spacing: -2%;
}

.adv-top-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.adv-bottom-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.adv-10 {
  white-space: nowrap;
}

.text-large {
  font-size: 68px;
  padding-bottom: 4px;
  white-space: nowrap;
}

.advantadges-header-right {
}

.advantadges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  max-width: 1240px;
  gap: 40px;
}

.advantadges-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 386px;
  /* max-height: 490px; */
  font-family: "Inter", sans-serif;
  color: var(--black);
}

.advantadges-card__head {
  position: relative;
  height: 314px;
  /* min-height: 380px; */
  overflow: hidden;
}

.advantadges-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #7c2f1199;
  mix-blend-mode: multiply; /* ← применяется к наложению с нижележащими элементами */
  pointer-events: none;
}

.advantadges-card__head img {
  /* position: absolute;
  top: 0;
  left: 0; */
  max-width: 100%;
  height: 314px;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.advantadges-card__head span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-weight: 300;
  font-size: 32px;
  line-height: 94%;
  letter-spacing: -2%;
  color: var(--white);
  z-index: 10;
}

.advantadges-card__text {
  color: var(--black);
}

/* / Planeta / */

.section-bg-h {
  /* min-height: 420px; */
  padding-top: 0;
  padding-bottom: 0;
  background: conic-gradient(
    from -7.86deg at 73.62% 100%,
    #bf4e15 -13.43deg,
    #210c13 31.56deg,
    #944409 132.44deg,
    #210c13 294deg,
    #531a10 313.2deg,
    #bf4e15 346.57deg,
    #210c13 391.56deg
  );
}

.clients-wrap {
  padding-top: 90px;
  padding-bottom: 90px;
}

.clients-title {
  padding-bottom: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 46px;
  line-height: 90%;
  letter-spacing: -3%;
  color: var(--white);
}
.clients-text {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -3%;
  color: var(--white);
}

.column-planeta {
  margin-top: auto;
}

.column-planeta img {
  width: 100%;
  height: auto;
  display: block;
}
/* / FORM / */

.form-title-wrap {
  width: 50%;
  color: var(--white);
}
.form-title {
  padding-bottom: 32px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 68px;
  line-height: 90%;
  letter-spacing: -1.6px;
}
.form-text {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 120%;
  letter-spacing: -3%;
}

.form__wrap {
  width: 50%;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.container__form {
  padding-top: var(--padding-horiz);
  padding-bottom: var(--padding-vert);
}

.form__input {
  box-sizing: border-box;
  width: 100%;
  height: 52px;
  border: 1px solid var(--white);
  background: var(--black);
  gap: 10px;
  opacity: 1;
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  border-radius: 2px;
  border-width: 1px;
  outline: none;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 17px;
}

.form__input:focus {
  border: 1px solid var(--orange);
}

.form__input--text {
  width: 100%;
  height: 150px;
  max-width: 100%;
  min-width: 100%;
  border: 1px solid var(--white);
  background: var(--dark);
  border-radius: 0;
  padding: 20px 20px 0px 20px;
  font-size: 17px;
  outline: none;
}

.form__input-label {
  position: relative;
}

.form__input-select-label {
  color: var(--white);
}

.form__select {
  display: flex;
  height: 56px;
  min-height: 56px;
  padding: 16px 12px;
  align-items: center;
  gap: 6px;
  align-self: stretch;

  border-radius: 2px;
  border: 1px solid var(--Dropdown-stroke-default, #fff);
  background: var(--Dropdown-fill-default, rgba(255, 255, 255, 0));

  color: var(--Dropdown-Text-Placeholder, #a9abad);

  font-family: "Inter";
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.51px;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Cpath d='M27.1357 9.27588L14.6357 20.5259L2.13574 9.27588' stroke='white' stroke-linecap='square'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 30px 30px;

  border-radius: 2px;

  cursor: pointer;
}

.form__select::picker-icon {
  color: #999999;
  transition: 0.4s rotate;
}

.form__select:open::picker-icon {
  rotate: 180deg;
}

.form__select__option {
  display: flex;
  height: 40px;
  min-height: 40px;
  padding: 8px 16px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  color: var(--Dropdown-text-icon-default, #000);

  font-family: "Inter";
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.51px;
  width: 100%;
}

.text-number {
  position: absolute;
  right: 10px;
  bottom: 5px;
  font-family: "Inter";
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: -3%;
  text-align: right;
  color: var(--white);
}

.submit-button {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: fit-content;
  height: 58px;
  gap: 8px;
  opacity: 1;
  padding-top: 16px;
  padding-right: 24px;
  padding-bottom: 16px;
  padding-left: 24px;
  border-radius: 2px;
  border: none;
  outline: none;
  background: var(--orange);
  color: var(--white);
  font-size: 20px;
  line-height: 120%;
  cursor: pointer;
  transition: var(--hover-transition);
}

.submit-button:hover {
  background-color: var(--orange-dark);
  transition: var(--hover-transition);
}

.agreement {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--white);
}

.agreement a {
  text-decoration: none;
  color: var(--orange);
  transition: var(--hover-transition);
}

.agreement a:hover {
  color: var(--orange-dark);
  transition: var(--hover-transition);
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.dark-delimiter {
  position: relative;
  display: flex;
  height: 70px;
  width: 100%;
  max-width: var(--max-width);
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  /* padding-left: var(--padding-horiz);
  padding-right: var(--padding-horiz); */
  text-align: center;
  background-image: url(../img/center.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
}

.dark-delimiter::before {
  position: absolute;
  left: 0;
  top: 0;
  content: url(../img/left.svg);
}

.dark-delimiter::after {
  position: absolute;
  right: 0;
  top: 0;
  content: url(../img/right.svg);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
  padding-left: var(--padding-horiz);
  padding-right: var(--padding-horiz);
  background: var(--dark);
  color: var(--white);
}

.footer-logo__wrap {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.footer-logo__text {
  max-width: 299px;
  color: var(--white);
}

.social {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.social__item {
  cursor: pointer;
}

.social__icon {
  fill: var(--white);
  transition: var(--hover-transition);
}

.social__link:hover .social__icon {
  fill: #f8b881;
  transition: var(--hover-transition);
}

/* Скрываем настоящий checkbox */
.custom-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Обёртка для SVG */
.checkbox-svg {
  display: inline-block;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.agreement__link {
  border-bottom: 1px solid var(--orange);
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Неактивное состояние (по умолчанию) */
.custom-checkbox input[type="checkbox"] + .checkbox-svg {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='23' height='23' rx='3.5' stroke='%23FFE6D1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Активное состояние (:checked) */
.custom-checkbox input[type="checkbox"]:checked + .checkbox-svg {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='24' height='24' rx='4' fill='%23F58220'/%3E%3Cpath d='M5.45435 12.5829L9.54586 16.4998L18.5455 7.50018' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Опционально: выключить outline при фокусе */
.custom-checkbox input[type="checkbox"]:focus + .checkbox-svg {
  /* outline: 2px solid #f58220; */
  outline-offset: 2px;
}

.success {
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  max-width: 720px;
  height: 560px;
  position: relative;
  box-sizing: border-box;
  background: #ffffff;
}

.success__close {
  box-sizing: border-box;
  width: auto;
  height: 56px;
  align-self: flex-end;
  padding-right: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: none;
  border: none;
  cursor: pointer;
}

.success__body {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 64px;
  padding-bottom: 64px;
  padding-left: 80px;
  padding-right: 80px;
}

.success__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 46px;
  line-height: 90%;
  letter-spacing: -1px;
  vertical-align: middle;
  margin: 0;
}

.success__text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -1px;
  vertical-align: middle;
  margin: 0;
}

.success__text--felx {
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: row;
  margin-top: 45px;
  margin-bottom: 17px;
}

.success__link {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 58px;
  width: 100%;
  max-width: 143px;
  text-decoration: none;
  color: #d87926;
  border: 1px solid #d87926;
  border-radius: 2px;
  font-size: 17px;
}

.success__link:hover {
  color: #d06e28;
  border-color: #d06e28;
  transition: all var(--hover-transition);
}

.success__footer {
  height: 40px;
  flex-shrink: 0;
  background: conic-gradient(
    from 179.7deg at 54.61% 133.34%,
    #990000 -57.92deg,
    #ac3d1b 115.9deg,
    #d87926 144.82deg,
    #780000 237.09deg,
    #d06e28 267.09deg,
    #780000 278.64deg,
    #990000 302.08deg,
    #ac3d1b 475.9deg
  );
}

.privacy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1240px;
}

.container--privacy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1240px;
}

.head-title--privacy {
  margin-bottom: 20px;
  font-family: "Suisse Intl";
  font-weight: 300;
  font-style: normal;
  font-size: 46px;
  line-height: 88%;
}

.footer--privacy {
  padding-top: 40px;
}

@media (min-width: 1200px) and (max-width: 1399.88px) {
  .hero-header {
    width: 50%;
    height: 100%;
    max-width: 554px;
    padding-top: 114px;
    padding-bottom: 104px;
  }

  .hero-image {
    max-width: 554px;
    max-height: 587px;
  }

  .hero-image img {
    max-width: 554px;
    object-fit: scale-down;
    margin-top: auto;
  }

  .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) and (max-width: 1346px) {
  .hero-title {
    font-size: 72px;
  }
}

/* Для экранов от 761px до 1199px — 2 карточки в ряд */
@media (min-width: 960px) and (max-width: 1199.88px) {
  :root {
    --padding-vert: 40px;
    --padding-horiz: 40px;
  }

  .nav-menu {
    gap: 10px;
  }

  .hero-header {
    width: 50%;
    height: 100%;
    max-width: 554px;
    padding-top: 114px;
    padding-bottom: 104px;
    word-wrap: break-word;
  }

  .hero-image {
    max-width: 554px;
    max-height: 587px;
  }

  .hero-image img {
    max-width: 554px;
    object-fit: scale-down;
    margin-top: auto;
  }

  .cards {
    gap: 40px; /* теперь и вертикально, и горизонтально по 40px */
    grid-template-columns: repeat(3, 1fr);
  }
  .card {
    width: 100%;
  }
}

@media (max-width: 959.88px) {
  .cards-title {
    width: 100%;
    font-size: 40px;
    word-wrap: break-word;
    word-break: normal;
    line-height: 90%;
    letter-spacing: -1.38px;
  }

  .cards {
    gap: 40px;
    grid-template-columns: repeat(1, 1fr);
  }

  .card {
    width: 100%;
  }

  .card-modal {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    max-height: 680px;
    width: 100vw;
    overflow: hidden;
    padding-left: 0px;
    padding-right: 0px;
  }

  .card-modal__header {
    flex-shrink: 0;
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background: #fff;

    z-index: 10;
  }

  .card-modal__wrap {
    box-sizing: border-box;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--orange) transparent;

    padding-left: 20px;
    padding-right: 20px;
  }
  /* WebKit/Blink (Chrome, Safari, Edge) */
  .card-modal__wrap::-webkit-scrollbar {
    padding-left: 2px;
    padding-right: 2px;
    width: 3px;
    height: 3px;
    border-radius: 20px;
  }

  /* Chrome, Safari, Edge */
  .card-modal__wrap::-webkit-scrollbar {
    padding-left: 2px;
    padding-right: 2px;
    width: 3px;
  }

  .card-modal__wrap::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 20px;
  }

  /* Firefox */
  .card-modal__content {
    scrollbar-width: thin;
    scrollbar-color: var(--orange) transparent;
  }

  .card-modal__content {
    margin-top: 0px;
    overflow-y: visible;
  }

  .card-modal__image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: 167px;
  }

  .card-modal__image img {
    width: 100%;
    max-height: 167px;
    object-fit: contain;
  }
}

@media screen and (min-width: 960px) and (max-width: 1199.88px) {
  .header-logo__wrap {
  }

  .header__top {
    padding-left: 0;
    padding-right: 0;
  }

  .section--hero {
    padding-top: 40px;
    max-height: unset;
  }

  .hero {
    flex-direction: column;
    height: 100%;
    align-items: center;
  }

  .hero-header {
    width: 100%;
    max-width: 100%;
    padding-top: 40px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .video {
    flex-direction: column;
    gap: 40px;
  }

  .video-image {
    width: 100%;
    max-width: 100%;
    /* min-height: unset; */
    min-height: 490px;
    margin-left: auto;
    margin-right: auto;
    background: url(../img/video.png);
    background-size: cover;
    background-position: center;
    aspect-ratio: 880 / 490;
    background-repeat: no-repeat;
  }

  .column--decor-2 {
    padding-top: 0px;
  }

  .section--p80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .video-header {
    padding-bottom: 0;
  }

  .video-header::after {
    content: none;
  }

  .column--decor-1 {
    width: 100%;
    max-width: 100%;
  }

  .column--decor-2 {
    width: 100%;
    max-width: 100%;
  }

  .column--decor-2::after {
    content: none;
  }

  .section--gradient-high {
    box-sizing: border-box;
    height: 540px;
    padding-left: 40px;
    padding-bottom: 40px;
    padding-top: 80px;
  }
  .advantadges-header-info {
    display: flex;
    flex-direction: row;
    max-width: 628px;
  }

  .container-decor {
    flex-direction: column;
    justify-content: center;
    gap: 133px;
  }

  .container-decor::before {
    content: none;
  }

  .container-decor::after {
    content: none;
  }

  .b1 {
    display: none;
  }

  .form-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-title-wrap {
    width: 100%;
  }

  .form-text {
    padding-bottom: 60px;
  }

  .form__wrap {
    width: 100%;
  }

  .form-title {
    width: 100%;
    max-width: unset;
  }

  .agreement {
    display: flex;
    flex-direction: row;
  }
}

@media (max-width: 960px) {
  .cards {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
  .card {
    width: 100%;
  }

  .advantadges {
    grid-template-columns: repeat(1, 1fr);

    padding-bottom: 40px;
  }

  .advantadges-card {
    width: 100%;
    max-width: unset;
    max-height: unset;
  }

  .advantadges-card__head img {
    width: 100%;
    max-width: unset;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
}

@media (max-width: 959.88px) {
  :root {
    --width: 100%;
    --max-width: unset;
    --direction: column;

    --padding-vert: 80px;
    --padding-horiz: 20px;
  }

  .container {
    max-width: unset;
  }

  .section--hero {
    padding-top: 0;
    max-height: unset;
  }

  .hero {
    height: 100%;

    align-items: center;
  }

  .hero-header {
    width: 100%;
    max-width: 100%;
    padding-top: 40px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-image {
    display: flex;
    width: 100%;
    max-width: 335px;
    max-height: 393px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image img {
    display: flex;
    width: 100%;
    max-width: 335px;
    height: 393px;

    object-fit: cover;
  }

  .hero-title {
    width: 100%;
    margin-bottom: 12px;
    font-size: 40px;
    line-height: 90%;
    letter-spacing: -1.2px;
    white-space: wrap;
    word-wrap: break-word;
  }

  .hero-text {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .video-title {
    font-size: 40px;
  }

  .video-image {
    width: 100%;
    /* height: auto; */
    aspect-ratio: 880 / 490;
    background: url(../img/video-mob.png);
    background-size: cover;
    background-position: center;
  }

  .clients-title {
    font-size: 30px;
  }

  .container-bg-milk {
    min-height: 260px;
    background: url(../img/milk-mob.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    max-width: calc(100% - 40px);
  }

  .column-h2 {
    font-size: 46px;
    line-height: 90%;
  }

  .container--gap-m80 {
    gap: 80px;
  }

  .column--decor-2 {
    padding-top: 0px;
  }

  .column--decor-2::after {
    content: none;
  }

  .video {
    gap: 40px;
  }

  .video-text__list-item {
    width: 100%;
  }

  .video-title {
    font-size: 40px;
    letter-spacing: -1.2px;
  }

  .video-header {
    padding-bottom: 0px;
  }

  .video-header::after {
    content: none;
  }

  .video-image {
    width: 100%;
    /* max-width: 880px; */
    min-height: unset;
    min-height: 209px;
    margin-left: auto;
    margin-right: auto;
    background-size: cover;
    background-position: center;
    aspect-ratio: 375/209;
  }

  .container--padding-60 {
    gap: 20px;
  }

  .section--padding-60 {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    background: conic-gradient(
      from 175.91deg at 54.61% 133.34%,
      #990000 -57.92deg,
      #000000 110.1deg,
      #ac3d1b 135.49deg,
      #d87926 195.1deg,
      #780000 237.09deg,
      #000000 281.64deg,
      #990000 302.08deg,
      #000000 470.1deg
    );
  }

  .container--gradient {
    background: none;
    align-items: flex-start;
    padding: 0;
  }

  .section--gradient-high {
    height: auto;
  }

  .advantadges-header-info {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 628px;
  }

  .adv-top-wrap {
    max-width: 50%;
  }

  .adv-bottom-wrap {
    max-width: 50%;
  }

  .container-decor {
    gap: 80px;
  }

  .container-decor::after {
    content: none;
  }

  .container-decor::before {
    content: none;
  }

  .advantadges-title {
    font-size: 46px;
  }

  .advantadges-title-big {
    font-size: 68px;
  }

  .advantadges-header-info span {
    display: block;
    padding-bottom: 40px;
  }

  .advantadges {
    flex-direction: column;
  }

  .advantadges-card {
    width: 100%;
    max-width: unset;
    max-height: unset;
  }

  .advantadges-card__head img {
    width: 100%;
    max-width: unset;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .b1 {
    display: none;
  }

  .advantadges-header-info span {
    font-size: 32px;
  }

  .clients-wrap {
    padding-bottom: 0;
  }

  .form-title-wrap {
    width: 100%;
    padding-bottom: 40px;
  }

  .form__wrap {
    width: 100%;
  }

  .agreement {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .success {
    height: 100%;
    max-height: 728px;
    width: 100%;
    overflow-y: auto;
    scrollbar-width: thin;
    -ms-overflow-style: none;
  }

  /* WebKit/Blink (Chrome, Safari, Edge) */
  .success::-webkit-scrollbar {
    padding-left: 2px;
    padding-right: 2px;
    width: 3px;
    height: 3px;
    border-radius: 20px;
  }

  /* Chrome, Safari, Edge */
  .success::-webkit-scrollbar {
    padding-left: 2px;
    padding-right: 2px;
    width: 3px;
  }

  .success::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 20px;
  }

  /* Firefox */
  .success {
    scrollbar-width: thin;
    scrollbar-color: var(--orange) transparent;
  }

  .success__body {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .success__close {
    height: 56px;
  }

  .success__header {
    font-size: 32px;
    line-height: 100%;
    gap: 20px;
  }

  .success__text {
    font-size: 20px;
  }

  .success__text--felx {
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
    margin-bottom: 12px;
  }
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .header__top {
    padding-left: 40px;
    padding-right: 40px;
  }

  .nav-wrap {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 960px) and (max-width: 1200px) {
  .header__top {
    padding-left: 40px;
    padding-right: 40px;
  }

  .nav-wrap {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 276px) and (max-width: 959.88px) {
  .header__top {
    flex-direction: column;
    height: 48px;
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .header-logo__wrap {
    justify-content: space-between;
    width: 100%;
    height: 48px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-logo img {
    height: 26px;
  }

  .burger-wrap {
    height: 24px;
  }

  .mail-wrap {
    display: none;
  }

  .mail-wrap--mobile {
    display: flex;
    width: 100%;
    height: 63px;
    padding-left: 24px;
    font-weight: 700;
    font-style: Bold;
    font-size: 17px;
    line-height: 120%;
    letter-spacing: -3%;

    background: var(--white);
    color: var(--black);
  }

  .mail-wrap--mobile a {
    text-decoration: none;
    color: var(--black);
  }

  .mail-wrap--mobile .active-mob {
    display: flex;
    align-items: center;
    height: 63px;
  }

  .active {
    height: 445px;
  }

  .nav-wrap {
    display: flex;
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 40px;
  }

  .nav-menu {
    flex-direction: column;
    padding-left: 24px;
    gap: 40px;
    padding-top: 20px;
  }

  .nav-menu__item {
    font-family: Inter;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -3%;
  }

  .nav-button {
    display: none;
  }

  .section--hero {
    margin-top: 48px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .column--padding {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-top: 0;
  }

  .decor-padding {
    padding-left: 28px;
    padding-right: 20px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .footer-container {
    flex-direction: column;
  }

  .footer-logo__wrap {
    flex-direction: column;
  }
}

@media (max-width: 959.88) {
  .hero-title {
    width: 100%;
    margin-bottom: 12px;
    font-size: 40px;
    line-height: 90%;
    letter-spacing: -0.04px;
    white-space: wrap;
    /* word-wrap: break-word; */
  }

  .hero-text {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .video-title {
    font-size: 40px;
  }

  .video-image {
    background: url(../img/video-mob.jpg);
    background-size: cover;
    background-position: center;
    aspect-ratio: 570 / 321;
  }

  .clients-title {
    font-size: 30px;
  }
}

@media (max-width: 760px) {
  .cards {
    gap: 40px;
    grid-template-columns: repeat(1, 1fr);
  }
  .card {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .video-image {
    background: url(../img/video_375.png);
    aspect-ratio: 355/199;
    background-repeat: no-repeat;

    width: 100%;
    min-height: 199px;
    background: url(../img/video_375.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
  }

  .video-title {
    letter-spacing: -1.2px;
  }
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../fonts/inter/Inter-Thin.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("../fonts/inter/Inter-ThinItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/inter/Inter-ExtraLight.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/inter/Inter-ExtraLightItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/inter/Inter-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/inter/Inter-LightItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter/Inter-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter/Inter-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter/Inter-MediumItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter/Inter-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter/Inter-SemiBoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter/Inter-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter/Inter-BoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/inter/Inter-ExtraBold.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/inter/Inter-ExtraBoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/inter/Inter-Black.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/inter/Inter-BlackItalic.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../fonts/inter/InterDisplay-Thin.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("../fonts/inter/InterDisplay-ThinItalic.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/inter/InterDisplay-ExtraLight.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/inter/InterDisplay-ExtraLightItalic.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/inter/InterDisplay-Light.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/inter/InterDisplay-LightItalic.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter/InterDisplay-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter/InterDisplay-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter/InterDisplay-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter/InterDisplay-MediumItalic.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter/InterDisplay-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter/InterDisplay-SemiBoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter/InterDisplay-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter/InterDisplay-BoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/inter/InterDisplay-ExtraBold.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/inter/InterDisplay-ExtraBoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/inter/InterDisplay-Black.woff2") format("woff2");
}
@font-face {
  font-family: "InterDisplay";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/inter/InterDisplay-BlackItalic.woff2") format("woff2");
}

@font-face {
  font-family: "Suisse Intl";
  font-weight: 900;
  font-style: normal;
  src:
    local("Suisse Intl Black"),
    local("SuisseIntl-Black"),
    url("../fonts/suisseintl/SuisseIntl-Black.otf") format("opentype");
}

@font-face {
  font-family: "Suisse Intl";
  font-weight: 900;
  font-style: italic;
  src:
    local("Suisse Intl Black"),
    local("SuisseIntl-Black"),
    url("../fonts/suisseintl/SuisseIntl-BlackItalic.otf") format("opentype");
}

@font-face {
  font-family: "Suisse Intl";
  font-weight: 700;
  font-style: normal;
  src:
    local("Suisse Intl Bold"),
    local("SuisseIntl-Bold"),
    url("../fonts/suisseintl/SuisseIntl-Bold.otf") format("opentype");
}

@font-face {
  font-family: "Suisse Intl";
  font-weight: 700;
  font-style: italic;
  src:
    local("Suisse Intl Bold Italic"),
    local("SuisseIntl-BoldItalic"),
    url("../fonts/suisseintl/SuisseIntl-BoldItalic.otf") format("opentype");
}

@font-face {
  font-family: "Suisse Intl";
  font-weight: 600;
  font-style: normal;
  src:
    local("Suisse Intl Semi Bold"),
    local("SuisseIntl-SemiBold"),
    url("../fonts/suisseintl/SuisseIntl-SemiBold.otf") format("opentype");
}

@font-face {
  font-family: "Suisse Intl";
  font-weight: 600;
  font-style: italic;
  src:
    local("Suisse Intl Semi Bold Italic"),
    local("SuisseIntl-SemiBoldItalic"),
    url("../fonts/suisseintl/SuisseIntl-SemiBoldItalic.otf") format("opentype");
}

@font-face {
  font-family: "Suisse Intl";
  font-weight: 500;
  font-style: normal;
  src:
    local("Suisse Intl Medium"),
    local("SuisseIntl-Medium"),
    url("../fonts/suisseintl/SuisseIntl-Medium.otf") format("opentype");
}

@font-face {
  font-family: "Suisse Intl";
  font-weight: 500;
  font-style: italic;
  src:
    local("Suisse Intl Medium Italic"),
    local("SuisseIntl-MediumItalic"),
    url("../fonts/suisseintl/SuisseIntl-MediumItalic.otf") format("opentype");
}

@font-face {
  font-family: "Suisse Intl";
  font-weight: 400;
  font-style: normal;
  src:
    local("Suisse Intl Regular"),
    local("SuisseIntl-Regular"),
    url("../fonts/suisseintl/SuisseIntl-Regular.otf") format("opentype");
}

@font-face {
  font-family: "Suisse Intl";
  font-weight: 400;
  font-style: italic;
  src:
    local("Suisse Intl Regular Italic"),
    local("SuisseIntl-RegularItalic"),
    url("../fonts/suisseintl/SuisseIntl-RegularItalic.otf") format("opentype");
}

@font-face {
  font-family: "Suisse Intl";
  font-weight: 350;
  font-style: normal;
  src:
    local("Suisse Intl Book"),
    local("SuisseIntl-Book"),
    url("../fonts/suisseintl/SuisseIntl-Book.otf") format("opentype");
}

@font-face {
  font-family: "Suisse Intl";
  font-weight: 350;
  font-style: italic;
  src:
    local("Suisse Intl Book Italic"),
    local("SuisseIntl-BookItalic"),
    url("../fonts/suisseintl/SuisseIntl-BookItalic.otf") format("opentype");
}

@font-face {
  font-family: "Suisse Intl";
  font-weight: 300;
  font-style: normal;
  src:
    local("Suisse Intl Light"),
    local("SuisseIntl-Light"),
    url("../fonts/suisseintl/SuisseIntl-Light.otf") format("opentype");
}

@font-face {
  font-family: "Suisse Intl";
  font-weight: 300;
  font-style: italic;
  src:
    local("Suisse Intl Light Italic"),
    local("SuisseIntl-LightItalic"),
    url("../fonts/suisseintl/SuisseIntl-LightItalic.otf") format("opentype");
}

@font-face {
  font-family: "Suisse Intl";
  font-weight: 100;
  font-style: normal;
  src:
    local("Suisse Intl Ultra Light"),
    local("SuisseIntl-UltraLight"),
    url("../fonts/suisseintl/SuisseIntl-UltraLight.otf") format("opentype");
}

@font-face {
  font-family: "Suisse Intl";
  font-weight: 100;
  font-style: italic;
  src:
    local("Suisse Intl Ultra Light Italic"),
    local("SuisseIntl-UltraLightItalic"),
    url("../fonts/suisseintl/SuisseIntl-UltraLightItalic.otf")
      format("opentype");
}

@font-face {
  font-family: "Suisse Intl";
  font-weight: 200;
  font-style: normal;
  src:
    local("Suisse Intl Thin"),
    local("SuisseIntl-Thin"),
    url("../fonts/suisseintl/SuisseIntl-Thin.otf") format("opentype");
}

@font-face {
  font-family: "Suisse Intl";
  font-weight: 200;
  font-style: italic;
  src:
    local("Suisse Intl Thin Italic"),
    local("SuisseIntl-ThinItalic"),
    url("../fonts/suisseintl/SuisseIntl-ThinItalic.otf") format("opentype");
}

.input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-wrap input.visually-hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* 2. Базовые размеры для кастомного элемента */
.input-wrap .custom-radio {
  width: 20px;
  height: 20px;
  flex-shrink: 0; /* Чтобы не сжимался в flex-контейнере */
  display: inline-block;
  position: relative;
}

/* 3. Неактивное состояние (черный круг) - по умолчанию */
.input-wrap .custom-radio::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='9.3' stroke='white' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* 4. Активное состояние (зеленый круг с галочкой) - при checked */
.input-wrap input.visually-hidden:checked + .custom-radio::before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23157F8A'/%3E%3Cg clip-path='url(%23clip0_180_942)'%3E%3Cpath d='M5.45508 10.9006L8.26799 13.5935L14.4552 7.40626' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_180_942'%3E%3Crect width='11' height='11' fill='white' transform='translate(4.45508 5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

/* Orange #F58220 */
.input-wrap input.visually-hidden:checked + .custom-radio--orange::before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23F58220'/%3E%3Cg clip-path='url(%23clip0_180_942)'%3E%3Cpath d='M5.45508 10.9006L8.26799 13.5935L14.4552 7.40626' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_180_942'%3E%3Crect width='11' height='11' fill='white' transform='translate(4.45508 5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.label-text {
  color: var(--white);
}

.radio-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
/* .form__select {
  border-radius: 2px;
  border: 1px solid var(--Dropdown-stroke-hover, #000);
  background: var(--Dropdown-Dropdn-fill-hover, #5a5d60);
} */

.option-disabled {
  border: 1px solid var(--Dropdown-stroke-hover, #000);
  background: var(--Dropdown-Dropdn-fill-hover, #5a5d60);
}

.custom-select {
  position: relative;
  width: 100%;
  height: 52px;
  border-radius: 2px;
  border: 1px solid var(--Dropdown-stroke-default, #fff);
  background: var(--Dropdown-fill-default, rgba(255, 255, 255, 0));

  font-family: "Inter", system-ui, sans-serif;
}

.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  padding: 8px 16px;
  padding-top: 15px;
  cursor: pointer;
  color: var(--Dropdown-text-icon-default, #ffffff);
  font-size: 17px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.51px;
  /* transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease; */
}

.custom-select__trigger:hover,
.custom-select:focus .custom-select__trigger {
  border-color: rgba(0, 0, 0, 0.3);
}

.custom-select:focus .custom-select__trigger {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
  outline: none;
}

.custom-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 100;
  border-radius: 2px;

  background: var(--White, #fff);
  box-shadow: 4px 4px 40px 0 rgba(0, 0, 0, 0.25);
  display: none;
  flex-direction: column;
  padding: 6px 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

.custom-select.open .custom-options {
  display: flex;
  border: 1px solid var(--White, #fff);
}

.custom-option {
  display: flex;
  height: 40px;
  min-height: 40px;
  padding: 8px 16px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  cursor: pointer;
  color: var(--Dropdown-text-icon-default, #000);
  font-size: 17px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.51px;
  transition: background-color 0.15s ease;
}

.custom-option:hover {
  background: var(--Dropdown-fill-active, #eaeef1);
}

.custom-option[aria-selected="true"] {
  background-color: rgba(0, 0, 0, 0.08);
  font-weight: 500;
}

.custom-select__arrow {
  transition: transform 0.2s ease;
}

.custom-select.open .custom-select__arrow {
  transform: rotate(180deg);
}

.custom-select.open {
  border-radius: 2px;
  border: 1px solid var(--Dropdown-stroke-active, #000);
  background: var(--Dropdown-fill-active, #3c3c3c);
}
