html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body.fade-out {
  animation: fadeOut 0.3s ease-in-out forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.clicked-animate {
  animation: clickscale 0.1s cubic-bezier(.25, .8, .25, 1);
}

@keyframes clickscale {
  0% {
    transform: scale(1);
  }

  20% {
    transform: scale(0.95);
  }

  50% {
    transform: scale(0.9);
  }

  80% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

@font-face {
  font-family: 'Tan Pearl';
  src: url('/css/fonts/tan-pearl.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sofia Sans Black';
  src: url('/css/fonts/SofiaSansSemiCondensed-Black.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sofia Sans Light';
  src: url('/css/fonts/SofiaSansSemiCondensed-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/css/fonts/Inter-VariableFont_opsz\,wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: normal;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
  position: relative;
}

.burger span {
  width: 30px;
  height: 3px;
  background: #107A81;
  border-radius: 3px;
  transition: all 0.3s ease;
  display: block;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 6.5px);
}

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

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -6.5px);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10;
  pointer-events: none;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: #ede2cf;
  min-height: 104px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  top: 0;
  gap: 30px;
  z-index: 100;
  transition: transform 0.3s ease-in-out;
}

.burger {
  display: none;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.burger-line {
  width: 100%;
  height: 3px;
  background-color: #222;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.burgeractive .burger-line:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

.header__nav {
  justify-self: start;
}

.nav-menu__item {
  display: inline-block;
  margin-right: 44px;
  list-style: none;
  font-size: 24px;
  font-weight: 400;
  font-family: "Inter regular", sans-serif;
}

.nav-menu__link {
  text-decoration: none;
  color: #000000;
  transition: color 0.4s ease;
}

.nav-menu__link:hover {
  color: #268989;
}

.header__logo {
  justify-self: center;
  margin: 0;
  user-select: none;
}

.header__logo img {
  height: 104px;
  width: 104px;
}

.header__social_buttons {
  margin-right: 40px;
  justify-self: end;
  display: flex;
  gap: 10px;
}

.header__social-icon {
  transition: transform 0.3s ease-in-out;
}

.header__social-icon:hover {
  transform: scale(1.1);
}

.header__button {
  border: 2px solid #268989;
  background: #ede2cf;
  border-radius: 50px;
  padding: 7px 18px;
  margin-right: 40px;
  cursor: pointer;
  font-family: "Inter regular", sans-serif;
  font-size: 2.5vh;
  transition: color 0.4s ease, background-color 0.4s ease;
  max-width: 285px;
  min-height: 60px;
  transition: color 0.4s ease, background-color 0.4s ease;
  text-decoration: none;
}

.header__button:hover {
  background-color: #268989;
  color: #ffffff;
}

.main-banner {
  transform: translateY(-110px);
  z-index: 0;
  position: relative;
  aspect-ratio: 2/1;
}

.main-banner img {
  display: block;
  width: 100%;
  height: auto;
  box-sizing: border-box;
}

.main-banner__elements {
  position: absolute;
  aspect-ratio: 1/1;
}

.main-banner__title {
  position: absolute;
  z-index: 1;
  top: 18%;
  font-size: 42px;
  font-weight: 700;
  font-family: "Inter bold", sans-serif;
  margin-left: 8%;
  color: white;
  letter-spacing: 2%;
  user-select: none;
}

.main-banner__subtitle {
  position: absolute;
  z-index: 1;
  top: 23%;
  font-size: 56px;
  font-weight: 700;
  font-family: "Inter regular", sans-serif;
  margin-left: 8%;
  color: white;
  letter-spacing: 2%;
  user-select: none;
}

.main-banner__circle-group {
  position: absolute;
  top: 62%;
  left: 8%;
  width: 320px;
  height: 320px;
}

.main-banner__button {
  position: absolute;
  left: 11%;
  top: 10%;
  z-index: 100;
  background-color: rgba(38, 137, 137, 0.8);
  border: none;
  border-radius: 50%;
  width: 250px;
  height: 250px;
  color: white;
  font-weight: 700;
  font-size: 28px;
  font-family: "times new roman regular", sans-serif;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.main-banner__button:hover {
  background-color: rgba(38, 137, 137, 0.9);
  transform: scale(1.05);
  cursor: pointer;
}

.main-banner__circletext {
  position: absolute;
  z-index: 99;
  pointer-events: none;
  width: 320px;
  height: 320px;
  animation: spinText 18s linear infinite;
  transform-origin: 50% 50%;
}

.main-banner__circletext text {
  font-size: 25px;
  font-weight: 400;
  font-family: "times new roman regular", sans-serif;
  fill: rgb(255, 255, 255);
  letter-spacing: 0.15em;
  user-select: none;
  text-transform: uppercase;
}

@keyframes spinText {
  100% {
    transform: rotate(360deg);
  }
}

.main-banner__tg-redirect {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  top: 93%;
  left: 65%;
  z-index: 100;
  color: white;
  transition: transform 0.3s ease-in-out;
}

.main-banner__tg-redirect img {
  width: 45px;
  height: 45px;
}

.main-banner__tg-text {
  text-decoration: none;
  color: white;
  font-family: "times new roman regular", sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 10%;
}

.main-banner__tg-redirect:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.whyus-block {
  max-width: 100%;
  margin: 20px auto;
  margin-top: -60px;
  background: #F9F9F9;
  border-radius: 24px;
  padding: 20px;
  padding-inline: 0px;
  box-sizing: border-box;
  user-select: none;
}

.whyus-header {
  text-align: center;
  margin-bottom: 32px;
}

.whyus-header h2 {
  font-size: 64px;
  font-weight: 900;
  font-family: 'Inter', sans-serif;
  color: #000000;
}

.whyus-logo {
  font-family: 'Tan Pearl', serif;
  padding: 10px;
  color: #107A81;
  font-size: 64px;
  font-weight: 400;
  margin-left: 8px;
  background-color: #EDE2CF;
  border-radius: 20px;
  height: 107px;
  width: 442px;
}

@keyframes scroll-x {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-x-back {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.whyus-carousel {
  overflow: hidden;
  width: 100%;
}

.whyus-carousel-2 {
  margin-top: 32px;
  overflow: hidden;
  width: 100%;
}

.whyus-item {
  user-select: none;
}

.whyus-grid {
  display: flex;
  width: max-content;
  animation: scroll-x 80s linear infinite;
}

.whyus-grid-2 {
  display: flex;
  width: max-content;
  animation: scroll-x-back 80s linear infinite;
}

.whyus-item {
  flex: 0 0 auto;
  margin-right: 32px;
  background: #fff;
  width: 440px;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(72, 182, 231, 0.08);
  padding: 32px 24px;
  padding-top: 5px;
  text-align: left;
}

.whyus-icon {
  width: 90px;
  height: 90px;
  margin: 18px;
  margin-left: 0;
  border-radius: 12px;
  background: #77A1A7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
}

.whyus-icon img {
  width: 70px;
  height: 70px;
}

.whyus-title {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Times new roman bold', sans-serif;
  font-style: uppercase;
  font-weight: bold;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: #222;
}

.whyus-desc {
  font-size: 1rem;
  color: #444;
  font-family: 'Inter', sans-serif;
}

.vacancy-apply-block {
  max-width: 95%;
  height: 320px;
  margin: 40px auto;
  background: #B6ADB0;
  border: none;
  border-radius: 18px;
  position: relative;
  padding: 32px 36px 48px 36px;
  font-family: 'Times New Roman regular', serif;
  box-sizing: border-box;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.vacancy-title {
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 12px;
  user-select: none;
  letter-spacing: 2px;
}

.vacancy-desc {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  user-select: none;
}

.vacancy-form {
  display: flex;
  gap: 18px;
  margin-bottom: 16px;
}

.vacancy-input,
.vacancy-select {
  width: 16vw;
  padding: 12px 14px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  outline: none;
  background: #fff;
}

.vacancy-select:invalid {
  color: #b6a6a6;
}

.vacancy-submit {

  padding: 0 32px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  background: #107A81;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.18s;
  height: 44px;
  align-self: center;
  transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
  z-index: 2;
}

.vacancy-submit:hover {
  filter: brightness(0.9);
  transform: scale(1.05);
}

.vacancy-checkbox {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-top: 8px;
  color: #444;
  user-select: none;
}

.vacancy-checkbox a {
  color: #444;
}

.vacancy-checkbox input[type="checkbox"] {
  margin-right: 8px;
  width: 18px;
  height: 18px;
  accent-color: #107A81;
  border-radius: 4px;
}

.vacancy-bg-logo {
  position: absolute;
  top: -12%;
  right: 32px;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

.vacancy-bg-logo img {
  max-width: 400px;
  height: auto;
  z-index: 1;
}

.how-to-join-block {
  max-width: 95%;
  margin: 20px auto;
  border-radius: 24px;
  padding: 40px;
  padding-top: 0;
  box-sizing: border-box;
  user-select: none;
  height: auto;
  position: relative;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.how-to-join-block h1 {
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-style: bold;
  margin-top: auto;
}

.how-to-join__steps-block {
  gap: 32px;
  margin-top: 24px;
  max-width: 1040px;
  ;
}

.steps-block__step {
  opacity: 0;
  background-color: #F9F9F9;
  border-radius: 30px;
  padding: 15px 30px 1px 49px;
  box-shadow: 0 4px 4px rgba(0, 4, 0, 0.25);
  margin-bottom: 24px;
  transform: translateY(-60px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.steps-block__step.visible {
  opacity: 1;
  transform: translatey(0);
}

.steps-block__step:nth-child(1) {
  transition-delay: 0s;
}

.steps-block__step:nth-child(2) {
  transition-delay: 0.15s;
}

.steps-block__step:nth-child(3) {
  transition-delay: 0.3s;
}

.steps-block__step:nth-child(4) {
  transition-delay: 0.45s;
}

.steps-block__step:nth-child(5) {
  transition-delay: 0.6s;
}

.steps-block__step-title {
  font-family: 'Sofia sans semi condensed', sans-serif;
  font-weight: 400;
  font-size: 36px;
  letter-spacing: -3px;
}

.steps-block__step-paragraph {
  font-family: 'inter regular', serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 2%;
}

.steps-block__step-number {
  font-family: 'Sofia sans semi condensed', sans-serif;
  font-weight: 400;
  font-size: 36px;
  letter-spacing: -3px;
}

.vacancies-block {
  position: relative;
  max-width: 100%;
  height: 900px;
  margin: 20px auto;
  background: #B6ADB0;
  box-sizing: border-box;
  z-index: 0;
}

.vacancies-block::before,
.vacancies-block::after {
  content: "";
  position: absolute;
  left: 12%;
  width: 88%;
  height: 1px;
  background-color: #fff;
  z-index: 1;
}

.vacancies-block::before {
  top: 30%;
}

.vacancies-block::after {
  top: 45%;
}

.vacancies__vertical-line {
  position: absolute;
  left: 15%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: #ffffff;
  z-index: 1;
}

.vacancies__circle-group {
  padding: 10px;
  position: absolute;
  top: 20%;
  right: 5%;
  width: 320px;
  height: 320px;
  z-index: 10;
  background: #B6ADB0;
  border-radius: 50%;
}

.vacancies__button {
  position: absolute;
  left: 13.5%;
  top: 13%;
  z-index: 10;
  background-color: rgba(38, 137, 137, 0.8);
  border: none;
  border-radius: 50%;
  width: 250px;
  height: 250px;
  color: white;
  font-weight: 400;
  font-size: 24px;
  font-family: "times new roman regular", sans-serif;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.vacancies__button:hover {
  background-color: rgba(38, 137, 137, 0.9);
  transform: scale(1.05);
  cursor: pointer;
}

.vacancies__circletext {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  width: 320px;
  height: 320px;
  animation: spinText 18s linear infinite;
  transform-origin: 50% 50%;
}

.vacancies__circletext text {
  font-size: 25px;
  font-family: "times new roman regular", sans-serif;
  fill: rgb(255, 255, 255);
  letter-spacing: 0.15em;
  user-select: none;
  text-transform: uppercase;
}

.vacancies__title {
  position: absolute;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  left: 20%;
  user-select: none;
  line-height: 100%;
}

.vacancies__title h1 {
  font-family: "sofia sans black", sans-serif;
  color: white;
  font-weight: 900;
  letter-spacing: 4px;
  font-size: 64px;
}

.vacancies__title h2 {
  font-family: "sofia sans light", sans-serif;
  font-size: 64px;
  color: white;
  font-weight: 300;
}

.vacancies__btn-block {
  position: absolute;
  display: flex;
  gap: 16px;
  top: 20%;
  left: 18%;
}

.vacancies__select-button {
  background: transparent;
  color: white;
  border: 0.2px solid white;
  border-radius: 5px;
  padding: 8px 24px;
  max-width: 250px;
  min-height: 60px;
  letter-spacing: 2px;
  font-size: 36px;
  cursor: pointer;
  opacity: 0.6;
  transition: background 0.3s ease-in-out, color 0.3s, border-color 0.3s ease-in-out, opacity 0.3s;
}

.vacancies__select-button:hover {
  opacity: 0.7;
  border-color: #B6ADB0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.vacancies__select-button.active {
  background: linear-gradient(135deg, #189FA8 0%, #107A81 100%);
  border: none;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.25);
  opacity: 1;
  color: black;
}

.vacancies__content {
  display: flex;
  opacity: 0;
  transition: opacity 0.3s;
}

.vacancies__content.active {
  display: flex;
  opacity: 1;
}

.vacancies__content.hide {
  opacity: 0 !important;
  pointer-events: none;
}

.vacancies__content h1 {
  font-family: "sofia sans black", sans-serif;
  color: white;
  font-weight: 900;
  letter-spacing: 4px;
  font-size: 48px;
  position: absolute;
  top: 280px;
  left: 23%;
  user-select: none;
  line-height: 100%;
}

.vacancies__content-in {
  max-width: 1400px;
  padding-top: 40px;
  position: absolute;
  top: 400px;
  left: 18%;
  font-family: "Sofia Sans Light", serif;
  font-weight: 400;
  font-size: 32px;
  user-select: none;
}

.vacancies__content-in p {
  margin: 0;
  font-family: "Sofia Sans Light", serif;
  letter-spacing: 2px;
}

.vacancies__tag-block {
  display: flex;
  gap: 10px;
  user-select: none;
  margin-bottom: 20px;
  margin-top: 20px;
}

.vacancies__content-tag {
  font-family: "Sofia Sans Light", serif;
  color: white;
  font-weight: 400;
  font-size: 20px;
  border-radius: 30px;
  border: 2px solid white;
  padding: 13px 19px;
}

.reviews__block {
  position: relative;
  margin-top: 40px;
  height: 705px;
  max-width: 100%;
  background: #D9C6BC;
  padding: 40px;
}

.reviews__frame {
  display: flex;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  height: 100%;
}

.arrow {
  background: none;
  border: none;
  font-size: 50px;
  cursor: pointer;
  z-index: 10;
  opacity: 0.5;
  transition: transform 0.3s ease-in-out;
}

.arrow:hover {
  transform: scale(1.1);
}

.reviews__frame-content {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  z-index: 1;
  user-select: none;
  transition: none;
}

.reviews__frame h1 {
  font-family: 'Sofia Sans Black';
  font-weight: 800;
  font-size: 32px;
  line-height: 100%;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}

.review-photo {
  margin-top: 64px;
}

.review-photo img {
  width: 200px;
  height: auto;
  border-radius: 50%;
}

.review-text {
  margin-top: 40px;
  padding: 40px;
  font-family: 'Sofia Sans Light';
  font-weight: 300;
  font-size: 32px;
  text-align: center;
}

.review-author {
  margin-top: 30px;
  font-family: 'Sofia Sans Light';
  font-weight: bold;
  font-size: 32px;
}

.slide-out-right {
  animation: slideOutRight 0.35s forwards;
}

.slide-out-left {
  animation: slideOutLeft 0.35s forwards;
}

.slide-in-right {
  animation: slideInRight 0.35s forwards;
}

.slide-in-left {
  animation: slideInLeft 0.35s forwards;
}

@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(120px);
  }
}

@keyframes slideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-120px);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-120px);
  }

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(120px);
  }

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

.faq-block {
  max-width: 100%;
  margin: 64px auto 50px auto;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

.faq-title {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 38px;
  margin-top: 50px;
  font-family: 'Inter bold', sans-serif;
  user-select: none;
}

.faq-title-light {
  font-weight: 800;
  font-size: 40px;
  color: #222;
  letter-spacing: -2px;
}

.faq-title-bold {
  font-weight: 900;
  font-size: 48px;
  color: #222;
  background: #EDE2CF;
  border-radius: 9px;
  padding: 2px 10px;
  letter-spacing: -2px;
}

.faq-list {
  max-width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.faq-item {
  width: 60%;
  background: #D9D9D9;
  border-radius: 16px;
  margin-bottom: 8px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s;
  overflow: hidden;
}

.faq-btn {
  width: auto;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 20px 32px;
  padding-right: 32px;
  font-family: 'Sofia Sans Light', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
  cursor: pointer;
  outline: none;
  position: relative;
  z-index: 2;
}

.faq-btn:hover,
.faq-btn:focus-visible {
  background: #C1C1C1;
}

.faq-icon {
  width: 26px;
  height: 26px;
  position: relative;
  display: inline-block;
  transition: background 0.2s;
  flex-shrink: 0;
}

.faq-btn:hover .faq-icon-plus::before,
.faq-btn:hover .faq-icon-plus::after {
  background: #107A81;
  transition: background 0.18s;
}

.faq-icon-plus,
.faq-icon-minus {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.faq-icon-plus::before,
.faq-icon-plus::after {
  content: "";
  position: absolute;
  background: #B6ADB0;
  border-radius: 2px;
  transition: background 0.2s;
}

.faq-icon-plus::before {
  top: 12px;
  left: 4.5px;
  width: 18px;
  height: 4px;
}

.faq-icon-plus::after {
  left: 12px;
  top: 4.5px;
  width: 4px;
  height: 18px;
}

.faq-icon-minus::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 4px;
  width: 18px;
  height: 4px;
  background: #107A81;
  border-radius: 2px;
}

.faq-icon-minus {
  opacity: 0;
  transform: scale(0.5) rotate(-30deg);
}

.faq-item.open .faq-icon-plus {
  opacity: 0;
  transform: scale(0.7) rotate(45deg);
}

.faq-item.open .faq-icon-minus {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.faq-answer {
  max-height: 800px;
  opacity: 1;
  overflow: hidden;
  transform: translateY(0) scaleY(1);
  transition: max-height 0.2s cubic-bezier(.77, .28, .17, .84), opacity 0.2s cubic-bezier(.77, .28, .17, .84), transform 0.2s cubic-bezier(.77, .28, .17, .84), padding-bottom 0.2s cubic-bezier(.77, .28, .17, .84);
  will-change: opacity, transform, max-height, padding-bottom;
  display: block;
  font-size: 32px;
  font-family: 'Sofia Sans light', serif;
  font-weight: 400;
  letter-spacing: -1px;
  padding: 0 28px;
  color: #222;
  background: #C1C1C1;
  line-height: 1.6;
  padding-bottom: 20px;
}

.faq-item:not(.open) .faq-answer {
  opacity: 0;
  transform: translateY(-30px) scaleY(0.92);
  max-height: 0;
  pointer-events: none;
  padding-bottom: 0;
}

.faq-item.open .faq-btn {
  background: #C1C1C1;
}

.footer-block {
  max-width: 100%;
  background: #AEAEAE;
  padding: 48px 40px 0 40px;
  display: flex;
  justify-content: center;
  margin-top: 108px;
  overflow: hidden;
}

.footer-contacts {
  display: flex;
  width: 100vw;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

.footer-contacts-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Inter Regular', sans-serif;
  color: #fff;
  font-size: 24px;
  letter-spacing: 0px;
  padding-top: 20px;
}

.footer-city,
.footer-address {
  user-select: none;
}

.footer-socials {
  display: flex;
  gap: 16px;
  padding-top: 10px;
}

.footer-social-link img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: transform 0.2s;
}

.footer-social-link img:hover {
  transform: scale(1.07);
}

.footer-contacts-center {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-family: 'Inter Regular', sans-serif;
  font-size: 24px;
  letter-spacing: 0px;
}

.footer-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 8px;
  user-select: none;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
}

.footer-nav li a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-family: 'Sofia Sans', sans-serif;
  transition: color 0.2s;
}

.footer-nav li a:hover {
  color: #222;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  opacity: 0.85;
}

.footer-contacts-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__circle-group {
  position: absolute;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  right: 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center center;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #268989;
  opacity: 0.8;
  color: #fff;
  border: none;
  font-size: 20px;
  font-family: 'Inter Regular', sans-serif;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s, transform 0.12s cubic-bezier(.25, .8, .25, 1);
}

.footer__button:hover {
  background: #077B72;
  opacity: 0.9;
}

.footer__circletext {
  width: 200px;
  height: 200px;
  display: block;
  z-index: 1;
  animation: spinText 18s linear infinite;
}

.footer__circletext text {
  fill: #fff;
  font-size: 27.5px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 2px;
  opacity: 1;
}

/* Попап ФОС */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-container {
  position: relative;
  background: #EDE2CF;
  border-radius: 20px;
  padding: 40px;
  width: 90%;
  max-width: 560px;
  min-width: 40%;
  max-height: 90vh;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.popup-overlay.active .popup-container {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 36px;
  line-height: 1;
  color: #222;
  cursor: pointer;
  transition: transform 0.2s, color 0.2s;
}

.popup-close:hover {
  transform: scale(1.1);
  color: #107A81;
}

.popup-title {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 28px;
  color: #222;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.form-group input,
.form-group select {
  padding: 14px 16px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  border: 2px solid #B6ADB0;
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #268989;
}

.radio-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  padding-left: 28px;
}

.radio-label:hover {
  color: #268989;
}

.radio-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  cursor: pointer;
  accent-color: #268989;
}

.radio-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #B6ADB0;
  border-radius: 50%;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.radio-label::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 8px;
  height: 8px;
  background: #268989;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
  opacity: 0;
}

.radio-label:hover::before {
  border-color: #268989;
  box-shadow: 0 0 0 2px rgba(38, 137, 137, 0.1);
}

.radio-label input[type="radio"]:checked+span~.radio-label::before,
.radio-label:has(input[type="radio"]:checked)::before {
  border-color: #268989;
  box-shadow: 0 0 0 2px rgba(38, 137, 137, 0.1);
}

.radio-label:has(input[type="radio"]:checked)::after,
.radio-label input[type="radio"]:checked~.radio-label::after {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

.radio-label.active::after {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

.checkbox-group {
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #268989;
}

.checkbox-label a {
  color: #107A81;
  text-decoration: underline;
}

.popup-submit {
  padding: 16px;
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #fff;
  background: #268989;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 12px;
}

.popup-submit:hover:not(:disabled) {
  background: #107A81;
  transform: translateY(-2px);
}

.popup-submit:disabled {
  background: #B6ADB0;
  cursor: not-allowed;
}

.popup-notification {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #268989;
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}

.popup-notification.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 600px) {
  .popup-container {
    padding: 24px;
    width: 95%;
  }

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

  .radio-group {
    flex-direction: column;
    gap: 10px;
  }
}

.privacy-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: #ede2cf;
  min-height: 104px;
  width: 100%;
  box-sizing: border-box;
  position: static;
  top: 0;
  gap: 30px;
  z-index: 100;
  transition: transform 0.3s ease-in-out;
}

.privacy-header .header-logo {
  justify-self: center;
  margin: 0;
  user-select: none;
}

.privacy-header .header-logo img {
  width: 104px;
  height: 104px;
}

.privacy-content {
  max-width: 900px;
  margin: 60px auto 80px auto;
  padding: 0 24px;
  font-family: 'Inter', sans-serif;
  line-height: 1.75;
  color: #222;
  transform: opac;
}

.privacy-content h1 {
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -1px;
  color: #222;
}

.privacy-section {
  margin-bottom: 36px;
}

.privacy-section h2 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 18px;
  margin-top: 28px;
  color: #222;
}

.privacy-section p {
  font-size: 18px;
  margin-bottom: 14px;
  line-height: 1.7;
  color: #333;
}

.privacy-back-link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #444;
  text-decoration: none;
  margin: 0 0 0 32px;
  transition: color 0.2s;
}

.privacy-back-link:hover {
  color: #107A81;
}

@media (max-width: 1440px) {
  .vacancy-bg-logo {
    top: 10%;
    right: 12px;
  }

  .vacancy-bg-logo img {
    max-width: 250px;
    right: 1vw;
  }

  .header {
    gap: 20px;
  }

  .nav-menu {
    padding: 0 0 0 20px;
  }

  .main-banner__circle-group {
    scale: 0.8;
  }

  .vacancies__circle-group {
    scale: 0.8;
  }
}

@media (max-width: 1280px) {
  .nav-menu__item {
    font-size: 20px;
  }

  .main-banner__circle-group {
    scale: 0.5;
    top: 55%;
  }

  .vacancies__circle-group {
    scale: 0.55;
    right: 0;
  }

  .vacancy-bg-logo img {
    max-width: 150px;
    right: 1vw;
  }

  .main-banner__title {
    font-size: 44px;
  }

  .main-banner__subtitle {
    font-size: 42px;
  }

  .main-banner__tg-text {
    font-size: 18px;
  }

  .nav-menu__item {
    margin-right: 20px;
  }

  .vacancies__content-tag {
    font-size: 26px;
  }

  .vacancy-apply-block {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 24px;
    align-items: center;
  }

  .vacancy-bg-logo {
    position: static;
    order: -1;
    text-align: center;
  }

  .vacancy-bg-logo img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
  }

  .vacancy-title {
    font-size: 22px;
    text-align: center;
  }

  .vacancy-desc {
    font-size: 20px;
    text-align: center;
    margin-bottom: 16px;
  }

  .vacancy-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 400px;
  }

  .vacancy-input,
  .vacancy-select {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {

  html,
  body {
    width: 100%;
    max-width: 100vw;
    /* overflow-x убран с html/body — ломает position:fixed (куки-баннер, back-to-top и др.) */
  }

  /* Горизонтальный скролл блокируем на контентных обёртках, не на html/body */
  main,
  .header,
  .footer-block {
    overflow-x: hidden;
  }

  .popup-overlay {
    width: 100vw;
    height: 100vh;
  }

  /* Гарантируем корректный fixed для куки-баннера */
  .cookie-banner {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    box-sizing: border-box;
  }

  .header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 30px;
    width: 100%;
    box-sizing: border-box;
  }

  .burger {
    position: fixed !important;
    top: 20px;
    left: 20px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 50px;
    height: 50px;
    background: #107A81; 
    padding: 12px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInBurger 0.5s ease-in-out;
  }

  @keyframes fadeInBurger {
    from {
      opacity: 0;
      transform: scale(0.8) translateY(-10px);
    }

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

  .burger:hover {
    background: #107A81;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }

  .burger span {
    background: #fff;
    width: 26px;
    height: 3px;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .burger.active {
    position: fixed !important;
    top: 30px;
    left: 30px;
    background: rgba(30, 107, 107, 0.98);
  }

  .header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }

  .header__logo img {
    width: 80px;
    height: 80px;
  }

  .header__social_buttons {
    position: absolute;
    right: 30px;
    display: flex;
    gap: 8px;
    margin-right: 1vw;
  }

  .header__social-icon {
    width: 40px;
    height: 40px;
  }

  .header__button {
    display: none;
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100vh;
    background: #ede2cf;
    padding: 100px 30px 40px 30px;
    transition: left 0.4s ease-in-out;
    z-index: 999;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .header__nav.active {
    left: 0;
  }

  .nav-menu {
    flex-direction: column;
    gap: 24px;
    padding: 0;
  }

  .nav-menu__item {
    display: block;
    margin: 0;
  }

  .nav-menu__link {
    font-size: 20px;
    padding: 12px 0;
    display: block;
  }

  .main-banner {
    width: 100%;
    transform: translateY(0);
    margin-top: 0;
    margin-bottom: 20px;
    min-height: 600px;
    position: relative;
    box-sizing: border-box;
  }

  .main-banner__title {
    font-size: 26px;
    top: 10%;
    left: 5%;
    margin-left: 0;
  }

  .main-banner__subtitle {
    font-size: 34px;
    top: 16%;
    left: 5%;
    margin-left: 0;
  }

  .main-banner__circle-group {
    scale: 0.48;
    top: 42%;
    left: 4%;
  }

  .main-banner__tg-redirect {
    display: none;
  }

  .whyus-block {
    width: 100%;
    margin-top: 20px;
    padding: 30px 0;
    overflow: hidden;
    box-sizing: border-box;
  }

  .whyus-header {
    padding: 0 30px;
  }

  .whyus-header h2 {
    font-size: 48px;
  }

  .whyus-logo {
    font-size: 48px;
    width: 350px;
    height: 90px;
  }

  .whyus-cards {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    gap: 20px;
    padding: 20px 30px;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    box-sizing: border-box;
  }

  .whyus-item {
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    padding: 24px 20px;
  }

  .whyus-icon {
    width: 70px;
    height: 70px;
  }

  .whyus-icon img {
    width: 55px;
    height: 55px;
  }

  .whyus-title {
    font-size: 16px;
  }

  .whyus-desc {
    font-size: 14px;
  }

  .how-to-join-block {
    width: 100%;
    padding: 40px 30px;
    box-sizing: border-box;
  }

  .how-to-join-block h1 {
    font-size: 32px;
  }

  .steps-block__step {
    padding: 18px 24px;
  }

  .steps-block__step-title {
    font-size: 28px;
  }

  .steps-block__step-paragraph {
    font-size: 18px;
  }

  .steps-block__step-number {
    font-size: 28px;
  }

  .vacancies-block {
    width: 100%;
    height: auto;
    min-height: 800px;
    padding: 40px 30px;
    box-sizing: border-box;
  }

  .vacancies__title {
    left: 12%;
    gap: 10px;
    top: 8%;
  }

  .vacancies__title h1 {
    font-size: 42px;
  }

  .vacancies__title h2 {
    font-size: 42px;
  }

  .vacancies__btn-block {
    left: 12%;
    gap: 12px;
    flex-wrap: wrap;
  }

  .vacancies__select-button {
    font-size: 26px;
    padding: 8px 20px;
    min-height: 52px;
  }

  .vacancies__content h1 {
    font-size: 32px;
    top: 270px;
    left: 12%;
  }

  .vacancies__content-in {
    top: 330px;
    left: 12%;
    font-size: 22px;
    max-width: 68%;
  }

  .vacancies__content-tag {
    font-size: 15px;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .vacancies__circle-group {
    scale: 0.42;
    right: 0%;
    top: 18%;
  }

  .vacancies__vertical-line {
    left: 10%;
  }

  .vacancies-block::before {
    top: 33%;
    left: 8%;
    width: 90%;
  }

  .vacancies-block::after {
    top: 43%;
    left: 8%;
    width: 90%;
  }

  .vacancy-apply-block {
    width: 100%;
    height: auto;
    padding: 32px 30px;
    box-sizing: border-box;
  }

  .vacancy-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .vacancy-desc {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .vacancy-form {
    flex-direction: column;
    gap: 14px;
  }

  .vacancy-input,
  .vacancy-select {
    width: 100%;
    max-width: 400px;
    font-size: 16px;
    padding: 12px 14px;
  }

  .vacancy-submit {
    width: 100%;
    max-width: 200px;
    padding: 12px 24px;
    font-size: 16px;
  }

  .vacancy-bg-logo {
    display: none;
  }

  .reviews__block {
    width: 100%;
    height: auto;
    padding: 40px 30px;
    box-sizing: border-box;
  }

  .reviews__frame h1 {
    font-size: 28px;
    top: 30px;
  }

  .review-photo img {
    width: 150px;
    height: 150px;
  }

  .review-text {
    font-size: 20px;
    padding: 20px;
  }

  .review-author {
    font-size: 24px;
  }

  .arrow {
    font-size: 40px;
  }

  .faq-block {
    width: 100%;
    padding: 40px 30px;
    box-sizing: border-box;
  }

  .faq-title-light {
    font-size: 32px;
  }

  .faq-title-bold {
    font-size: 38px;
  }

  .faq-item {
    width: 75%;
  }

  .faq-btn {
    font-size: 22px;
    padding: 18px 24px;
  }

  .faq-answer {
    font-size: 20px;
  }

  .footer-block {
    width: 100%;
    padding: 40px 30px;
    box-sizing: border-box;
  }

  .footer-contacts {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
  }

  .footer-contacts-left {
    font-size: 16px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
  }

  .footer-contacts-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
  }

  .footer-contacts-right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
  }

  .footer-title {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
  }

  .footer-nav li a {
    font-size: 16px;
  }

  .footer-logo {
    margin-top: 0;
  }

  .footer-logo img {
    width: 50px;
    height: 50px;
  }

  .footer__circle-group {
    position: relative;
    scale: 0.65;
    right: auto;
    margin: 0;
  }

  .footer-social-link img {
    width: 40px;
    height: 40px;
  }

  .burger {
    display: flex;
  }
}

@media (min-width: 320px) and (max-width: 768px) {

  html,
  body {
    /* overflow-x убран с html/body — ломает position:fixed (куки-баннер, back-to-top и др.) */
    max-width: 100%;
  }

  /* Горизонтальный скролл блокируем на контентных обёртках, не на html/body */
  main,
  .header,
  .footer-block,
  .whyus-block,
  .vacancies-block,
  .reviews__block,
  .faq-block,
  .how-to-join-block,
  .vacancy-apply-block {
    overflow-x: hidden;
  }

  .popup-overlay {
    max-width: 100%;
    overflow-x: hidden;
  }

  .header {
    position: relative;
    top: 0;
    left: 0;
    max-width: 100%;
    padding: 2px;
    background: #ede2cf;
    z-index: 1000;
    display: grid;
    grid-template-columns: 120px 1fr 150px;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
  }

  .burger {
    position: fixed !important;
    grid-column: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    background: #107A81;
    border: none;
    padding: 10px;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    top: 51.5px;
    left: 2%;
  }

  .burger:active {
    transform: scale(0.95);
  }

  .burger span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 6px);
  }

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

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -6px);
  }

  .header__logo {
    grid-column: 2;
    justify-self: center;
  }

  .header__logo img {
    width: 62px;
    height: 62px;
  }

  .header__social_buttons {
    margin-right: 1vw;
    grid-column: 3;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: flex-end;
  }

  .header__social-link {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #107A81;
    border-radius: 50%;
    transition: background 0.3s ease;
  }

  .header__social-icon {
    width: 28px;
    height: 28px;
  }

  .header__button {
    display: none;
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 160px;
    height: 100vh;
    background: #ede2cf;
    padding: 100px 30px 40px 30px;
    transition: left 0.4s ease-in-out;
    z-index: 999;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .header__nav.active {
    left: 0;
  }

  .main-banner {
    margin-top: 70px;
    max-width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url('/css/assets/main-banner.png') right 20% center / cover no-repeat;
  }

  .main-banner img {
    display: none;
  }

  .main-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
  }

  .main-banner__content {
    position: relative;
    z-index: 1;
    max-width: 100%;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
  }

  .main-banner__subtitle {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    top: 14%;
  }

  .main-banner__title {
    top: 10%;
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    word-wrap: break-word;
    max-width: 100%;
  }

  .main-banner__circle-group {
    position: absolute;
    left: -40px;
    top: 200px;
  }

  .main-banner__tg-redirect {
    display: none;
    padding: 14px 30px;
    font-size: 14px;
    background: #268989;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
    text-align: center;
  }

  .main-banner__telegram:hover {
    background: #1f7373;
  }

  .why-us {
    max-width: 100%;
    padding: 50px 20px;
    box-sizing: border-box;
    background: #fff;
  }

  .whyus-header h2 {
    font-size: 48px;
    line-height: 1.3;
  }

  .whyus-logo {
    font-size: 40px;
  }

  .why-us__title {
    font-size: 20px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 40px;
  }

  .whyus-carousel,
  .whyus-carousel-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
  }

  .whyus-item {
    padding: 20px 15px;
    background: #f5f5f5;
    border-radius: 15px;
    text-align: center;
    box-sizing: border-box;
    max-width: 240px;
  }

  .whyus-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: #268989;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .whyus-icon img {
    width: 28px;
    height: 28px;
  }

  .whyus-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  .why-us__card-text {
    font-size: 12px;
    line-height: 1.4;
    color: #666;
  }

  .vacancy-checkbox {
    font-size: 8px;
  }

  .steps {
    max-width: 100%;
    padding: 50px 20px;
    box-sizing: border-box;
    background: #f9f9f9;
  }

  .how-to-join-title {
    font-size: 20px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 20px;
  }

  .how-to-join__steps-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 100%;
  }

  .steps-block__step {
    padding: 25px 20px;
    background: #fff;
    border-radius: 20px;
    box-sizing: border-box;
  }

  .steps-block__step-number {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: black;
    letter-spacing: 0px;
  }

  .steps-block__step-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0px;
  }

  .steps-block__step-paragraph {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
  }

  .reviews__block {
    max-width: 100%;
    padding: 50px 20px;
    box-sizing: border-box;
    background: #f5e5d8;
  }

  .reviews__frame h1 {
    top: 10px !important;
    font-size: 20px;
    line-height: 1;
    text-align: center;
    margin-bottom: 0px;
  }

  .reviews__frame {
    max-width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .reviews__frame-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    text-align: center;
    box-sizing: border-box;
    margin-top: 60px;
  }

  .review-photo {
    width: 140px;
    height: 140px;
    margin: 0 auto 0px;
    border-radius: 50%;
    overflow: hidden;
  }

  .review-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .review-text {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
    color: #333;
    padding: 30px;
  }

  .review-author {
    margin-top: 0px;
    font-size: 18px;
    font-weight: bold;
    color: #000;
  }

  .arrow {
    position: absolute;
    top: 50%;
    width: 35px;
    height: 35px;
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 16px;
    z-index: 10;
  }

  .arrow.left {
    left: 10px;
  }

  .arrow.right {
    right: 10px;
  }

  .vacancies__vertical-line {
    display: none;
  }

  .vacancies-block {
    height: 1000px;
  }

  .vacancies-block::before,
  .vacancies-block::after {
    content: "";
    position: absolute;
    left: 0%;
    width: 100%;
    height: 1px;
    background-color: #fff;
    z-index: 1;
  }

  .vacancies__title h2 {
    display: none;
  }

  .vacancies__title {
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
  }

  .vacancies__title h1 {
    font-size: 44px;
  }

  .vacancies-block::before {
    top: 10%;
  }

  .vacancies__btn-block {
    flex-direction: column;
    left: 50%;
    transform: translateX(-50%);
    top: 12%
  }

  .vacancies__circletext {
    display: none;
  }

  .vacancies__circle-group {
    scale: 1;
    width: 240px;
    height: 120px;
    background: none;
    top: 895px;
    left: 50%;
    transform: translateX(-57.5%);
  }

  .vacancies__button {
    width: 240px;
    height: 60px;
    border-radius: 10px;
    background-color: rgba(38, 137, 137, 1);
    font-size: 20px;
  }

  .vacancies__select-button {
    font-size: 18px;
    min-height: 32px;
  }

  .vacancies-block::after {
    top: 29%
  }

  .vacancies__content h1 {
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    top: 310px;
  }

  .vacancies__content-in {
    top: 320px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 17px;
    line-height: 1;
  }

  .vacancies__tag-block {
    flex-direction: column;
    columns: 2;
    margin-bottom: 10px;
    margin-top: 10px;
  }

  .vacancies__content-tag {
    flex: 0 0 calc(50% - 100px);
    font-size: 14px;
  }

  .faq__block {
    max-width: 100%;
    padding: 50px 20px;
    box-sizing: border-box;
    background: #f9f9f9;
  }

  .faq-title {
    line-height: 1.3;
    text-align: center;
    margin-bottom: 40px;
  }

  .faq-title-light {
    font-size: 28px;
  }

  .faq-title-bold {
    font-size: 28px;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
  }

  .faq-item {
    background: #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
    width: 80%;
  }

  .faq-btn {
    padding: 10px 10px 5px 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    text-transform: uppercase;
  }

  .faq-btn::after {
    content: '';
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    color: #268989;
    transition: transform 0.3s ease;
  }

  .faq-icon.active::after {
    transform: translateY(-50%) rotate(45deg);
  }

  .faq-answer {
    font-size: 18px;
    padding: 10px 10px 5px 20px;
  }

  .footer-block {
    width: 100%;
    max-width: 100vw;
    padding: 40px 20px;
    box-sizing: border-box;
  }

  .footer-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: uppercase;
  }

  .footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
  }

  .footer-contacts-left {
    font-size: 13px;
    line-height: 1.6;
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
  }

  .footer-nav a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-nav a:hover {
    color: #268989;
  }

  .footer__button {
    width: 120px;
    height: 120px;
    background: #268989;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
  }

  .footer-socials {
    display: flex;
    gap: 15px;
    justify-content: center;
  }

  .footer-social-link {
    width: 45px;
    height: 45px;
    background: #107A81;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer__social img {
    width: 24px;
    height: 24px;
  }

  .footer__logo {
    width: 60px;
    height: 60px;
    margin-top: 20px;
  }

  .footer-contacts-right {
    display: none;
  }
}

