:root {
  --font-main: "Montserrat", sans-serif;
  --color-white: #F9F9F9;
  --color-dark: #1A1A1A;
  --color-accent: #20b899;
  --color-accent2: #E1460E;
  --color-accent-dark: #0A3C31;
  --container-width: 1400px; 
}

body {
  margin: 0;
  font-family: var(--font-main);
  background-color: var(--color-white);
  color: var(--color-dark);
  overflow-x: hidden; 
}

/* Teacher page subject buttons */
.subject-nav-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 20px 20px 30px;
  max-width: 900px;
  margin: 0 auto;
}

.subject-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: #ececec;
  color: var(--color-dark);
  text-decoration: none;
  border-radius: 18px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #ddd;
  transition: all 0.25s ease;
}

.subject-nav-btn:hover {
  background: var(--color-accent);
  color: var(--color-dark);
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(32,184,153,0.3);
}

.subject-nav-section {
  padding: 20px 0 10px;
  text-align: center;
}

.subject-nav-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
}

/* Header */
.header {
  padding: 20px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.logo {
  height: auto;
  width: 130px;
}

.header-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.header-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 550;
  font-size: 16px;
}

.header-nav a:hover {
  font-weight: 650;
}

.header-nav .semibold{
  position: relative; 
  display: flex;
  align-items: center;     
  justify-content: center;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 700;
  font-size: 14px;
  max-width: 110px;
  text-align: center;
}

.header-nav .semibold:hover{
 font-weight: 700;
}
.header-nav .semibold p {
    z-index: 2;
}

.ellipse{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: auto;
  transition: transform 0.7s ease-in-out;
}

.header-nav .semibold:hover .ellipse{
  transform: translate(-50%, -50%) rotate(180deg) scale(1.3);
}


.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: var(--color-accent-dark);
  text-decoration: none;
  /* height: 45px; */
  /* width: 160px; */
  padding: 17px 25px;
  border-radius: 18px;
  font-weight: 650;
  font-size: 14px;
}
.btn-cta:hover {
  background-color: var(--color-accent2);
  color: var(--color-white);
  box-shadow: 0 0 3px 0 var(--color-accent2);
  transition: all 0.3s ease-in-out;
}
.header-right{
    display: flex;
    gap: 20px;
    align-items: center;
}

.theme-toggle {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  line-height: 0;
  display: flex;
  align-items: center;
}

.theme-toggle img {
  display: block;
  width: 69px;
  height: 30px;
}

.phone-icon {
max-width: 30px;
}
.zaivka{
  background-color: var(--color-accent2);
  color: var(--color-white);
}
.zaivka:hover{
  background-color: var(--color-accent-dark);
  color: var(--color-white);
  box-shadow: 0 0 5px 0 var(--color-accent-dark);
  transition: all 0.3s ease-in-out;
}
.payment:hover{
  background-color: var(--color-accent-dark);
  color: var(--color-white);
  box-shadow: 0 0 5px 0 var(--color-accent-dark);
  transition: all 0.3s ease-in-out;
}

/* Затемнение фона */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow: visible;
}

/* Контент окна */
.modal-content {
  background-image: url(assets/фон_формы.png);
   background-size:cover; 
  background-position: center;
  background-repeat: no-repeat;
  padding: 45px 45px 30px 45px;
  max-width: 350px;
  max-height: 600px;
  border-radius: 70px;
  position: relative;
  animation: show 0.3s ease;
  font-weight: 600;
  /* overflow-y: scroll; */
}
.modal h2{
margin: 0;
}
.modal p{
font-size:14px;
font-weight: 550;
max-width: 320px;
}

.modal-content--payment {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 280px;
  padding: 60px 45px;
}

.modal-content--payment h2 {
  font-size: 22px;
  line-height: 1.35;
  max-width: 280px;
  margin: 0;
}
label{
  margin: 0;
  font-size: 16px;
}


