/* cyrillic */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/montserrat-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic italic 700 */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/montserrat-italic700-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin italic 700 */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/montserrat-italic700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic Roboto */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/roboto-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin Roboto */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/roboto-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --color-dark: #1a1b1d;
  --color-dark-2: #1f2327;
  --color-text: #19181e;
  --color-muted: #dcdcdc;
  --color-blue: #00a6e6;
  --color-blue-hover: #0687ba;
  --color-white: #ffffff;
  --color-panel: rgba(255, 255, 255, 0.94);
  --font-main: "Montserrat", Arial, sans-serif;
  --font-secondary: "Roboto", Arial, sans-serif;
  --container: 1410px;
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 40px;
  --transition: 0.28s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  background: #e7f0ff;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

ul,
p,
h1,
h2,
h3 {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid rgba(0, 166, 230, 0.6);
  outline-offset: 4px;
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.container--narrow {
  width: min(100% - 48px, 990px);
}

.button {
  position: relative;
  z-index: 0;
  display: inline-flex;
  min-width: 210px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 17px 30px;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--color-white);
  background: var(--color-blue);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform var(--transition), background var(--transition);
}
  .destop_screen{
    display: block;
  }
  .mobile_screeen{
    display: none;
  }
.button:hover {
  background: var(--color-blue-hover);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
  transform: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100px;
  border-bottom: 1px solid rgba(25, 24, 30, 0.1);
  background: rgba(26, 27, 29, 0.64);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(14px);
  transition: height var(--transition), background var(--transition), box-shadow var(--transition);
}

.header.header--scrolled {
  height: 82px;
  background: rgba(26, 27, 29, 0.92);
}

.header__container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.header__logo {
  flex: 0 0 auto;
  width: 90px;
}

.header__logo img {
  width: 90px;
  height: auto;
}

.header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.header__list {
  display: flex;
  align-items: center;
  gap: 56px;
}

.header__link {
  position: relative;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
}

.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--color-white);
  transition: width var(--transition);
}

.header__link:hover::after {
  width: 100%;
}

.header__mobile-only,
.header__mobile-button,
.header__burger {
  display: none;
}

.hero,
.process,
.footer {
  background-color: var(--color-dark);
  background-image: linear-gradient(rgba(26, 27, 29, 0.38), rgba(26, 27, 29, 0.38)), url("../img/figma/bg-dark.png");
  background-repeat: repeat;
  background-size: 1024px auto;
}

.hero {
  min-height: 934px;
  padding: 174px 0 160px;
  color: var(--color-white);
}

.hero__container {
  display: grid;
  grid-template-columns: 690px 600px;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}

.hero__title {
  display: flex;
  flex-direction: column;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
}

.hero__title span {
  display: block;
}

.hero__mark {
  display: inline-block;
  width: max-content;
  max-width: 100%;
  padding: 0 10px 3px;
  color: var(--color-white);
  background: var(--color-blue);
  font-style: italic;
  line-height: 1.08;
}

.hero__mark--wide {
  margin-left: -9px;
}