@media (min-width: 1025px) {
  .nav-menu__item-wantjob {
    display: none;
  }
}

@media (min-width: 320px) and (max-width: 1024px) {
  .nav-menu__item-wantjob {
    text-decoration: none;
    list-style: none;
    margin-top: 20px;
    position: absolute;
    left: 10%;
  }

  .privacy-content h1 {
    font-size: 28px;
  }

  .header__button-1 {
    border: 2px solid #268989;
    background: #ede2cf;
    border-radius: 20px;
    padding: 7px 38px;
    margin-right: 40px;
    cursor: pointer;
    font-family: "Inter regular", sans-serif;
    font-size: 20px;
    transition: color 0.4s ease, background-color 0.4s ease;
    max-width: 365px;
    min-height: 60px;
    transition: color 0.4s ease, background-color 0.4s ease;
    text-decoration: none;
  }
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  background: #268989;
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(38, 137, 137, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #1e6b6b;
  box-shadow: 0 6px 16px rgba(38, 137, 137, 0.4);
}

.back-to-top:active {
  transform: translateY(0) scale(0.95);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}

.vacancy-page-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #268989 0%, #107A81 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(38, 137, 137, 0.4);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    z-index: 10001;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.vacancy-page-notification.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

@media (max-width: 768px) {
    .vacancy-page-notification {
        left: 20px;
        right: 20px;
        top: auto;
        bottom: 20px;
        text-align: center;
        font-size: 14px;
        padding: 14px 20px;
    }
}


/* ============================================
   COOKIE BANNER — GDPR / ePrivacy compliant
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #2b2825;
    color: #f0ece4;
    padding: 20px 32px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Inter', sans-serif;
}

.cookie-banner.cookie-banner--visible {
    transform: translateY(0);
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner__icon {
    font-size: 32px;
    flex-shrink: 0;
    line-height: 1;
}

.cookie-banner__text {
    flex: 1;
    min-width: 220px;
}

.cookie-banner__title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.cookie-banner__desc {
    font-size: 13px;
    color: #c8c4bc;
    line-height: 1.5;
    max-width: 100%;
}

.cookie-banner__desc a {
    color: #4fbfbf;
    text-decoration: underline;
    transition: color 0.2s;
}

.cookie-banner__desc a:hover {
    color: #268989;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: background 0.2s, transform 0.15s, color 0.2s;
    white-space: nowrap;
    min-height: 40px;
}

.cookie-btn:focus-visible {
    outline: 2px solid #268989;
    outline-offset: 3px;
}

.cookie-btn--accept {
    background: #107A81;
    color: #ffffff;
}

.cookie-btn--accept:hover {
    background: #268989;
    transform: translateY(-1px);
}

.cookie-btn--reject {
    background: transparent;
    color: #c8c4bc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn--reject:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 16px 20px;
    }

    .cookie-banner__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

/* ============================================
   COOKIE BANNER — дополнительные адаптивы
   Фикс: position:fixed + box-sizing для
   корректной работы на мобильных устройствах
   ============================================ */

/* Принудительно вырываем куки-баннер из любого
   ломаного stacking context (overflow на родителях) */
.cookie-banner {
    will-change: transform;
    contain: layout style;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 14px 16px;
    }

    .cookie-banner__icon {
        font-size: 24px;
    }

    .cookie-banner__title {
        font-size: 15px;
    }

    .cookie-banner__desc {
        font-size: 12px;
    }

    .cookie-btn {
        padding: 10px 16px;
        font-size: 13px;
        min-height: 44px; /* touch target */
    }
}