/* Анимация появления */
@keyframes show {
  from { transform: translateY(-20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* Стили формы */
.modal-content input {
  /* width: 100%; */
  padding: 10px;
  margin: 0 14px;
  border-radius: 20px;
  border: 2.3px solid #0f0f0f;
    background: none;
}

.checkboxes label,
.radios label {
  display: flex;
  align-items: center;
  margin: 5px 0;
}
input::placeholder {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  margin-left: 10px;
  font-weight: 500;
  color: #555555;
}

.checkboxes label input,
.radios label input{
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #0f0f0f;
  border-radius: 10px;
  background: none;
}
.checkboxes label input:checked,
.radios label input:checked {
  background: var(--color-accent);
  border-color: var(--color-accent--dark);
}
.label-caption{
font-size: 18px;
margin: 10px 0 2px 0;
display: inline-block;
}
/* .label-caption_tel{
margin-top: 15px;
} */
.format{
margin-top: 2px;
margin-bottom: 3px;
}
input .label-variant{
  display: inline-block;
  padding-left: 20px;
  margin: 0;
}

.custom-radio {
  position: absolute;
  opacity: 0;
}
.choosed_roket {
  position: absolute;
  opacity: 0;
  /* width: 0;
  height: 0; */
}

.checkbox-label {
  /* display: block; */
  width: 24px;
  height: 24px;
  background: url("/assets/checkbox.svg") no-repeat center/24px 24px;;
  cursor: pointer;
  /* position: absolute; */
  margin-left: 20px;
  padding-left: 35px;
  /* top: 20px; */
}
.checkbox-label p{
margin: 0 0 0 15px;
    font-size: 17px;
    font-weight: 550;
    min-width: 500px;
}
.choosed_roket:checked + .checkbox-label {
  background: url("/assets/checkbox_active.svg") no-repeat center/24px 24px;;
  /* position: absolute; */
}
.checkbox-label:hover {
  filter: brightness(1.1);
}
.choosed_roket:focus + .checkbox-label {
  outline: none;
}

body.dark .checkbox-label {
  background: url("/assets/checkbox_dark.svg") no-repeat center/24px 24px;
}

body.dark .choosed_roket:checked + .checkbox-label {
  background: url("/assets/checkbox_active_dark.svg") no-repeat center/24px 24px;
}

.radio-label {
  display: inline-block;
  padding-left: 35px;
  line-height: 24px;
  cursor: pointer;
  background: url("/assets/radio.svg") no-repeat left center/24px 24px;
  margin-right: 16px;
}
  .custom-radio + .radio-label {
margin-left: 20px;
}
.custom-radio:checked + .radio-label {
  background: url("./assets/radio_active.svg") no-repeat left center/24px 24px;
}
body.dark .radio-label {
  background: url("/assets/radio_dark.svg") no-repeat left center/24px 24px;
}

body.dark .custom-radio:checked + .radio-label {
  background: url("/assets/radio_active_dark.svg") no-repeat left center/24px 24px;
}


/* Кнопка закрытия */
.close-modal {
  position: absolute;
  top: 42px;
  right:42px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}
.close-modal img{
  width: 35px;
  height: 35px;
}

.submit-btn.btn-cta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  background-color: var(--color-accent-dark);
  color: var(--color-white);
  text-decoration: none;
  padding: 17px 25px;
  border-radius: 18px;
  font-weight: 650;
  font-size: 14px;
  border: none;
  margin-top: 25px;
}
.submit-btn.btn-cta:hover {
  /* background-color: var(--color-accent-dark);
  color: var(--color-accent-dark); */
  box-shadow: 0 0 7px 0 var(--color-accent-dark);
  transition: all 0.2s ease-in-out;
}



/* Сторис скрыты на сайте (разметка и скрипты сохранены) */
.stories-carousel,
.stories-modal {
  display: none !important;
}

.first .first-content {
  margin-top: 0;
}

.stories-carousel {
  position: relative;
  padding: 20px 0 20px 50px;
   /* overflow: visible; */
      max-width: 610px;
   /* overflow-x: hidden; */
}
.stories-carousel .swiper{
   /* overflow: visible;  */
padding: 5px;
}

.stories-slide, .stories-carousel .swiper-slide {
  /* 
  padding: 8px;
  cursor: pointer; */
  /* overflow-x: clip;      
  overflow-y: visible; */

  width: 130px !important;
  height: 130px;
  border: 3px solid var(--color-accent); 
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
  color: var(--color-white);
  font-weight: 600;
  text-align: left;
  font-size: 12px;
  cursor: pointer;
  margin: 0 8px;
}
.stories-slide:hover {
  border: 3px solid var(--color-accent2); 
  border-radius: 27px;
  transform: scale(1.03); 
  box-shadow: 0 0 4px 0px #e1460e93;
  transition: all 0.4s ease-in-out;
}
.stories-slide__text{
margin: 0;
}

.stories-arrow {
  position: absolute;
  top: 95%;
  /* transform: translateY(-50%); */
  z-index: 10;
  background: none;
  border: none;
}
.stories-arrow img{
  width: 15px;
  height: auto;
}


.stories-arrow--prev { right: 70px }
.stories-arrow--next { right: 20px; }

/* Модалка */
.stories-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.stories-modal.active {
  display: flex;
}

.stories-modal__content {
  position: relative;
  width: 320px;
  height: 560px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  padding: 20px;
}

.stories-modal__image {
  width: 100%;
  height: 80%;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}

.modal-arrow {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  background: teal;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 20;
}

.modal-arrow--prev { left: -60px; }
.modal-arrow--next { right: -60px; }


/* first */
.first {
  padding: 20px 0 0px;
  background-color: #d4d4d4;
}

.first-content {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  margin-top: -105px;
  gap: 128px;
}

.first-text {
  /* flex: 1; */
  /* margin-top: 70px; */
  max-width: 520px;
}

.first-text p {
  font-size: 18px;
  font-weight: 400;
  margin-top: 8px;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.btn.primary{
  display: inline-block;
  background-color: var(--color-accent-dark);
  color: var(--color-white);
  padding: 18px 24px;
  border-radius: 19px;
  font-weight: 650;
  text-decoration: none;
  font-size: 16px;
}
.primary:hover {
  background-color: var(--color-accent2);
  color: var(--color-white);
  box-shadow: 0 0 3px 0 var(--color-accent2);
  transition: all 0.3s ease-in-out;
}
.first-image {
  flex: 1;
  display: flex;
  justify-content: center;
  /* max-width: 630px; */
  /* max-width: 729px; */
  /* min-width: 628px; */
  /* z-index: -1; */
}

.first-image img {
  max-width: 600px;
  padding-top: 50px;
  height: auto;
  border-radius: 19px;
}
.first h1{
  margin: 0;
  margin-bottom: 3px;
  font-size: 42px;
} 
.first .red{
  color: var(--color-accent2);
  margin: 0;
  font-size: 28px;
}



/* .legends-section {
  padding: 40px 0;
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
    position: relative;
  overflow: hidden;
} */
/* .legends-section .text{
    display: flex;
    font-size: 32px;
    flex-direction: column;
    align-items: center;
}
.legends-section h2{
  margin: 0;
  padding: 0;
  display: inline;
  font-size: 32px;
}
.legends-section .logo{
  display: inline;
  max-width: 177px;
} */
/* 
.legends-section .container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.legends-section .text {
  display: flex;
  font-size: 32px;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10; 
  padding: 20px 40px;
}
.legends-section h2 {
  margin: 0;
  padding: 0;
  display: inline;
  font-size: 32px;
} */
/* .legends-section .logo {
  display: inline;
  max-width: 177px;
}

.circles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}


.circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.circle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  z-index: 20;
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */


/* Занятки */
.zanatki {
  padding: 60px 0;
  background-image: url(/assets/bg_zanatki.png) ;
  /* background-repeat: no-repeat; */
  background-color: var(--color-accent-dark);
  color: var(--color-white);
}

.zanatki-columns {
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: 1060px;
  justify-content: space-between;
  margin: 0 auto;
}

.zanatki-title {
  font-size: 32px;
  margin: auto 0;
  max-width: 400px;
  /* text-align: center; */
}

.zanatki-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 290px;
}
.zanatki-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zanatki-card li {
  display: flex;
  /* align-items: center; */
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  z-index: 2;
}
.zanatki-card .li_second{
   margin-top: -10px;
}
.zanatki-card .li_second2{
   margin-top: -45px;
}
[class^="line"]{
  position: relative;
    z-index: 0;
}
.line1{
    top: -22px;
    left: 60px;
    max-width: 115px;
}
.line2{
    top: -22px;
    left: 57px;
    max-width: 180px;
}
.line3{
top: -55px;
    left: 158px;
}
.line4{
   top: -25px;
    left: 165px;
}
.zanatki-card li img {
  width: 28px;
  height: 28px;
  color: var(--color-white);
  /* flex-shrink: 0; */
}
.zanatki-card h3{
  margin: 0 0 5px 0;
  font-size: 22px;
}
.zanatki-card li p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}


/* Feedback */
/* .feedback {
  padding: 60px 0;
  text-align: center;
    margin: 0 auto;
}

.feedback-title {
  text-align: center;
  font-size: 36px;
  margin:0 0 30px 0;
}

.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}

.slider-btn {
  background: none;
  border: none;
  cursor: pointer;
}
.videoSwiper {
  margin: 0 auto;
  overflow: hidden; 
  width: 100%;
}

.videoSwiper .swiper-wrapper {
  display: flex;
  justify-content: center;
}


.video-card {
  border-radius: 19px;
  max-width: 240px;
  max-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-card video {
  height: fit-content;
  width: fit-content;
  max-width: 240px;
  max-height: 420px;
  border-radius: 19px;
}
.videoSwiper .swiper-slide {
  transition: all 0.35s ease;
  transform-origin: center;
}

.videoSwiper .swiper-slide-active {
  transform: scale(1.0) !important;
  opacity: 1 !important;
  z-index: 5 !important;
}

.videoSwiper .swiper-slide-prev,
.videoSwiper .swiper-slide-next {
  transform: scale(0.85) !important;
  opacity: 0.7 !important;
  z-index: 1 !important;
} */



/* бегущая строка */
.tapes {
  /* position: relative; */
  width: 100%;
  height: 110px; /* регулируй под макет */
  overflow: hidden;
  padding-top: 10px;
}

/* Общий стиль полос */
.tape {
  /* position: absolute; */
  width: 200%;
  height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-left: -5%;

}

/* Цвета полос */
.tape-black {
  /* top: 40px; */
  background: var(--color-accent2);
  transform: rotate(-2.5deg);
}

.tape-green {
  /* top: 160px; */
  background: var(--color-accent);
  transform: rotate(1.5deg);
}

/* Бегущая строка */
.marquee {
  white-space: nowrap;
  animation: run-left 10s linear infinite;
}
.marquee img{
  max-width: 45px;
  padding-right: 40px;
}
.marquee span {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  padding-right: 40px;
  display: inline-flex;
}
.tape-green .marquee span {
  color: var(--color-dark);
    animation: run-right 10s linear infinite;

}

/* Анимация */
/* @keyframes run {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
} */

/* Анимации */ 
.marquee-left { 
  animation: run-left 15s linear infinite; 
} 
.marquee-right { 
  animation: run-right 15s linear infinite; 

} /* Едет влево */ 
@keyframes run-left { 
  0% {
     transform: translateX(0); 
    } 
    100% { 
      transform: translateX(-50%); 
    } } 
    /* Едет вправо */ 
@keyframes run-right { 
  0% { 
    transform: translateX(-50%); 
  } 
  100% { 
    transform: translateX(0); 
  } }
.marquee span P{
      display: inline-flex;
      align-self: center;
}
.marquee span img{
      display: inline-flex;
      align-self: center;
}
/* Contact */
.contract-section {
  padding: 40px 0;
}
.contract {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 140px 0;
  background-image: url(/assets/ковер.png);
  background-repeat: no-repeat;           
  background-position: center center;     
  background-size: contain;                
}
.contract p, .contract h2{
  text-align: center;
  color: var(--color-white);
  max-width: 350px;
}
.contract h2{
  margin: 0;
}
.contract .btn{
  background-color: var(--color-white);
  color: var(--color-dark);
  padding-right: 50px;
  padding-left: 50px;
}

/* .contact-section {
  padding: 30px 0 100px 0;
} */
/* .contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;              
}
.contact-title {
  text-align: center;
  font-size: 36px;
  margin:0 0 0px 0;
}
.contact p{
  max-width: 630px;
}
.contact-buttons{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap:20px;
  text-align: center; 
  margin-top: 5px;
}
.contact .btn{
  color:var(--color-white);
  font-weight: 650;
}
.contact .btn:first-of-type{
  background-color:var(--color-accent-dark);
} */

.faq {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 0 60px 0;
}

.faq__title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 25px 0;
}