.hero__text {
  display: grid;
  gap: 14px;
  color: var(--color-muted);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.hero__text strong {
  font-weight: 700;
}

.hero__visual {
  position: relative;
  --hero-size: 600px;
  --hero-cell: 286.957px;
  width: var(--hero-size);
  height: var(--hero-size);
}

.hero__photo {
  position: absolute;
  width: var(--hero-cell);
  height: var(--hero-cell);
  overflow: hidden;
  background: #828282;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
}

.hero__photo img {
  position: absolute;
  max-width: none;
  object-fit: cover;
}

.hero__photo--one {
  left: 0;
  top: 0;
  -webkit-mask-image: url("../img/figma/hero-mask-1.svg");
  mask-image: url("../img/figma/hero-mask-1.svg");
}

.hero__photo--one img {
  left: -52%;
  top: 0;
  width: 165%;
  height: 100%;
}

.hero__photo--two {
  right: 0;
  top: 0;
  -webkit-mask-image: url("../img/figma/hero-mask-2.svg");
  mask-image: url("../img/figma/hero-mask-2.svg");
}

.hero__photo--two img {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.hero__photo--three {
  left: 0;
  bottom: 0;
  -webkit-mask-image: url("../img/figma/hero-mask-3.svg");
  mask-image: url("../img/figma/hero-mask-3.svg");
}

.hero__photo--three img {
  left: -19%;
  top: -14%;
  width: 127%;
  height: 190%;
}

.hero__photo--four {
  right: 0;
  bottom: 0;
  -webkit-mask-image: url("../img/figma/hero-mask-4.svg");
  mask-image: url("../img/figma/hero-mask-4.svg");
}

.hero__photo--four img {
  left: -30%;
  top: 0;
  width: 142%;
  height: 100%;
}

.stats {
  background: var(--color-blue);
  color: var(--color-white);
}

.stats__container {
  position: relative;
  min-height: 207px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.stats__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 2px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  transform: translateY(-50%);
}

.stats__item strong {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.22;
}

.stats__item span {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

.light-wrap {
  position: relative;
  overflow: hidden;
  background-color: #e5effe;
  background-image:
    radial-gradient(circle at 13% 20%, rgba(174, 213, 255, 0.58) 0, rgba(174, 213, 255, 0) 38%),
    radial-gradient(circle at 77% 16%, rgba(235, 227, 255, 0.72) 0, rgba(235, 227, 255, 0) 42%),
    radial-gradient(circle at 86% 82%, rgba(216, 207, 255, 0.48) 0, rgba(216, 207, 255, 0) 40%),
    linear-gradient(180deg, #eaf3ff 0%, #eef4ff 52%, #e7f3ff 100%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.light-wrap--bottom {
  background-position: center center;
}

.section {
  padding: 160px 0;
}

.section__head {
  max-width: 1170px;
  margin: 0 auto 60px;
}

.section__head--center {
  text-align: center;
}

.section__head--dark {
  color: var(--color-white);
}

.section__eyebrow {
  display: block;
  margin-bottom: 26px;
  color: var(--color-blue);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.section__title {
  color: var(--color-dark-2);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.22;
}

.section__head--dark .section__title {
  color: var(--color-white);
}

.section__text {
  margin-top: 32px;
  color: var(--color-text);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.section__head--dark .section__text {
  color: rgba(255, 255, 255, 0.86);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit {
  padding: 0 20px;
}

.benefit__icon {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  background: var(--color-white);
}

.benefit__icon svg {
  width: 40px;
  height: 40px;
  fill: var(--color-blue);
}

.benefit h3 {
  margin-bottom: 16px;
  color: var(--color-text);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.benefit p {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.benefit p strong {
  font-weight: 700;
}

.opportunities {
  padding-bottom: 160px;
}

.opportunities .container {
  width: min(100% - 48px, 1410px);
}

.opportunities__card {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 60px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: 0 7px 8.3px rgba(0, 0, 0, 0.05);
}

.opportunities__intro {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-left: 36px;
}

.opportunities__intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: var(--radius-lg);
  background: var(--color-blue);
}

.opportunities__badge {
  position: relative;
  display: grid;
  flex: 0 0 78px;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 999px;
  background: rgba(198, 239, 255, 0.4);
  backdrop-filter: blur(16.5px);
}

.opportunities__badge img {
  width: 40px;
  height: 40px;
}

.opportunities__caption {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 -46px;
  color: var(--color-dark-2);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.opportunities__avatars {
  display: flex;
  width: 140px;
  flex: 0 0 140px;
}

.opportunities__avatars img {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  object-fit: cover;
}

.opportunities__avatars img + img {
  margin-left: -20px;
}

.opportunities__arrow {
  width: 24px;
  height: 24px;
}

.opportunities__screen {
  position: relative;
  overflow: hidden;
  border-radius: 39.286px;
  background: #f8f8f8;
}

.opportunities__screen-img {
  position: absolute;
  left: -5.8%;
  top: -14.8%;
  width: 109.7%;
  max-width: none;
  height: 203.4%;
  object-fit: cover;
  clip-path: inset(9.1% 0 0 0);
}

.opportunities__circle {
  position: absolute;
  left: 35.35%;
  top: 19.73%;
  width: 33.49%;
  height: auto;
  max-width: none;
  pointer-events: none;
}

.vacancy {
  padding: 0;
  overflow: hidden;
}

.vacancy__wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 60px;
  align-items: flex-start;
}

.vacancy__image-wrap {
  position: relative;
  flex: 0 0 46%;
  max-width: 46%;
}

.vacancy__person {
  width: 100%;
  height: auto;
  display: block;
}

.vacancy__msg-1,
.vacancy__msg-2 {
  position: absolute;
  z-index: 2;
}

.vacancy__msg-1 {
  max-width: 201px;
  top: 15vw;
  left: 0;
  animation: swing-msg1 3s ease-in-out infinite;
  transform-origin: center bottom;
}

.vacancy__msg-2 {
  max-width: 124px;
  right: 3vw;
  top: 9vw;
  animation: swing-msg2 3.4s ease-in-out infinite;
  animation-delay: -1.7s;
  transform-origin: center bottom;
}

.vacancy__content {
  flex: 1;
}

.vacancy__content .section__title {
  line-height: 1.22;
}

.vacancy__content .section__title span {
  color: var(--color-blue);
}

.vacancy__content .section__text {
  margin-top: 32px;
}

.vacancy__boxes {
  display: grid;
  gap: 24px;
  margin: 40px 0 60px;
}

.vacancy-box {
  background: var(--color-white);
  border-radius: 40px;
  overflow: hidden;
  padding: 30px;
}

.vacancy-box h3 {
  margin-bottom: 16px;
  color: var(--color-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.vacancy-box ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.vacancy-box li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.vacancy-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url("../img/figma/vacancy-bullet.svg") center / contain no-repeat;
}

/* ── Vacancy badges ── */
.vacancy__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.vacancy-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border-radius: 40px;
  background: rgba(242, 243, 252, 0.10);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.vacancy-badge__icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: #ffffff;
}

@media (max-width: 576px) {
  .vacancy__badges {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .vacancy-badge {
    padding: 8px 16px;
    gap: 8px;
    font-size: 14px;
  }

  .vacancy-badge__icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
  }
}

/* ── /Vacancy badges ── *//* ── /Vacancy badges ── */

.process {
  padding: 160px 0;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-card {
  min-height: 318px;
  padding: 48px 24px;
  border-radius: var(--radius-lg);
  background: rgba(242, 243, 252, 0.10);
  color: var(--color-white);
}

.process-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-blue);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.22;
}

.process-card h3 {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.process-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.4;
}

.process__button {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.reviews {
  padding-bottom: 160px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.review {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.review__video {
  position: relative;
  width: min(100%, clamp(236px, 18.611vw, 336px));
  max-width: 100%;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(220, 219, 219, 0.1);
  overflow: hidden;
}

.review__inline-player,
.review__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.review__inline-player {
  object-fit: cover;
  transform: scale(1.06);
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.review__video.has-video .review__inline-player {
  opacity: 1;
}

.review__video.has-video.is-playing .review__play {
  opacity: 0;
}

.review__frame {
  z-index: 1;
  pointer-events: none;
}

.review__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 32px;
  height: 32px;
  transform: translate(-50%, -50%);
  transition: opacity var(--transition);
}

.review__video span {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 2;
  color: var(--color-white);
  font-family: var(--font-secondary);
  font-size: 14px;
  transform: translateX(-50%);
}

.review__user {
  max-width: 100%;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.video-modal__dialog {
  position: relative;
  width: min(50vw, 760px);
  height: min(50vh, 760px);
  min-width: 320px;
  min-height: 320px;
  border-radius: 28px;
  background: #111;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  transform: scale(0.96);
  transition: transform var(--transition);
}

.video-modal.is-open .video-modal__dialog {
  transform: scale(1);
}

.video-modal__player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111;
}

.video-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.video-modal__close::before,
.video-modal__close::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 21px;
  width: 18px;
  height: 2px;
  background: var(--color-text);
}

.video-modal__close::before {
  transform: rotate(45deg);
}

.video-modal__close::after {
  transform: rotate(-45deg);
}

.review__user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review__user img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
}

.review__user div {
  display: grid;
  gap: 4px;
}

.review__user span {
  color: rgba(31, 35, 39, 0.5);
  font-size: 14px;
  font-weight: 500;
}

.review__user strong {
  color: var(--color-dark-2);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.faq {
  border-top: 1px solid rgba(31, 35, 39, 0.2);
}

.faq__title {
  margin-bottom: 60px;
  text-align: center;
}

.faq__list {
  display: grid;
  gap: 16px;
}

.faq__item {
  border-radius: var(--radius-lg);
  background: var(--color-white);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 40px 22px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.faq__question i {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
}

.faq__question i::before,
.faq__question i::after {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-dark-2);
  transition: transform var(--transition), opacity var(--transition);
}

.faq__question i::after {
  transform: rotate(90deg);
}

.faq__item.is-active .faq__question i::after {
  opacity: 0;
  transform: rotate(0deg);
}

.faq__answer {
  height: 0;
  overflow: hidden;
  transition: height var(--transition);
}

.faq__answer p {
  margin: 0 40px 42px 66px;
  padding: 2px 0 2px 22px;
  border-left: 3px solid var(--color-blue);
  color: rgba(25, 24, 30, 0.76);
  font-size: 16px;
  line-height: 1.45;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__dialog {
  position: relative;
  width: min(100%, 520px);
  overflow: visible;
  padding: 34px 36px 28px;
  border-radius: 28px;
  background: var(--color-white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  transform: translateY(16px);
  transition: transform var(--transition);
}

.modal.is-open .modal__dialog {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 166, 230, 0.1);
}

.modal__close::before,
.modal__close::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 21px;
  width: 18px;
  height: 2px;
  background: var(--color-text);
}

.modal__close::before {
  transform: rotate(45deg);
}

.modal__close::after {
  transform: rotate(-45deg);
}

.modal__title {
  margin-bottom: 8px;
  color: var(--color-dark-2);
  font-size: 30px;
  line-height: 1.2;
}

.modal__text {
  margin-bottom: 16px;
  color: rgba(25, 24, 30, 0.72);
  font-size: 15px;
  line-height: 1.4;
}

.form {
  display: grid;
  gap: 10px;
}

.form__label {
  display: grid;
  gap: 6px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
}

.form__input {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(25, 24, 30, 0.12);
  border-radius: var(--radius-sm);
  background: #f6f9ff;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__input:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 4px rgba(0, 166, 230, 0.12);
  outline: 0;
}

.form__input.is-invalid {
  border-color: #dc3545;
}

.form__error {
  color: #dc3545;
  font-size: 12px;
  font-weight: 500;
}

.form__error:empty {
  display: none;
}

.form__submit {
  width: 100%;
}

.form__policy,
.form__success {
  color: rgba(25, 24, 30, 0.68);
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

.form__policy a {
  color: var(--color-blue);
  text-decoration: underline;
}

.form__success {
  color: #14883c;
  font-weight: 600;
}

.modal__dialog--success {
  text-align: center;
  padding: 48px 36px 40px;
}

.success-popup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.success-popup__icon {
  width: 175px;
  height: 109px;
  margin-bottom: 8px;
}

.success-popup__icon svg {
  width: 100%;
  height: 100%;
}

.success-popup__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark-2);
}

.success-popup__text {
  color: rgba(25, 24, 30, 0.68);
  font-size: 15px;
  line-height: 1.55;
}

.success-popup__btn {
  margin-top: 12px;
  min-width: 200px;
}

.privacy-body {
  background: #e7f0ff;
}

.privacy-page {
  background-image:
    radial-gradient(circle at 14% 22%, rgba(174, 213, 255, 0.52) 0, rgba(174, 213, 255, 0) 38%),
    radial-gradient(circle at 78% 16%, rgba(235, 227, 255, 0.7) 0, rgba(235, 227, 255, 0) 42%),
    linear-gradient(180deg, #eaf3ff 0%, #eef4ff 58%, #e7f3ff 100%);
  padding: 178px 0 120px;
}

.privacy-hero {
  padding-bottom: 48px;
}

.privacy-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 600;
  transition: color var(--transition), transform var(--transition);
}

.privacy-back:hover {
  color: var(--color-blue);
  transform: translateX(-3px);
}

.privacy-back svg {
  width: 20px;
  height: 21px;
}

.privacy-hero h1 {
  max-width: 760px;
  color: var(--color-dark-2);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.16;
}

.privacy-hero p {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(25, 24, 30, 0.78);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.privacy-card {
  padding: 56px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 50px rgba(31, 35, 39, 0.08);
}

.privacy-card h2 {
  margin: 40px 0 16px;
  color: var(--color-dark-2);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
}

.privacy-card h2:first-child {
  margin-top: 0;
}

.privacy-card p {
  color: rgba(25, 24, 30, 0.8);
  font-size: 17px;
  line-height: 1.65;
}

.privacy-card p + p {
  margin-top: 18px;
}

.footer {
  color: var(--color-white);
}

.footer__top {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 260px;
  padding: 80px 0 46px;
}

.footer__brand {
  display: grid;
  align-content: start;
  gap: 38px;
}

.footer__logo {
  width: 90px;
}

.footer__socials {
  display: flex;
  gap: 20px;
}

.footer__socials a {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: var(--radius-sm);
  background: rgba(242, 243, 252, 0.1);
  backdrop-filter: blur(20px);
  transition: background var(--transition), transform var(--transition);
}

.footer__socials a:hover {
  background: rgba(242, 243, 252, 0.2);
  transform: translateY(-2px);
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1.2fr 263px;
  gap: 76px;
}

.footer__nav ul {
  display: grid;
  align-content: start;
  gap: 24px;
}

.footer__nav a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}

.footer__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--color-white);
  transition: width var(--transition);
}

.footer__nav a:hover::after {
  width: 100%;
}

.footer__cta strong {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
  line-height: 1.4;
}

.footer__cta p {
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.4;
}

.footer__bottom {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer__bottom p {
  font-size: 16px;
  font-weight: 500;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease calc(var(--stagger-i, 0) * 120ms),
              transform 0.65s ease calc(var(--stagger-i, 0) * 120ms);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}


@keyframes swing-msg1 {
  0%, 100% { transform: rotate(-6deg); }
  50% { transform: rotate(2deg); }
}

@keyframes swing-msg2 {
  0%, 100% { transform: rotate(8deg); }
  50% { transform: rotate(1deg); }
}

@keyframes float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}


@media (max-width: 1700px) and (min-width: 1501px) {
  .vacancy__content .section__title {
    font-size: 54px;
  }

  .vacancy__content .section__text {
    font-size: 18px;
  }
}

@media (max-width: 1500px) {
  :root {
    --container: 1160px;
  }

  .header__list {
    gap: 30px;
  }

  .hero__container {
    grid-template-columns: 661px 470px;
    gap: 30px;
    align-items: center;
  }

  .hero__visual {
    --hero-size: 470px;
    --hero-cell: 224.782px;
  }

  .hero__title {
    font-size: 50px;
  }

  .hero__text {
    font-size: 18px;
  }

  .opportunities .container {
    width: min(100% - 48px, 1160px);
  }

  .opportunities__card {
    gap: 48px;
  }

  .opportunities__intro {
    align-items: stretch;
  }

  .opportunities__intro > div {
    flex: 1 1 auto;
  }

  .opportunities__badge {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    align-self: flex-start;
  }

  .opportunities__badge::before {
    content: "";
    position: absolute;
    inset: -19px;
    border-radius: 999px;
    background: rgba(198, 239, 255, 0.4);
    backdrop-filter: blur(16.5px);
  }

  .opportunities__badge img {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
  }

  .opportunities__caption {
    margin: 0;
    font-size: 18px;
  }

  .opportunities__screen-img {
    left: 50%;
    top: 19.47px;
    width: 124.279%;
    height: 196.24%;
    transform: translateX(-50%);
    clip-path: none;
  }

  .opportunities__circle {
    left: 36.058%;
    top: 23.755%;
    width: 34.808%;
  }

  .vacancy__content .section__title {
    font-size: 54px;
  }

  .vacancy__content .section__text {
    font-size: 18px;
  }

  .footer__top {
    gap: 140px;
  }
}

@media (max-width: 1200px) {
  :root {
    --container: 960px;
  }

  .header__list {
    gap: 20px;
  }

  .header__link,
  .header__button,
  .button {
    font-size: 16px;
  }

  .header__button,
  .button {
    min-width: 180px;
  }

  .hero {
    min-height: auto;
  }

  .hero__container {
    grid-template-columns: 1fr 470px;
    gap: 40px;
  }

  .opportunities .container,
  .vacancy .container {
    width: min(100% - 48px, var(--container));
  }

  .hero__visual {
    justify-self: center;
  }

  .stats__item strong {
    font-size: 58px;
  }

  .stats__item span {
    font-size: 26px;
  }

  .section__title,
  .hero__title {
    font-size: 52px;
  }

  .benefits__grid,
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews__grid {
    grid-template-columns: repeat(2, minmax(0, 336px));
    justify-content: center;
    row-gap: 48px;
  }

  .footer__top {
    grid-template-columns: 160px 1fr;
    gap: 70px;
  }

  .footer__nav {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .container,
  .container--narrow {
    width: min(100% - 36px, var(--container));
  }

  .vacancy__wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .vacancy__image-wrap {
    flex: unset;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .vacancy__content {
    padding-top: 0;
  }

  .vacancy__boxes {
    grid-template-columns: repeat(2, 1fr);
  }

  .header {
    height: 82px;
  }

  .header__nav {
    position: fixed;
    top: 82px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 82px);
    display: grid;
    justify-items: stretch;
    gap: 26px;
    padding: 28px 24px 36px;
    background: rgba(26, 27, 29, 0.98);
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  }

  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header__list {
    display: grid;
    gap: 22px;
    justify-items: center;
  }

  .header__link {
    font-size: 18px;
  }

  .header__button {
    display: none;
  }

  .header__mobile-only,
  .header__mobile-button,
  .header__burger {
    display: inline-flex;
  }

  .header__mobile-button {
    justify-self: center;
  }

  .header__burger {
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
  }

  .header__burger span {
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-white);
    transition: transform var(--transition), opacity var(--transition);
  }

  .header__burger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .header__burger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .header__burger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    padding-top: 126px;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero__visual {
    --hero-size: min(100vw - 36px, 500px);
    --hero-cell: calc(var(--hero-size) * 0.47826);
    width: var(--hero-size);
    height: var(--hero-size);
    justify-self: center;
  }

  .stats__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
    padding: 36px 0;
  }

  .stats__container::before,
  .stats__container::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .stats__container::before {
    width: 2px;
    height: 74px;
  }

  .stats__container::after {
    width: 74px;
    height: 2px;
  }

  .stats__item::after {
    display: none;
  }

  .stats__item strong {
    font-size: 50px;
  }

  .stats__item span {
    font-size: 22px;
  }

  .section,
  .process {
    padding: 110px 0;
  }

  .opportunities__card {
    padding: 36px;
  }

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

  .opportunities__badge {
    position: absolute;
    top: 0;
    right: 0;
    flex: none;
    width: 86px;
    height: 86px;
  }

  .opportunities__badge::before {
    inset: 0;
  }

  .opportunities__screen {
    height: auto;
    aspect-ratio: 1290 / 522;
  }

  .footer__top,
  .footer__nav {
    grid-template-columns: 1fr;
  }

  .footer__top {
    gap: 48px;
  }

  .privacy-page {
    padding: 140px 0 90px;
  }

  .privacy-hero h1 {
    font-size: 44px;
  }

  .privacy-card {
    padding: 40px;
  }
}

@media (max-width: 960px) {
  .vacancy__msg-1 {
    top: 11vw;
  }
}

@media (min-width: 601px) and (max-width: 992px) {
  .footer__top {
    grid-template-columns: 180px 1fr;
    gap: 48px 60px;
  }

  .footer__nav {
    display: contents;
  }

  .footer__brand {
    grid-column: 1;
    grid-row: 1;
  }

  .footer__cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    text-align: left;
    min-width: 228px;
  }

  .footer__nav ul:first-child {
    grid-column: 1;
    grid-row: 2;
  }

  .footer__nav ul:last-of-type {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
  }
}

@media (max-width: 768px) {
  .hero__container {
    gap: 56px;
  }

  .hero__title,
  .section__title {
    font-size: 48px;
  }

  .hero__text,
  .section__text {
    font-size: 18px;
  }

  .hero__visual {
    --hero-size: min(100vw - 36px, 440px);
    --hero-cell: calc(var(--hero-size) * 0.47826);
    width: var(--hero-size);
    height: var(--hero-size);
    aspect-ratio: 1;
  }

  .benefits__grid,
  .process__grid,
  .reviews__grid {
    grid-template-columns: 1fr;
  }



  .vacancy__content .section__title {
    font-size: 40px;
  }

  .benefit {
    padding: 0;
  }

  .faq__question {
    min-height: 88px;
    padding: 26px 28px;
    font-size: 18px;
  }

  .faq__answer p {
    padding: 0 28px 28px;
  }
}

@media (max-width: 769px) {
  .vacancy__msg-1 {
    top: 38vw;
  }
}

@media (max-width: 576px) {
  .container,
  .container--narrow {
    width: min(100% - 28px, var(--container));
  }

  .vacancy__image-wrap {
    max-width: 100%;
    width: 100%;
  }

  .vacancy__content {
    padding-top: 0;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero {
    padding: 112px 0 72px;
  }

  .hero__content {
    width: 100%;
    min-width: 0;
    gap: 34px;
  }

  .hero__title,
  .hero__text,
  .section__title,
  .section__text,
  .benefit p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero__title,
  .section__title {
    font-size: 30px;
  }

  .hero__mark {
    padding-inline: 7px;
  }

  .hero__text,
  .section__text {
    font-size: 16px;
  }

  .stats__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 0;
    padding: 36px 0;
  }

  .stats__item::after {
    display: none;
  }

  .stats__item strong {
    font-size: 42px;
  }

  .stats__item span {
    font-size: 18px;
  }

  .section,
  .process {
    padding: 48px 0;
  }

  .opportunities,
  .reviews {
    padding-bottom: 48px;
  }

  .section__head {
    margin-bottom: 42px;
  }

  .benefit__icon {
    width: 68px;
    height: 68px;
    border-radius: 16px;
  }

  .opportunities__card {
    padding: 24px;
    border-radius: 28px;
  }

  .opportunities__badge {
    position: absolute;
    top: 0;
    right: 0;
    flex: none;
    width: 48px;
    height: 48px;
  }

  .opportunities__badge img {
    width: 26px;
    height: 26px;
  }

  .opportunities__intro {
    padding-left: 20px;
  }

  .opportunities__caption {
    align-items: flex-start;
    gap: 12px;
    margin-top: 38px;
    font-size: 16px;
  }

  .opportunities__avatars {
    width: 90px;
  }

  .opportunities__avatars span {
    width: 42px;
    height: 42px;
  }

  .opportunities__avatars span + span {
    margin-left: -18px;
  }

  .opportunities__avatars img {
    width: 42px;
    height: 42px;
  }

  .opportunities__avatars img + img {
    margin-left: -18px;
  }

  .opportunities__circle {
    width: 170px;
    height: 170px;
  }



  .vacancy__content .section__title {
    font-size: 30px;
  }

  .vacancy__msg-1 {
    max-width: min(201px, 44%);
  }

  .vacancy__msg-2 {
    max-width: min(124px, 28%);
  }

  .vacancy__boxes {
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }

  .vacancy-box,
  .process-card {
    border-radius: 28px;
  }

  .process-card {
    min-height: 0;
  }

  .process-card strong {
    font-size: 46px;
  }

  .review__user strong {
    font-size: 16px;
  }

  .faq__item {
    border-radius: 26px;
  }

  .faq__question {
    gap: 16px;
    padding: 22px;
    font-size: 16px;
  }

  .faq__answer p {
    padding: 0 22px 24px;
  }

  .modal__dialog {
    padding: 24px 18px 18px;
    border-radius: 22px;
  }

  .modal__text {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .form {
    gap: 8px;
  }

  .form__label {
    gap: 4px;
    font-size: 13px;
  }

  .form__input {
    min-height: 42px;
  }

  .form__submit {
    min-height: 46px;
  }

  .privacy-page {
    padding: 118px 0 72px;
  }

  .privacy-hero {
    padding-bottom: 36px;
  }

  .privacy-back {
    margin-bottom: 24px;
  }

  .privacy-hero h1 {
    font-size: 32px;
  }

  .privacy-hero p {
    font-size: 16px;
  }

  .privacy-card {
    padding: 28px 22px;
    border-radius: 28px;
  }

  .privacy-card h2 {
    margin-top: 32px;
    font-size: 22px;
  }

  .privacy-card p {
    font-size: 15px;
  }

  .video-modal__dialog {
    width: calc(100vw - 32px);
    height: min(58vh, 520px);
    min-width: 0;
    min-height: 280px;
    border-radius: 22px;
  }

  .modal__title {
    font-size: 26px;
  }

  .footer__top {
    padding-top: 58px;
  }
}

@media (max-width: 525px) {
  .vacancy__msg-1 {
    top: 32vw;
  }
}

@media (max-width: 375px) {
  .hero__title,
  .section__title {
    font-size: 31px;
  }

  .header__logo,
  .header__logo img {
    width: 59px;
  }



  .vacancy__content .section__title {
    font-size: 24px;
  }
}
@media (max-width: 640px){
  .benefit h3{
    font-size: 18px;
    margin-bottom: 8px;
  }
  .section__head{
    margin-bottom: 32px;
  }
  .opportunities__intro::before{
    display: none;
  }
  .opportunities__card{
    padding: 16px;
  }
  .opportunities__intro{
    padding-left: 0;
  }
  .section__text{
    margin-top: 16px;
  }
  .opportunities__card{
    gap: 27px;
  }
  .opportunities__avatars{
    flex: 0 0 100px;
  }
  .opportunities__caption{
    margin-top: 0;
  }
  .destop_screen{
    display: none;
  }
  .opportunities__screen{
    aspect-ratio: auto;
    border-radius: 10px;
  }
  .mobile_screeen{
    display: block;
    width: 100%;
  }
}

@media (max-width: 340px) {
  .hero__title,
  .section__title,
  .vacancy__content .section__title {
    font-size: 18px;
  }
  .benefit h3{
    font-size: 18px;
    margin-bottom: 8px;
  }
}