.faq__item {
  /* border-bottom: 1px solid #eee; */
  /* padding: 12px 0; */
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 12px 0;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq__arrow {
  width: 30px;
  height: 30px;
  /* background-image: url('/assets/arrow-orange.svg'); */
  /* background-size: contain;
  background-repeat: no-repeat; */
  transition: transform 0.3s ease;
}

.faq__item.active .faq__arrow {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__answer p {
  margin: 10px 0 20px;
  font-size: 16px;
  line-height: 1.5;
}


.trial-banner {
  width: 100%;
  background: var(--color-accent2); /* яркий оранжевый */
  padding: 60px 0px 40px 0;
  position: relative;
  /* overflow: hidden; */
  font-family: var(--font-main);
  font-weight: 500;
}

.trial-banner__content {
  max-width: 1276px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.trial-banner__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 18px 70px;
  text-align: left;
  max-width: 564px;
  z-index: 1;
}

.trial-banner__img {
  position: absolute;
  bottom: 0;
  width: 260px;
  /* overflow: hidden; */
}

.trial-banner__img--left {
    left: -6%;
    bottom: -40px;
    width: 150px;
    z-index: 0;
}

.trial-banner__img--right {
  right: 4%;
    bottom: -40px;
    width: 150px;
    z-index: 0;
    /* transform: scaleX(-1); */
    /* transform: rotate(-15deg); */
}

.trial-form {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: center;
  z-index: 1;
}

.trial-input {
  padding: 14px 16px;
  border-radius: 50px;
  border: 2px solid var(--color-dark);
  font-size: 16px;
   z-index: 1;
     font-family: var(--font-main);
     font-weight: 500;
}
.trial-input::placeholder {
  font-size: 16px;
}

.trial-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url('/assets/arrow.svg');
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.single-select {
  position: relative;
  background: var(--color-white);
  border-radius: 50px;
  border: 2px solid var(--color-dark);
  padding: 14px 40px 14px 16px;
  cursor: pointer;
  user-select: none;
  z-index: 1;
  background-image: url('/assets/arrow.svg');
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.single-select__options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  border: 2px solid var(--color-dark);
  border-radius: 25px;
  padding: 10px 12px;
  margin-top: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 9999;
}

.single-select.open .single-select__options {
  display: block;
}

.multi-select {
  position: relative;
  background: var(--color-white);
  border-radius: 50px;
  border: 2px solid var(--color-dark);
  padding: 14px 40px 14px 16px;
  cursor: pointer;
  user-select: none;
  z-index: 1;
  background-image: url('/assets/arrow.svg');
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.multi-select__selected,
.single-select__selected {
  font-size: 16px;
  color: var(--color-dark);
  text-align: left;
  width: 100%;
  pointer-events: none;
  font-family: var(--font-main);
  font-weight: 500;
}

.multi-select__options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  border: 2px solid var(--color-dark);
  border-radius: 25px;
  padding: 12px 14px;
  margin-top: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 9999;
}

.multi-select.open .multi-select__options {
  display: block;
}

.multi-select__options label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  cursor: pointer;
}

.checkboxes--dropdown,
.radios--dropdown {
  flex-direction: column;
  gap: 6px;
}

.multi-select.open .multi-select__options.checkboxes--dropdown,
.single-select.open .single-select__options.radios--dropdown {
  display: flex;
}

.checkboxes--dropdown .checkbox-label,
.single-select__options .radio-label {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  box-sizing: border-box;
}

.checkboxes--dropdown .trial-option {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 32px;
}

.checkboxes--dropdown .trial-option .choosed_roket {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  margin: 0;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}

.checkboxes--dropdown .trial-option .checkbox-label {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 28px;
  margin: 0;
  padding: 4px 0 4px 36px;
  box-sizing: border-box;
  background: url("/assets/checkbox.svg") no-repeat left center / 24px 24px;
  cursor: pointer;
}

.checkboxes--dropdown .trial-option .choosed_roket:checked + .checkbox-label {
  background-image: url("/assets/checkbox_active.svg");
}

.checkboxes--dropdown .trial-option .checkbox-label p {
  min-width: 0;
  font-size: 15px;
  font-weight: 550;
  margin: 0;
  padding: 0;
  color: var(--color-dark);
}

.single-select__options .custom-radio + .radio-label {
  margin-left: 0;
  display: block;
  /* padding: 8px 0 8px 35px; */
  font-size: 15px;
  font-weight: 550;
  line-height: 24px;
  text-align: left;
}

.modal2 .checkboxes,
.modal2 .radios {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.modal2 .checkbox-label {
  margin-left: 0;
}

.modal2 .checkbox-label p {
  min-width: auto;
  font-size: 16px;
  font-weight: 550;
}

.modal2 .custom-radio + .radio-label {
  margin-left: 0;
  display: block;
  margin-right: 0;
  font-size: 16px;
  font-weight: 550;
}

.trial-btn {
  font-family: var(--font-main);
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
   z-index: 1;
  /* border-radius:50px; */
}

.trial-btn:hover {
  background: var(--color-accent-dark);
  color: var(--color-white);
}

/* Адаптив */
@media (max-width: 992px) {
  .trial-banner__img {
    width: 180px;
  }

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

  .trial-btn {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .trial-banner__img {
    display: none;
  }

  .trial-form {
    grid-template-columns: 1fr;
  }

  .trial-btn {
    grid-column: span 1;
  }

  .trial-banner__title {
    font-size: 24px;
  }
}



/* Footer */
.footer {
background-color: var(--color-accent-dark);
background-image: url(/assets/bg_footer.png);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
  color:var(--color-white);
  padding: 60px 0 80px 0;
  font-size: 12px;
}

.footer .menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-logo img {
  width: 170px;
}

.footer-info {
display: flex;
margin-top: -60px;
margin-bottom: 30px;
 text-align: left;
 flex-direction: column;
 justify-content: flex-start;
 align-items: flex-start
}
.footer-top p {
  margin: 4px 0;
  max-width: 300px;
  color:var(--color-white);
}
.folder-card p {
 color:var(--color-white);
}

.evolut-banner__title {
  color:var(--color-white);
}

.evolut-stats__grid .stat-card p{
  color:var(--color-white);
}
.pricing-card h3{
  color:var(--color-white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color:var(--color-white);
  font-size: 16px;
  text-decoration: none;
  font-weight: 450;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
}

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

.payments{
height: 150px;
opacity: 80%;
margin-top: 15px;
/* align-self: start;
text-align: left; */
}






/* ===== Ошибки форм ===== */

.form-error-msg {
  display: block;
  margin-top: 4px;
  margin-left: 16px;
  color: #e1460e;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.input--error {
  border-color: #e1460e !important;
  box-shadow: 0 0 0 2px rgba(225,70,14,0.12);
}

.group--error {
  border-radius: 14px;
  padding: 4px;
}

/* trial-form */
.trial-form .form-error-msg {
  margin-left: 8px;
  font-size: 12px;
  color: #ffdddd;
}

/* modal */
.modal .form-error-msg {
  color: #e1460e;
  font-size: 11px;
}






















