:root {
  --main-font: 'DM Sans', sans-serif;
  --second-font: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 360px;
  background: #ffffff;
  color: #f0f0f0;
  padding-top: 215px;
  font-family: var(--main-font);
}

body:has(.header.closed) {
  padding-top: 68px;
}

main {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

a:focus {
  outline: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
textarea,
button,
select,
label {
  font-family: var(--main-font);
  border: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  max-width: 1308px;
  padding: 0 16px;
  margin: 0 auto;
}

.header {
    max-width: 1308px;
    padding: 20px 0 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 30;
    background-color: #544844;
    min-height: 215px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    border-radius: 0 0 50px 50px; 
}

.header__global {
  display: grid;
  grid-template-columns: 1fr 582px;
  align-items: end;
  gap: 13px;
  padding-top: 10px;
}

.header__notice {
  position: relative;
  padding: 50px 58px 50px 30px;
  background: #473d3a url() no-repeat;
  background-position: bottom left;
  border-radius: 20px;
}

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

.header__close {
  position: absolute;
  background: none;
  padding: 0;
  top: 16px;
  right: 16px;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(242, 95, 76, 0.5), 0 0 20px rgba(242, 95, 76, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(242, 95, 76, 0.8), 0 0 30px rgba(242, 95, 76, 0.5);
  }
}

@keyframes shine {
  0% {
    left: -100%;
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  40%, 100% {
    left: 200%;
    opacity: 0;
  }
}

.second-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  padding: 14px 62px;
  background: #f8692a;
  border-radius: 10px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border: none;
  cursor: pointer;
  text-align: center;
  
}

.second-buttontwo {
  display: flex; /* или flex, не inline-flex */
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  padding: 14px 62px;
  background: #f8692a;
  border-radius: 10px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border: none;
  cursor: pointer;
  text-align: center;
  margin: 0 auto; /* добавить это - центрирует блок */
  width: fit-content; /* добавить это - ширина по содержимому */
}

/* Эффект медленного блика */
.header__flex .second-button:not(.second)::before,
.never__right .second-button:not(.second)::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-25deg);
  animation: shine 4s infinite ease-in-out;
  z-index: 1;
  pointer-events: none;
}

.second-button:hover {
  background: #f15e4b;
  transform: translateY(-2px);
}

.second-button.active {
  background: #f25f4c;
}

/* Стили для контейнера, чтобы кнопка была по центру */
.never__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.never__text {
  text-align: center;
  margin-bottom: 10px;
}

/* Если кнопка в header */
.header__flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Адаптивность */
@media (max-width: 768px) {
  .second-button {
    padding: 12px 40px;
    font-size: 14px;
  }
  
  .never__right {
    gap: 15px;
  }
}

.header__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
  margin: 0;
}
.header__text__color {
 color: #f8692a;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  width: fit-content;
  margin-bottom: 20px;
}

.header__span {
  font-family: var(--second-font);
  font-weight: 700;
  font-size: 128px;
  line-height: 110%;
  text-align: center;
  color: #252525;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 30px;
  padding-right: 20px;
}

.header__link {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  transition: 0.3s;
}

.header__link:hover {
  color: #f15e4b;
}

.hero {
  margin-bottom: 120px;
}

.hero__global {
  padding: auto;
  background: #d0eaff url(../img/hero.png) no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 10;
  margin-bottom: 200px;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 600px) {
  .hero__content {
    margin-bottom: 0;
    padding-left: 0px;
    padding-right: 0px;
  }
}

.hero__title {
  font-family: var(--second-font);
  font-weight: 900;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  color: #ffffff;
  max-width: 1105px;
  width: 100%;
  margin: 0 auto 24px;
  margin-top: 200px;
}

.hero__title.mobile {
  display: none;
}

.help {
  margin-bottom: 120px;
}

.hero__subtitle {
  max-width: 875px;
  width: 100%;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: #fff;
  margin: 0 auto 60px;
}

.hero__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 27px;
}

.hero__input {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #252525;
  padding: 17px 19px;
  border-radius: 10px;
  background: #fafdff;
  outline: none !important;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  border: 1px solid transparent;
}

.hero__input::placeholder {
  color: #656667;
}

.hero__input:hover {
  border: 1px solid #c9eec5;
}

.hero__input:focus {
  border: 2px solid #c9eec5;
  padding: 16px 18px;
}

.hero__input.error {
  border: 2px solid #fe1d1d;
  padding: 16px 18px;
}

.hero__form {
  flex-grow: 1;
  width: 100%;
}

.hero__main {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  margin-bottom: 23px;
}

.main-button {
  font-family: var(--second-font);
  display: flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
  gap: 10px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  padding: 14px 20px;
  background: #f8692a;
  border-radius: 10px;
  transition: 0.3s;
}

.main-button:hover {
  background: #f15e4b;
}

.main-button:active {
  background: #f25f4c;
}

.main-button:disabled {
  color: #fff;
  background: #f5f5f5;
}

.main-button:disabled .main-button__icon {
  filter: brightness(6);
}

.main-buttonah {
  font-family: var(--second-font);
  display: flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
  gap: 10px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  padding: 14px 20px;
  background: #f8692a;
  border-radius: 10px;
  transition: 0.3s;
  margin-top: 50px;
}

.preloader {
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100vh;
  padding: 15px;
  background-color: #fff;
  transition: opacity 0.5s ease;
  opacity: 1;
}

.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

body:has(.preloader:not(.hidden)) {
  overflow: hidden;
}

.preloader__image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + -60px));
}

.main-button__arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.hero__label {
  position: relative;
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 129%;
  color: #fff;
  cursor: pointer;
  padding-left: 34px;
  
}

.hero__label:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #fafdff;
  transition: 0.3s;
}

.hero__label:hover:before {
  background-color: #f4faff;
}

.hero__label:has(input:checked):after {
  opacity: 1;
}

.hero__checkbox {
  display: none;
}

.hero__label:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  transition: 0.3s;
  opacity: 0;
  background: url(../img/icons/check.svg) no-repeat center / cover;
}

.hero__politic {
  color: inherit;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #f8692a;
}


.help__block {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;

}

.help__image {
  position: absolute;
  left: -100px;
  bottom: -17px;
  
}

.help__inner {
  position: relative;
  padding-left: 279px;
}

.help__title {
  font-family: var(--second-font);
  font-weight: 900;
  font-size: 40px;
  line-height: 120%;
  color: #f8692a;
  margin-bottom: 10px;
}

.help__subtitle {
  font-family: var(--second-font);
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  color: #252525;
  margin-bottom: 40px;
}

.video {
  padding-top: 120px;
  margin-bottom: 120px;
}

.video__player {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.video__round {
  border-radius: 50px;
  overflow: hidden;
}

.blue-first {
  background: #665753;
  padding: 110px 0;
}

.steps {
  margin-bottom: 120px;
}

.steps__global {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.steps__title {
  font-family: var(--second-font);
  font-weight: 900;
  font-size: 40px;
  line-height: 120%;
  color: #fff;
  margin-bottom: 40px;
}

.steps__item+.steps__item {
  margin-top: 20px;
}

.steps__item {
  padding: 26px 30px;
  background: #fafdff;
  border-radius: 24px;
}

.steps__caption {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  color: #f8692a;
  margin-bottom: 10px;
}

.steps__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #252525;
  max-width: 526px;
  margin-bottom: 0;
}

.who__title {
  font-family: var(--second-font);
  font-weight: 900;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  color: #fff;
  margin-bottom: 16px;
}

.who__subtitle {
  font-weight: 400;
  font-size: 24px;
  text-align: center;
  line-height: 150%;
  color: #fff;
  margin-bottom: 40px;
}

.who__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.who__item {
  background: #fafdff;
  border-radius: 30px;
  padding: 26px 30px;
}

.who__caption {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  color: #252525;
  margin-bottom: 4px;
}

.who__subcuption {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #252525;
  margin-bottom: 20px;
}

.who__image {
  width: 100%;
  border-radius: 26px;
  margin-bottom: 20px;
}

.who__list {
  padding: 0;
  margin: 0;
}

.who__point {
  position: relative;
  padding-left: 22px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #252525;
  max-width: 533px;
}

.who__point:before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  background: #c9eec5;
  border-radius: 100%;
  width: 12px;
  height: 12px;
}

.who__point+.who__point {
  margin-top: 10px;
}

.effective {
  margin-bottom: 120px;
}

.effective__title {
  font-family: var(--second-font);
  font-weight: 900;
  font-size: 40px;
  line-height: 120%;
  color: #252525;
  max-width: 456px;
  margin-bottom: 40px;
}

.effective__block {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.effective__item {
  grid-column: span 2;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  border-radius: 20px;
  padding: 26px 30px;
  background: #665753;
}

.effective__item.long {
  grid-column: span 3;
}

.effective__inner {
  display: block;
  max-width: 329px;
}

.effective__item.long .effective__inner {
  max-width: 530px;
}

.consultation {
  margin-bottom: 120px;
}

.consultation__block {
  padding: 61px 68px 41px;
  background: #665753;
  border-radius: 30px;
}

.why {
  padding-top: 120px;
  margin-bottom: 124px;
}

.why__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why__title {
  font-family: var(--second-font);
  font-weight: 900;
  font-size: 40px;
  line-height: 120%;
  color: #252525;
  margin-bottom: 0;
}

.why__item {
  background: #665753;
  border-radius: 30px;
  padding: 26px 30px;
}

.why__caption {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  color: #dddddd;
  margin-bottom: 10px;
}

.why__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #dddddd;
  max-width: 532px;
  margin-bottom: 0;
}

.never {
  padding: 100px 0 105px;
  background: #665753;
  margin-bottom: 120px;
}

.never__title {
  font-family: var(--second-font);
  font-weight: 900;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  color: #252525;
  max-width: 782px;
  width: 100%;
  margin: 0 auto 10px;
}

.never__titletwo {
    font-family: var(--second-font);
  font-weight: 900;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  color: #fff;
  max-width: 782px;
  width: 100%;
  margin: 0 auto 10px;
}

.progr .never__title {
  max-width: 911px;
}

.never__subtitle {
  max-width: 1000px;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: #252525;
  margin: 0 auto 74px;
}

.never__subtitletwo {
  max-width: 1000px;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: #fff;
  margin: 0 auto 74px;
}

.never__image {
  border-radius: 30px;
}

.never__image.mobile {
  display: none;
}

.never__main {
  display: grid;
  grid-template-columns: 1fr 201px;
  align-items: end;
  gap: 14px;
  margin-bottom: 60px;
}

.never__cursor {
  padding-bottom: 121px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: #252525;
}

.never__arrow {
  margin-left: 16px;
}

.never__bottom {
  display: grid;
  margin: 0 300px;
}

/* Стили для списка услуг на ПК */
.never__inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
    margin: 0 0 20px 0;
    text-align: center;
}

.never__inner br {
    display: none;
}

.service-link {
    display: block;
    text-decoration: none;
    color: #f8692a;
    font-weight: 500;
    transition: color 0.3s;
    padding: 4px 0;
}

.service-link:hover {
    color: #f15e4b;
}
.never__left {
    padding: 26px 30px 40px;
    border-radius: 20px;
    background: #fff;
}

.never__texts{
    font-family: var(--second-font);
    font-weight: 700;
    text-align: center;
    color: #252525;
    margin: 0 auto 10px;
}

.never__bold {
  font-weight: 600;
}

.never__right {
  padding-top: 25px;
  background: #fff;
  background-position: calc(100% - 1px) center;
  border-radius: 20px;
  padding-bottom: 25px;
}


.never__text {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 20px;
}

.price {
  padding: 110px 0;
  background: #665753;
  margin-bottom: 93px;
}

.price__title {
  font-family: var(--second-font);
  font-weight: 900;
  font-size: 40px;
  line-height: 120%;
  color: #fff;
  margin-bottom: 20px;
}

.price__subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
  margin-bottom: 40px;
}

.price__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.price__item {
  border-radius: 30px;
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  background: #fafdff;
}

.price__caption {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  color: #252525;
  margin-bottom: 24px;
}

.price__list {
  padding: 0;
  margin: 0 0 10px;
}

.price__point {
  position: relative;
  padding-left: 28px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #252525;
}

.price__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #252525;
  margin-bottom: 24px;
}

.price__point+.price__point {
  margin-top: 10px;
}

.price__point:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background: #c9eec5 url(../img/icons/price-check.svg) no-repeat center;
  background-size: 12px 12px;
}

.price__bottom {
  margin-top: auto;
}

.price__price {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  color: #252525;
  margin-bottom: 30px;
}



.main-button.third {
  padding: 14px 53px;
}


.cert {
  margin-bottom: 61px;
}

.cert__block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px 19px;
  margin-bottom: 70px;
}

.cert__arrows.slider-arrows {
  display: none;
  justify-content: flex-end;
}

.cert__image {
  border-radius: 30px;
  height: 100%;
  object-fit: cover;
}

.cert__bottom {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cert__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: #252525;
  margin-bottom: 10px;
}

.cert__number {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: #252525;
  margin-bottom: 10px;
}

.cert__link {
  display: block;
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: #2972d5;
}

.program {
  padding-top: 120px;
  margin-bottom: 120px;
}

.program__more {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #252525;
  padding: 0;
  background: none;
  display: none;
  margin-bottom: 28px;
}

.program__title {
  font-family: var(--second-font);
  font-weight: 900;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  color: #252525;
  margin-bottom: 30px;
}

.program__pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.program__pill {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  background: #665753;
}

.program__heading {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: #252525;
  margin-bottom: 20px;
}

.program__list {
  padding: 0;
  margin: 0 0 40px;
}

.program__point+.program__point {
  margin-top: 10px;
}

.program__point {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #252525;
  padding: 4px 0 4px 46px;
}

.program__glo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.program__poll {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
  padding: 14px 24px;
  background: #665753;
  border-radius: 10px;
}

.program__info {
  margin-bottom: 40px;
}

.program__desco+.program__desco {
  margin-top: 16px;
}

.program__desco {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #252525;
  margin-bottom: 0;
}

.program__square {
  position: absolute;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #665753;
}

.program__blue {
  background: #665753;
  border-radius: 40px;
  padding: 26px 30px;
  margin-bottom: 146px;
}

.program__tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 19px;
  border-bottom: 1px solid #e3f2ff;
  margin-bottom: 40px;
}

.program__tab {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  background: #544844;
  transition: 0.3s;
}

.program__tab:hover {
  background: #e8f7fc;
}

.program__tab.active {
  background: #f8692a;
}

.program__content {
  display: none;
}

.program__content.active {
  display: block;
}

.program__caption {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: #252525;
  margin-bottom: 0;
}

.program__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  margin-bottom: 0;
}

.program__bottom {
  display: grid;
  grid-template-columns: 628px 1fr;
}

.program__left {
  border-radius: 30px;
  padding: 26px 30px;
  background: #544844;
}

.program__inner {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  max-width: 530px;
  margin-bottom: 0;
}

.program__right {
  border-radius: 30px;
  object-fit: cover;
  height: 100%;
}

.fillform__block {
  display: grid;
  grid-template-columns: 648px 1fr;
}

.fillform__image {
  object-fit: cover;
  border-radius: 30px;
}

.fillform__main {
  border-radius: 30px;
  padding: 36px 40px;
  background: #665753;
}

.fillform__title {
  font-family: var(--second-font);
  font-weight: 900;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}

.fillform__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
  margin-bottom: 20px;
}

.hero__form.second .hero__main {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 13px;
}

.hero__form.second .hero__label {
  margin-bottom: 33px;
}


.experts__top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 40px;
}

.experts__title {
  font-family: var(--second-font);
  font-weight: 900;
  font-size: 40px;
  line-height: 120%;
  color: #252525;
  max-width: 925px;
  width: 100%;
  margin-bottom: 0;
}

.slider-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  padding: 0;
  flex-shrink: 0;
  background: #f5f5f5;
  transition: 0.3s;
}

.slider-arrow__icon {
  transition: 0.3s;
}

.slider-arrow:hover {
  background: #434343;
}

.slider-arrow:active {
  background: #252525;
}

.slider-arrow:hover .slider-arrow__icon {
  filter: brightness(10);
}

.slider-arrow.swiper-button-disabled {
  background: #f5f5f5;
}

.slider-arrow.swiper-button-disabled .slider-arrow__icon {
  filter: brightness(10);
}

.experts__slide {
  border: 2px solid #f8692a;
  border-radius: 30px;
  padding: 24px 28px;
  display: flex;
  height: auto;
  flex-direction: column;
}

.main-button__full {
  width: 100%;
  justify-content: center;
}

.experts__image {
  width: 100%;
  border-radius: 26px;
  margin-bottom: 30px;
}

.experts__name {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  color: #252525;
  margin-bottom: 10px;
}

.pricelistname {
color: #252525;
font-weight: 700;
font-size: 24px;
text-align: center;
padding-top: 20px;
}

.pricelist__txt {
  color: #f8692a;
  font-weight: 700;
  font-size: 24px;
}

.experts__post {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #252525;
  margin-bottom: 30px;
}

.experts__list {
  padding: 0;
  margin: 0;
}

.experts .main-button__full {
  margin-top: auto;
}

.experts__point+.experts__point {
  margin-top: 10px;
}

.experts__point {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #252525;
  padding-left: 28px;
  position: relative;
}

.experts__point:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background: #c9eec5 url(../img/icons/price-check.svg) no-repeat center;
  background-size: 12px 12px;
}
 
.experts__pointprice+.experts__pointprice {
  margin-top: 10px;
}

.experts__pointprice {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #252525;
  padding-left: 28px;
  position: relative;
}

.experts__pointprice:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background: #f8692a url(../img/icons/price-check.svg) no-repeat center;
  background-size: 12px 12px;
}

.experts__listprice {
 display: flex;
 justify-content: center;
 padding-inline-start: 0px;
}

/* Видео отзывы */
.video-reviews {
  padding: 0px;
  padding-top: 150px;
}

.video-reviews .reviews__block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 100px;
}

.video-reviews .reviews__left {
  flex: 0 0 412px;
}

.video-reviews .reviews__title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1.2;
  color: #252525;
  margin: 0 0 20px 0;
}

.video-reviews .reviews__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #252525;
  margin: 0 0 40px 0;
}

.video-reviews__grid {
  display: flex;
  gap: 20px;
  flex: 1;
}

.video-review {
  flex: 1;
  background: #F5F5F5;
  border-radius: 30px;
  padding: 0;
  min-height: 496px;
  position: relative;
  overflow: hidden;
}

.video-review__container {
  position: relative;
  width: 100%;
  height: 100%;
  background: #F5F5F5;
}

.video-review__player {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
  background: #F5F5F5;
  display: block;
  border: none;
}

/* Скрываем стандартные контролы только когда видео на паузе */
.video-review__player.paused::-webkit-media-controls-panel {
  display: none !important;
}

.video-review__player.paused::-webkit-media-controls-play-button {
  display: none !important;
}

.video-review__player.paused::-webkit-media-controls-start-playback-button {
  display: none !important;
}

/* Скрываем кнопку полноэкранного режима */
.video-review__player::-webkit-media-controls-fullscreen-button {
  display: none !important;
}

/* Кнопка воспроизведения - показываем только когда видео на паузе */
.video-review__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: #252525;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.video-review__play-btn:hover {
  background: #f15e4b;
  transform: translate(-50%, -50%) scale(1.05);
}

.video-review__play-btn::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 12px solid white;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 2px;
}

/* Скрываем кастомную кнопку когда видео играет */
.video-review__player.playing + .video-review__play-btn {
  display: none;
}

/* Адаптивность */
@media (max-width: 1300px) {
  .video-reviews .reviews__block {
    flex-direction: column;
    gap: 40px;
  }
  
  .video-reviews .reviews__left {
    flex: none;
    text-align: center;
  }
  
  .video-reviews__grid {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .video-reviews__grid {
    flex-direction: column;
  }
  
  .video-review {
    min-height: 300px;
  }
}

@media (max-width: 600px) {
  .video-reviews {
    padding: 40px 0;
  }
  
  .video-reviews .reviews__title {
    font-size: 24px;
  }
  
  .video-review {
    min-height: 250px;
    border-radius: 20px;
  }
  
  .video-review__player {
    border-radius: 20px;
  }
  
  .video-review__play-btn {
    width: 50px;
    height: 50px;
  }
  
  .video-review__play-btn::before {
    border-left: 10px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
}

.reviews {
  padding-top: 20px;
  margin-bottom: 121px;
}

.combined-pagination {
  position: relative;
  padding: 20px 0 0;
  background: white;
  display: flex;
  align-items: center;
  gap: 15px;
}

.fraction-pagination {
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  color: #252525;
}

.progress-container {
  flex: 1;
  height: 10px;
  background: #f5f5f5;
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: #f8692a;
  border-radius: 4px;
  transition: width 0.3s ease;
  width: 20%;
}

.reviews__block {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 844px;
}

.reviews__slide {
  border: 2px solid #f5f5f5;
  border-radius: 30px;
  padding: 24px 18px 24px 28px;
}

.reviews__image {
  border-radius: 20px;
  width: 100%;
}

.reviews__title {
  font-family: var(--second-font);
  font-weight: 900;
  font-size: 40px;
  line-height: 120%;
  color: #252525;
  margin-bottom: 20px;
}

.reviews__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #252525;
  margin-bottom: 40px;
}

/* Секция Стоимость и сроки обучения */
.cost {
  font-family: 'DM Sans', sans-serif;
  color: #252525;
  padding: 100px 0;
  position: relative;
}

.cost .container {
  max-width: 1308px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Основной блок с двумя колонками */
.cost__block {
  display: flex;
  align-items: flex-end;
  gap: 0px;
}

/* Левая колонка */
.cost__left {
  max-width: 750px;
  position: relative;
}

.cost__title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 48px;
  color: #252525;
  margin-bottom: 20px;
}

.cost__subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #252525;
  margin-bottom: 130px;
}

/* Правая колонка */
.cost__right {
  flex: 1;

}

/* Карточка с ценой и аккордеоном */
.cost__main {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

/* Карточка цены */
.cost__top {
  position: relative;
  max-width: 412px;
  width: 100%;
  border-radius: 20px;
  padding: 26px 15px 33px;
  background: #c9eec5;
  z-index: 2;
}

.cost__top::before {
  content: '';
  position: absolute;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  bottom: -37px;
  background: url(../img/icons/cost-arrow.svg) no-repeat center / cover;
  width: 82px;
  height: 43px;
}

.cost__align {
  display: flex;
  justify-content: center;
}

.cost__price-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.cost__price {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: #252525;
  margin: 0;
}

.main-button.third {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: #f8692a;
  color: #FFFFFF;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 283px;
  width: 100%;
}

.main-button.third:hover {
  background: #000000;
  transform: translateY(-2px);
}

.main-button__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #FFFFFF;
  border-radius: 4px;
}

.main-button__icon {
  width: 28px;
  height: 28px;
}

/* Аккордеон */
.cost__bottom {
  background: #665753;
  border-radius: 30px;
  padding: 30px 30px 26px; /* Больше padding сверху для карточки */
  position: relative;
  z-index: 1;
  width: 100%;
}

.cost__accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cost__caption {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #252525;
  margin: 0px;
}

/* Стили аккордеона */
.accordion__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

.accordion__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #252525;
  transition: all 0.3s ease;
}

.accordion__button:hover {
  color: #000000;
}

.accordion__text {
  flex: 1;
  margin-right: 20px;
}

.accordion__icon {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* Поворот стрелки при открытии */
.accordion__item.active .accordion__icon {
  transform: rotate(180deg);
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion__content {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  padding: 0 0 20px 0;
  margin: 0;
}

/* Примечание */
.cost__note {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #000000;
  padding-top: 10px;
}

/* Изображение */
.cost__left {
  position: relative;
}

.cost__image {
  width: 100%;
  max-width: 600px;
  height: 900px;
  border-radius: 20px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* Белый градиент поверх изображения */
.cost__left::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 80%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 30%, rgba(255, 255, 255, 0.7) 60%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
  z-index: 2;
  border-radius: 0 0 20px 0;
}

.cost__left::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 2;
  border-radius: 0 0 20px 20px;
}

/* Скрыть изображение на мобильных если нужно */
.hero__image.mobile {
  display: none;
}

/* Адаптивность */
@media (max-width: 1200px) {
  .cost__block {
    gap: 0px;
  }
}

@media (max-width: 992px) {
  .cost__block {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  
  .cost__left {
    max-width: 100%;
    text-align: center;
  }
  
  .cost__subtitle {
    margin-bottom: 40px;
  }
  
  .cost__right {
    max-width: 100%;
  }
  
  .cost__top {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .cost {
    padding: 60px 0;
  }
  
  .cost__title {
    font-size: 32px;
    line-height: 38px;
  }
  
  .cost__subtitle {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  
  .cost__bottom {
    padding: 60px 20px 20px;
  }
  
  .cost__caption {
    font-size: 20px;
    line-height: 26px;
  }
  
  .accordion__button {
    font-size: 16px;
    line-height: 22px;
    padding: 15px 0;
  }
  
  .accordion__content {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 576px) {
  .cost__title {
    font-size: 28px;
    line-height: 34px;
  }
  
  .cost__top {
    padding: 20px 15px 25px;
  }
  
  .cost__top::before {
    bottom: -25px;
    width: 60px;
    height: 30px;
  }
  
  .cost__price {
    font-size: 20px;
    line-height: 26px;
  }
  
  .main-button.third {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .main-button__arrow {
    width: 30px;
    height: 30px;
  }
  
  .main-button__icon {
    width: 24px;
    height: 24px;
  }
  
  .accordion__button {
    font-size: 15px;
    line-height: 20px;
  }
  
  .accordion__icon {
    width: 24px;
    height: 24px;
  }
}

.test {
  padding-top: 120px;
  margin-bottom: 120px;
}

.test__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: #000;
  max-width: 1050px;
  width: 100%;
  margin: 0 auto 8px;
}

.test__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #000;
  margin-bottom: 30px;
}

.test__align {
  display: flex;
  justify-content: center;
}

.accordion {
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  outline: none;
  transition: .4s;
  background: #fafdff;
  transition: all 0.5s ease-in-out, padding 0.3s;
  padding: 15px 19px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #252525;
}

.accordion.active {
  padding-bottom: 0;
}

.accordion:hover .faq__square {
  background: #f15e4b;
}

.accordion.active .faq__square {
  background: #f25f4c;
}

.accordion.active .faq__arrow {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq__item+.faq__item {
  margin-top: 20px;
}

.faq__item {
  border-radius: 12px;
  background: #fafdff;
  transition: ease-in-out .5s;
  border-bottom: 1px solid #fafdff;
  overflow: hidden;
}

.faq__item:has(.accordion.active) {
  border-radius: 16px;
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .2s ease-out
}

.panel p {
  padding: 10px 19px 15px;
  font-weight: 400;
  font-size: 16px;

  /* line-height: 24px; */
  line-height: 150%;
  color: #252525;
  margin: 0
}

.faq {
  background: #665753;
  padding: 110px 0;
  margin-bottom: 120px;
}

.faq__title {
  font-family: var(--second-font);
  font-weight: 900;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

.faq__global {
  max-width: 851px;
  width: 100%;
  margin: 0 auto 40px;
}

.faq__align {
  display: flex;
  justify-content: center;
}

.faq__inner {
  flex-grow: 1;
}

.faq__square {
  flex-shrink: 0;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: #252525;
  position: relative;
  transition: 0.3s;
}

.faq__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  transform-origin: center;
}

.footer {
  background: #665753;
  padding: 60px 0;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid #e3f2ff;
  margin-bottom: 39px;
}

.footer__phone {
  position: relative;
  padding-left: 40px;
}

.footer__phone:before {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  background: url(../img/icons/phone.svg) no-repeat center / cover;
  top: 4px;
  left: 0;
  background-color: #fff;
  border-radius: 4px;
}

.footer__number {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
  display: block;
  margin-bottom: 2px;
}

.footer__numbertwo {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
  display: block;
  margin-bottom: 2px;
  white-space: nowrap;
}

.footer__get {
  font-weight: 400;
  font-size: 16px;
  line-height: 171%;
  color: #fff;
}

.footer__messenger {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer__mess {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #fff;
  border-radius: 4px;
  width: 36px;
  height: 36px;
}

.footer__write {
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  color: #fff;
  margin-bottom: 0;
}

.footer__email {
  position: relative;
  padding-left: 42px;
}

.footer__email:before {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  background: url(../img/icons/mail.svg) no-repeat center / cover;
  top: 0;
  left: 0;
  background-color: #fff;
  border-radius: 4px;
}

.footer__email-value {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
  display: block;
  /* margin-bottom: 6px; */
}

/* .footer__email-label {
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  color: #252525;
} */

.footer__socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #fff;
  border-radius: 4px;
  width: 36px;
  height: 36px;
}

.footer__subscribe {
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  color: #252525;
  margin-bottom: 0;
}

.footer__middle {
  margin-bottom: 30px;
}

.footer__menu {
  display: flex;
  gap: 131px;
}

.footer__caption {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__dropdown {
  display: none;
}

.footer__link+.footer__link {
  margin-top: 5px;
}

.footer__link {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}

.footer__third {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e3f2ff;
  margin-bottom: 40px;
}

.mapsyandexadress {
  color: #fff;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer__name {
  font-family: var(--second-font);
  font-weight: 700;
  font-size: 40px;
  line-height: 110%;
  color: #fff;
}

.footer__info {
  max-width: 380px;
  width: 100%;
}

.footer__bottom {
    display: flex;
    gap: 5px;
    align-items: flex-start;
    flex-direction: column;
}

.footer__copy__right {
  color: #fff;
}

.footer__point+.footer__point {
  margin-top: 6px;
}

.footer__point {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #252525;
  margin-bottom: 0;
}

.footer__doc {
  color: inherit;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.footer__copy {
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  color: #fff;
  margin-bottom: 10px;
}

.footer__politic {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  text-align: center;
  color: #fff;
}

.scroll-to-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  width: 42px;
  height: 42px;
  position: fixed;
  z-index: -10;
  right: 20px;
  bottom: 82px;
  background: #252525;
  padding: 0;
  opacity: 0;
  transition: 0.3s;
}

.scroll-to-top:hover {
  background: #f15e4b;
}

.scroll-to-top:active {
  background: #f25f4c;
}

.scroll-to-top.active {
  z-index: 20;
  opacity: 1;
}

.testing {
  padding: 60px 0 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 1.2s;
}

.testing.open {
  opacity: 1;
}

.testing__counter {
  font-weight: 600;
  font-size: 14px;
  line-height: 129%;
  text-align: center;
  color: #252525;
  margin-bottom: 20px;
}

.testing__notion {
  max-width: 765px;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #252525;
  margin: 0 auto 100px;
}

.testing__question {
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  color: #252525;
  max-width: 1098px;
  width: 100%;
  margin: 0 auto 30px;
}

.testing__example {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #000;
  max-width: 539px;
  width: 100%;
  margin: 0 auto 60px;
}

.testing__action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
}

.testing .testing__slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
}

.testing__choose {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: #13b22d;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 3px solid #13b22d;
  border-radius: 10px;
  padding: 10px;
  background: none;
  transition: 0.3s;
}

.testing__choose.yes:hover {
  background-color: #13b22d;
  color: #fff;
}

.testing__choose.no {
  color: #e61e1e;
  border: 3px solid #e61e1e;
}

.testing__choose.no:hover {
  background-color: #e61e1e;
  color: #fff;
}

.testing__overflow {
  overflow-y: auto;
}

.testing__pagination {
  position: static;
  display: flex;
  align-items: center;
  gap: 27px;
  padding-top: 140px;
}

.testing .testing__pagination .testing__bullet {
  font-family: var(--second-font);
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #252525;
  border-radius: 4px;
  padding: 10px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0;
  background: transparent;
  opacity: 1;
  transition: 0.3s;
  flex-shrink: 0;
}

.testing-end {
  display: none;
  padding: 250px 0 275px;
}

.testing-end__title {
  font-family: var(--second-font);
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  color: #252525;
  margin-bottom: 16px;
}

.testing-end__text {
  max-width: 559px;
  width: 100%;
  margin: 0 auto 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #252525;
}

.testing-end__align {
  display: flex;
  justify-content: center;
}

.testing-end__print {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  text-align: center;
  color: #252525;
}

.footer__fill {
  transition: 0.3s;
}

.footer__stroke {
  transition: 0.3s;
}

.footer__mess:hover .footer__fill {
  fill: #f15e4b;
}

.footer__mess:hover .footer__stroke {
  stroke: #f15e4b;
}

.footer__social:hover .footer__fill {
  fill: #f15e4b;
}

.footer__social:hover .footer__stroke {
  stroke: #f15e4b;
}

.second-button.second {
  padding: 14px 25px;
  display: none;
}

body:has(.header.closed),
body:has(.header.fixed) {
  /* padding-top: 215px; */
  /* transition: 0.5s ease; */
}

/* Скрываем номер телефона в хедере при загрузке */
.header:not(.scrolled) .footer__numberone {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Показываем номер при скролле или когда header имеет класс scrolled */
.header.scrolled .footer__numberone {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Плавное появление */
.header.scrolled .footer__numberone {
    animation: fadeInNumber 0.3s ease forwards;
}

@keyframes fadeInNumber {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header.closed,
.header.fixed {
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 30;
  background: none;
  min-height: 68px;
}

.header .second-button.second {
  transform: translateX(-30px);
  opacity: 0;
}

.header.closed .header__notice,
.header.fixed .header__notice {
  display: none;
}

.header.closed .header__global,
.header.fixed .header__global {
  padding: 8px 20px;
  background: #473d3a;
  border-radius: 0 0 20px 20px;
}

.header.closed .header__wrapper,
.header.fixed .header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header.closed .header__global,
.header.fixed .header__global {
  display: block;
}

.header.closed .second-button.second,
.header.fixed .second-button.second {
  margin-left: 20px;
  display: block;
  transform: translateX(0);
  opacity: 1;
}

.header.closed .header__icon,
.header.fixed .header__icon {
  width: auto;
}

.header.closed .header__logo,
.header.fixed .header__logo {
  gap: 4px;
  margin: 0;
}

.header.closed .header__span,
.header.fixed .header__span {
  font-size: 24px;
}

.header.closed .header__nav,
.header.fixed .header__nav {
  margin-left: auto;
  margin-right: auto;
  padding-right: 0px;
}

.header,
.header__notice,
.header__global,
.header__wrapper,
.header__logo,
.header__span,
.header__nav,
.second-button,
.header__link {
  transition: all 0.3s ease;
}

.header {
  /*transition: none !important;*/
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100vh;
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: minmax(300px, 628px);
  transition: 0.3s;
  z-index: -10;
  overflow: hidden;
  padding: 30px 16px;
}

.modal__bg {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: 0.3s;
  opacity: 0;
  z-index: -10;
}

.modal__window {
  position: relative;
  background: #665753;
  border-radius: 30px;
  padding: 62px 40px 34px;
  max-width: 628px;
  width: 100%;
  transition: 0.3s;
  opacity: 0;
  z-index: -10;
  transform: translateY(100px);
}

.modal__close {
  position: absolute;
  top: 30px;
  right: 40px;
  padding: 0;
  background: none;
}

.modal.active {
  z-index: 150;
  overflow-y: auto;
}

.modal.active .modal__window {
  z-index: 151;
  opacity: 1;
  transform: translateY(0);
}

.modal.active .modal__bg {
  z-index: 150;
  opacity: 1;
}

.modal__caption {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  color: #252525;
  margin-bottom: 20px;
}

.modal__window.third {
  padding: 30px 51px 53px;
  background-color: #d0eaff;
  background-image: url(../img/modal-cloud-1.png), url(../img/modal-cloud-2.png);
  background-repeat: no-repeat;
  background-position: 32px 133px, calc(100% - 53px) calc(100% - 134px);
  background-size: 100px 100px;
}

.modal.active .modal__window.third {
  z-index: 155;
}

.modal__window.third .modal__close {
  top: 16px;
  right: 16px;
}

.modal-success {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-success__icon {
  margin-bottom: 20px;
}

.modal-success__caption {
  font-family: var(--second-font);
  font-weight: 900;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  color: #252525;
  margin-bottom: 10px;
}

.modal-success__accept {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: rgba(37, 37, 37, 0.9);
  max-width: 250px;
  width: 100%;
  margin: 0 auto 14px;
}

.modal-success__specs {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: rgba(37, 37, 37, 0.9);
  max-width: 360px;
  width: 100%;
  margin: 0 auto 56px;
}

.modal-success__bottom {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #252525;
  max-width: 479px;
  width: 100%;
  margin: 0 auto 25px;
}

.testing__bold {
  font-weight: 600;
}

.teachers {
  padding: 120px 0;
}

.teachers__title {
  max-width: 1006px;
  width: 100%;
  margin: 0 auto 40px;
  font-weight: 900;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  color: #252525;
}

.teachers .teachers__slider .experts__slide {
  height: auto !important;
}

.teachers .experts__list {
  margin-bottom: 0;
}

.slider-controls {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.swiper .slider-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: fit-content;
}

.swiper .slider-pagination .slider-bullet {
  border-radius: 4px;
  padding: 10px;
  width: 36px;
  height: 36px;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--second-font);
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #252525;
  background: transparent;
  transition: 0.3s;
  margin: 0;
}

.swiper .slider-pagination .slider-bullet:hover {
  background: #f5f5f5;
}

.swiper .slider-pagination .slider-bullet.swiper-pagination-bullet-active {
  background: #252525;
  color: #fff;
}

.reviews-page {
  padding: 80px 0;
}

.reviews-page__slider .swiper-pagination {
  display: none;
}

.reviews-page__title {
  font-family: var(--second-font);
  font-weight: 900;
  font-size: 40px;
  line-height: 120%;
  text-align: center;
  color: #252525;
  margin-bottom: 40px;
}

.reviews-page__slider {
  width: 100%;
  position: relative;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide.reviews-page__slide {
  border: 2px solid #f5f5f5;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 350px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  flex-shrink: 0;
}

.swiper-slide.reviews-page__slide:hover {
  border-color: #ddd;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.reviews-page__image {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 20px;
}

.slider-arrow {
  background: none;
  border: 2px solid #f5f5f5;
  border-radius: 50%;
  cursor: pointer;
  padding: 8px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  border-color: #252525;
  background: #252525;
}

.slider-arrow:hover .slider-arrow__icon {
  filter: invert(1);
}

.slider-arrow.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.slider-pagination {
  display: flex;
  gap: 8px;
}

.swiper-pagination-bullet {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f5f5f5;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s ease;
  opacity: 1;
  background: transparent;
}

.swiper-pagination-bullet-active {
  background: #252525;
  color: white;
  border-color: #252525;
}

/* Гарантируем что всегда видно 3 слайда */
.reviews-page__slider .swiper-slide {
  width: calc(33.333% - 14px) !important;
}

@media (max-width: 1024px) {
  .reviews-page__title {
    font-size: 32px;
  }
  
  .swiper-slide.reviews-page__slide {
    height: 300px;
  }
  
  .reviews-page__slider .swiper-slide {
    width: calc(50% - 8px) !important;
  }
}

@media (max-width: 768px) {
  .reviews-page {
    padding: 60px 0;
  }
  
  .reviews-page__title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .swiper-slide.reviews-page__slide {
    height: 250px;
    padding: 10px;
  }
  
  .reviews-page__slider .swiper-slide {
    width: 100% !important;
  }
}

.faq__item--hidden {
  display: none;
}

.header__burger {
  padding: 0;
  background: none;
  display: none;
}

.header-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: block;
  width: 100%;
  transition: all 0.2s ease;
  z-index: -10;
}

.header-mobile.active {
  transform: translateX(0);
  opacity: 1;
  z-index: 100;
}

.header-mobile.active .header-mobile__bg {
  z-index: 100;
  opacity: 1;
}

.header-mobile__bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -10;
  transition: all 0.1s ease;
  opacity: 0;
}

.header-mobile__inner {
  position: absolute;
  top: 0;
  padding: 64px 16px 30px;
  right: 0;
  bottom: 0;
  max-width: 294px;
  width: 100%;
  background-color: #fff;
  z-index: 900;
  height: 100%;
  overflow-y: auto;
  transition: all 0.2s ease;
  transform: translateX(100%);
  border-radius: 30px 0 0 30px;
}

.header-mobile__close {
  padding: 0;
  background: none;
  position: absolute;
  top: 16px;
  right: 16px;
}

.header-mobile.active .header-mobile__inner {
  transform: translateX(0);
}

.header-mobile__nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.header-mobile__nav .header__link {
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-decoration: none;
}

.header-mobile__link {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #252525;
}

.hero__info {
  justify-content: space-between;
  gap: 8px 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.hero__ai {
  max-width: 137px;
  width: 100%;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: rgba(37, 37, 37, 0.9);
  margin-bottom: 0;
}

.hero__capsule {
  max-width: 115px;
  width: 100%;
}


.hero__capsule.third {
  max-width: 137px;
}

.hero__capsule.first {
  padding-top: 12px;
}


.hero__number {
  font-weight: 600;
  font-size: 14px;
  line-height: 129%;
  color: rgba(37, 37, 37, 0.9);
  margin-bottom: 0;
}

.hero__more {
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  padding: 8px;
  background: rgba(255, 255, 255, 0.2);
  border: 0.50px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: rgba(37, 37, 37, 0.9);
  margin-bottom: 0;
}

.hero__capsule.second {
  max-width: 100%;
  width: 100%;
}

.hero__capsule.second .hero__more {
  max-width: 103px;
}

.steps__align {
  display: none;
  justify-content: center;
}

.program__right.mobile {
  display: none;
}

.program__mobtitle {
  display: none;
  font-weight: 700;
  font-size: 18px;
  line-height: 133%;
  text-align: center;
  color: #000;
  margin-bottom: 16px;
}

.experts__arrows.mobile {
  display: none;
}

.experts .combined-pagination {
  display: none;
}

@media (max-width: 1300px) {
  .program__bottom {
    grid-template-columns: 1fr 1fr;
  }

  .program__right {
    width: 100%;
    height: 100%;
  }

  .fillform__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .fillform__image {
    height: 100%;
    width: 100%;
  }

  .reviews__block {
    display: block;
  }

  .reviews__left {
    margin-bottom: 35px;
  }
}

@media (max-width: 1130px) {
  .header__global {
    grid-template-columns: 1fr;
  }

  .header__span {
    font-size: 90px;
  }

  .header__flex {
    justify-content: space-between;
  }

  .header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }

  .header__logo {
    margin: 0;
  }

  body {
    padding-top: 318px;
  }

  body:has(.header.closed) {
    padding-top: 68px;
  }

  body:has(.header.fixed) {
    padding-top: 68px;
  }

  .header.closed,
  .header.fixed {
    min-height: 68px;
  }
}

@media (max-width: 1000px) {
  .header__wrapper {
    flex-direction: column;
  }

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

  .hero__main .main-button {
    justify-content: center;
    width: 100%;
  }

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

  .cost__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

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

  .header.fixed .header__nav {
    margin: 0;
    padding-right: 0px;
  }

  body {
    padding-top: 376px;
  }

  body:has(.header.closed) {
    padding-top: 180px;
  }

  body:has(.header.fixed) {
    padding-top: 180px;
  }

  .header.closed .header__nav,
  .header.fixed .header__nav {
    margin: 0 auto;
    padding-right: 0px;
  }
}

@media (max-width: 800px) {
  .hero__global {
    padding: 60px 30px 0;
  }

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



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

  .effective__item {
    grid-column: span 1;
  }

  .effective__item.long {
    grid-column: span 1;
  }

  .effective__title {
    max-width: 100%;
    text-align: center;
  }

  .effective__inner {
    max-width: 100%;
  }

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

  .fillform__image {
    height: auto;
  }

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

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

  .never__cursor {
    display: none;
  }

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

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

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

  .cost__image {
    display: none;
  }

  .cost__left {
    max-width: 100%;
  }

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

  .footer__third {
    gap: 50px;
  }

  body {
    padding-top: 404px;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 8px 0;
    min-height: 128px;
  }

  .price__block {
    gap: 16px;
  }

  .header__notice {
    padding: 12px 33px 15px 16px;
    border-radius: 12px;
    background-size: 54px;
  }

  .header__logo {
    gap: 4px;
    margin: 0;
  }

  .header__close {
    width: 18px;
    height: 18px;
    top: 4px;
    right: 4px;
  }

  .header__text {
    font-size: 14px;
    line-height: 150%;
  }

  .second-button {
    font-size: 12px;
    padding: 7px 16px;
  }

  .header__global {
    gap: 8px;
  }

  .header__icon {
  
  }

  .header__span {
    font-size: 40px;
  }

  .header__nav {
    display: none;
  }

  .header__burger {
    display: block;
  }

  .header__wrapper {
    gap: 15px;
    flex-direction: row;
  }

  .hero__title {
    display: none;
    font-size: 36px;
    width: 100%;
    margin: 10px 30px;
  }

  .hero__title.mobile {
        display: block;
        font-family: var(--second-font);
        font-weight: 900;
        font-size: 28px; /* чуть меньше для мобилок */
        line-height: 1.2;
        text-align: center;
        color: #ffffff;
        width: 100%;
        padding: 40px 16px 0; /* верхний отступ 40px, боковые 16px */
        margin: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        box-sizing: border-box; /* чтобы padding не увеличивал ширину */
  }

  .hero__subtitle {
    display: none;
  }

  .hero__global {
    padding: 40px 8px;
    background: #665753;
    border-radius: 30px;
    background: #d0eaff url(../img/hero.png) no-repeat;
background-size: cover; /* или contain - смотрите ниже */
background-position: center;
  }

  .hero__clouds {
    display: none;
  }

  .hero {
    margin-bottom: 80px;
  }

  .hero__info {
    display: flex;
  }

  .hero .main-button {
    margin-top: 16px;
  }

  .hero__bottom {
    flex-direction: column-reverse;
    gap: 0;
  }

  .hero__image {
    max-width: initial;
    width: calc(100% + 16px);
    margin: -90px -8px 0;
    display: none;
  }

  .hero__image.mobile {
    display: block;
  }

  .hero .hero__form {
    background: #473d3a;
    border-radius: 20px;
    padding: 16px;
  }

  .hero__input {
    font-size: 14px;
    padding: 17px 19px;
    line-height: 129%;
  }

  .hero__input.first {
    margin-bottom: 8px;
  }

  .hero__input.second {
    margin-bottom: 16px;
  }

  .hero__main {
    gap: 0;
    margin-bottom: 16px;
  }

  .main-button {
    padding: 11px 24px;
  }

  .main-button__arrow {
    width: 32px;
    height: 32px;
  }

  .main-button__icon {
    width: 24px;
  }

  .hero__label {
    padding-left: 32px;
    font-size: 12px;
  }

  .hero__label:before {
    top: 0;
    transform: none;
  }

  .hero__label:after {
    top: 2px;
    transform: none;
  }

  .help__block {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }


  .help__image {
    width: 101px;
    top: -33px;
    bottom: initial;
  }

  .help__title {
    max-width: 250px;
    font-size: 24px;
    line-height: 125%;
    margin-bottom: 8px;
  }

  .help__subtitle {
    font-size: 24px;
    line-height: 125%;
    margin-bottom: 26px;
  }

  .help .main-button {
    padding: 11px 14px;
  }

  .video {
    padding-top: 80px;
    margin-bottom: 64px;
  }

  .video__round {
    border-radius: 26px;
  }

  .steps__align {
    display: flex;
  }

  .steps__left .main-button {
    display: none;
  }

  .blue-first {
    padding: 40px 0;
  }

  .steps__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 133%;
    text-align: center;
    max-width: 323px;
    width: 100%;
    margin: 0 auto 28px;
  }

  .steps__global {
    gap: 0;
  }

  .steps__item+.steps__item {
    margin-top: 16px;
  }

  .steps__item {
    padding: 12px 16px;
    border-radius: 20px;
  }

  .steps__caption {
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 6px;
  }

  .steps__text {
    font-size: 16px;
    line-height: 150%;
  }

  .steps__block {
    margin-bottom: 28px;
  }

  .steps {
    margin-bottom: 80px;
  }

  .steps .main-button {
    padding: 11px 32px;
  }

  .who__title {
    font-size: 24px;
    line-height: 133%;
    margin-bottom: 10px;
  }

  .who__subtitle {
    max-width: 235px;
    width: 100%;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    margin: 0 auto 28px;
  }

  .who__block {
    gap: 16px;
  }

  .who__item {
    border-radius: 20px;
    padding: 12px 16px 13px;
  }

  .who__caption {
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 0;
  }

  .who__subcuption {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 16px;
  }

  .who__image {
    border-radius: 20px;
    margin-bottom: 16px;
  }

  .who__point+.who__point {
    margin-top: 8px;
  }

  .program__bottom {
    display: flex;
    flex-direction: column-reverse;
  }

  .program__right {
    border-radius: 20px;
    display: none;
    width: 100%;
  }

  .program__right.mobile {
    display: block;
  }

  .program__left {
    border-radius: 20px;
    padding: 16px;
  }

  .program {
    padding-top: 80px;
    margin-bottom: 80px;
  }

  .program__title {
    font-size: 24px;
    line-height: 133%;
    margin-bottom: 20px;
  }

  .program__pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }

  .program__pill {
    text-align: center;
    font-size: 16px;
    padding: 12px 15px;
  }

  .program__pill:nth-child(2) {
    order: 3;
    grid-column: span 2;
  }

  .program__heading {
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 16px;
  }

  .program__point+.program__point {
    margin-top: 10px;
  }

  .program__point {
    padding: 0 0 0 42px;
    max-width: 325px;
  }

  .program__square {
    width: 28px;
    height: 28px;
    top: 4px;
  }

  .program__icon {
    width: 18px;
  }

  .program__list {
    margin-bottom: 28px;
  }

  .program__blue {
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 80px;
  }

  .program__mobtitle {
    display: block;
  }

  .program__tabs {
    gap: 12px;
    padding-bottom: 15px;
    margin-bottom: 16px;
  }

  .program__tab {
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    padding: 10px 10px;
    width: 100%;
  }

  .program__tab:nth-child(1),
  .program__tab:nth-child(2) {
    width: calc(50% - 6px);
  }

  .program__tab:nth-child(3) {
    width: calc(100% - 12px - 103px);
  }

  .program__tab:nth-child(4) {
    width: 103px;
  }

  .program__tab:nth-child(5) {
    width: 100%;
  }

  .program__tab:last-child {
    grid-column: span 2;
  }

  .program__caption {
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 12px;
  }

  .program__description {
    font-size: 16px;
    line-height: 150%;
  }

  .effective__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 133%;
    margin-bottom: 28px;
  }

  .effective__block {
    gap: 16px;
  }

  .effective {
    margin-bottom: 80px;
  }

  .effective__item {
    padding: 16px;
  }

  .why {
    padding-top: 80px;
    margin-bottom: 80px;
  }

  .fillform__image {
    border-radius: 20px;
  }

  .fillform__main {
    border-radius: 20px;
    padding: 16px 16px 24px;
  }

  .fillform__title {
    font-size: 24px;
    line-height: 125%;
    margin-bottom: 8px;
  }

  .fillform__subtitle {
    text-align: center;
    margin-bottom: 16px;
    line-height: 129%;
  }

  .fillform .main-button.second {
    width: 100%;
    justify-content: center;
    padding: 11px 15px;
  }

  .fillform .hero__form.second .hero__label {
    margin-bottom: 24px;
  }

  .fillform .hero__form.second .hero__main {
    gap: 8px;
    margin-bottom: 16px;
  }

  .why__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 133%;
    text-align: center;
    padding-bottom: 12px;
  }

  .why__block {
    gap: 16px;
  }

  .why__item {
    border-radius: 20px;
    padding: 16px;
  }

  .why__caption {
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 8px;
  }

  .why__text {
    font-size: 16px;
    line-height: 150%;
  }

  .never {
    padding: 40px 0;
    margin-bottom: 80px;
  }

  .never__image {
    width: 100%;
    display: none;
    border-radius: 20px;
    margin-bottom: 30px;
  }

  .never__main {
    margin-bottom: 0;
  }

  .never__image.mobile {
    display: block;
  }

  .never__title {
    font-size: 24px;
    line-height: 133%;
    font-weight: 700;
    margin-bottom: 24px;
  }

  .never__subtitle {
    font-size: 16px;
    line-height: 150%;
    text-align: left;
    margin-bottom: 30px;
  }

  .never__left {
    padding: 16px;
  }

  .never__right {
    background-image: none;
    padding: 16px;
  }

  .never .second-button {
    width: 100%;
    text-align: center;
    border-radius: 10px;
    padding: 14px 15px;
  }

  .consultation {
    margin-bottom: 86px;
  }

  .consultation__block {
    border-radius: 20px;
    padding: 16px;
  }

  .consultation .hero__label {
    margin-bottom: 16px;
    max-width: 262px;
  }

  .consultation .hero__label:before,
  .consultation .hero__label:after {
    top: 50%;
    transform: translateY(-50%);
  }

  .experts__arrows {
    display: none;
  }

  .experts__arrows.mobile {
    display: flex;
  }

  .experts .combined-pagination {
    display: flex;
  }

  .experts__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 133%;
    text-align: center;
    margin-bottom: 28px;
  }

  .experts__top {
    margin-bottom: 0;
  }

  .experts__slide {
    border-radius: 20px;
    padding: 14px;
  }

  .experts__image {
    border-radius: 20px;
    margin-bottom: 16px;
  }

  .experts__name {
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 8px;
  }

  .experts__post {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 26px;
  }

  .experts .main-button__full {
    padding: 11px 15px;
  }

  .slider-arrow {
    width: 32px;
    height: 32px;
  }

  .slider-arrow__icon {
    width: 24px;
  }

  .reviews {
    padding-top: 80px;
    margin-bottom: 80px;
  }

  .program__glo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .program__poll {
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
  }

  .program__info {
    margin-bottom: 8px;
  }

  .reviews__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 133%;
    text-align: center;
    margin-bottom: 10px;
  }

  .reviews__subtitle {
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    margin-bottom: 28px;
  }

  .reviews__slide {
    padding: 16px;
    border-radius: 20px;
  }

  .reviews__left {
    margin-bottom: 0;
  }

  .reviews .main-button {
    display: none;
  }

  .reviews .combined-pagination {
    padding-top: 16px;
  }

  .price {
    padding: 40px 0;
    margin-bottom: 80px;
  }

  .price__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 133%;
    text-align: center;
    margin-bottom: 10px;
  }

  .price__subtitle {
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    margin-bottom: 28px;
  }

  .price__item {
    border-radius: 20px;
    padding: 16px;
  }

  .price__caption {
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 16px;
  }

  .price__list {
    margin-bottom: 8px;
  }

  .price__text {
    margin-bottom: 16px;
  }

  .price__price {
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 16px;
  }

  .price .main-button.second {
    padding: 11px 15px;
    width: 100%;
    justify-content: center;
  }

  .cost__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 133%;
    text-align: center;
    margin-bottom: 10px;
  }

  .cost__subtitle {
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    margin-bottom: 28px;
  }

  .cost__top {
    max-width: 100%;
    padding: 30px 15px 32px;
  }

  .cost__price {
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 16px;
  }

  .cost__main {
    gap: 18px;
  }

  .cost__bottom {
    border-radius: 20px;
    padding: 16px
  }

  .cost__caption {
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 16px;
  }

  .test {
    padding-top: 80px;
    margin-bottom: 80px;
  }

  .test__title {
    font-size: 16px;
    line-height: 150%;
  }

  .test__subtitle {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 26px;
  }

  .faq {
    padding: 40px 0;
    margin-bottom: 80px;
  }

  .faq__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 133%;
    margin-bottom: 28px;
  }

  .accordion {
    align-items: flex-start;
    padding: 12px 16px;
    gap: 16px;
  }

  .faq__item {
    border-radius: 16px;
  }

  .faq__global {
    margin-bottom: 20px;
  }

  .panel p {
    padding: 8px 16px 12px;
  }

  .cert__block {
    display: flex;
    gap: initial;
    margin-bottom: 0;
  }

  .cert__image {
    width: 100%;
    height: auto;
  }

  .cert__arrows.slider-arrows {
    display: flex;
    margin: 8px 0 40px;
  }

  .cert {
    margin-bottom: 80px;
  }

  .cert__bottom {
    gap: 8px;
  }

  .cert__gerb {
    width: 105px;
  }

  .cert__title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .cert__number {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .cert__link {
    font-size: 16px;
    max-width: 200px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 0;
    border: none;
    margin-bottom: 30px;
  }

  .footer__menu {
    flex-direction: column;
    gap: 16px;
  }

  .footer__third {
    flex-direction: column;
    gap: 30px;
    padding-bottom: 0;
    border: none;
    margin-bottom: 40px;
  }

  .header.fixed .second-button.second,
  .header.closed .second-button.second {
    display: none;
  }

  .footer {
    padding: 40px 0 66px;
  }

  .scroll-to-top {
    right: 16px;
    bottom: 16px;
  }

  .footer__number {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 0;
  }

  .footer__mess {
    width: 32px;
    height: 32px;
  }

  .footer__mess svg {
    width: 24px;
    height: 24px;
  }

  .footer__messenger {
    gap: 8px;
    margin-bottom: 6px;
  }

  .footer__social {
    width: 32px;
    height: 32px;
  }

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

  .footer__socials {
    gap: 8px;
    margin-bottom: 6px;
  }

  .footer__email-value {
    font-size: 16px;
    /* margin-bottom: 4px; */
  }

  .footer__email {
    padding-left: 32px;
  }

  .footer__email:before {
    /* top: 2px; */
    width: 24px;
    height: 24px;
  }

  .footer__phone {
    padding-left: 32px;
  }

  .footer__phone:before {
    width: 24px;
    height: 24px;
  }

  .footer__middle {
    margin-bottom: 30px;
  }

  .footer__column {
    padding: 15px 0;
    border-bottom: 1px solid #e3f2ff;
    border-top: 1px solid #e3f2ff;
  }

  .footer__caption {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 150%;
  }

  .footer__dropdown {
    display: block;
    transition: 0.3s;
  }

  .footer__nav {
    display: none;
    margin-top: 16px;
  }

  .footer__column.active .footer__nav {
    display: block;
  }

  .footer__column.active .footer__dropdown {
    transform: rotate(180deg);
  }

  .footer__link+.footer__link {
    margin-top: 5px;
  }

  .reviews-page {
    padding: 40px 0 80px;
  }

  .reviews-page__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 110%;
    margin-bottom: 30px;
  }

  .swiper-slide.reviews-page__slide {
    padding: 14px;
  }

  .reviews-page .slider-controls {
    margin-top: 30px;
  }

  .teachers {
    padding: 40px 0 80px;
  }

  .teachers__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 110%;
    margin-bottom: 30px;
  }

  .teachers .slider-controls {
    margin-top: 30px;
  }

  .swiper .slider-pagination .slider-bullet {
    width: 32px;
    height: 32px;
  }

  .slider-controls {
    gap: 16px;
  }

  .modal__close {
    top: 16px;
    right: 16px;
  }

  .modal__window {
    padding: 48px 16px 24px;
  }

  .modal__window .main-button.second {
    width: 100%;
    justify-content: center;
    padding: 11px 15px;
  }

  .modal__window .hero__form.second .hero__label {
    margin-bottom: 24px;
  }

  .modal__window .fillform__subtitle {
    font-size: 14px;
    line-height: 150%;
  }

  .modal__window .hero__form.second .hero__main {
    gap: 8px;
    margin-bottom: 16px;
  }

  .modal__caption {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 16px;
  }

  .modal__window.third {
    padding: 30px 30px 46px;
    background-image: none;
    border-radius: 20px;
  }

  .modal__window.third .modal-success__icon {
    width: 82px;
    margin-bottom: 16px;
  }

  .modal__window.third .modal-success__caption {
    font-size: 36px;
    line-height: 133%;
    margin-bottom: 8px;
  }

  .modal-success__accept {
    line-height: 140%;
    margin-bottom: 24px;
  }

  .modal__window.third .modal__close {
    width: 24px;
  }

  .modal-success__specs {
    line-height: 140%;
    margin-bottom: 40px;
  }

  .modal-success__bottom {
    line-height: 140%;
  }

  .testing {
    padding: 10px 0 8px;
  }

  .testing__counter {
    font-size: 14px;
    line-height: 129%;
    margin-bottom: 16px;
    text-align: left;
  }

  .testing__notion {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 60px;
    text-align: left;
  }

  .testing__question {
    font-size: 20px;
    line-height: 140%;
    text-align: left;
    margin-bottom: 0;
  }

  .testing__example {
    font-size: 16px;
    text-align: left;
    line-height: 150%;
    margin: 16px 0 0;
  }

  .testing__action {
    margin-top: 70px;
  }

  .testing__pagination {
    padding-top: 112px;
  }

  .testing-end {
    padding: 264px 0;
  }

  .testing-end__title {
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 16px;
  }

  .testing-end .main-button {
    padding: 11px 19px;
  }

  /* .testing-end__align {
    margin-bottom: 30px;
  } */

  .header.closed .header__global,
  .header.fixed .header__global {
    border-radius: 0 0 14px 14px;
  }

  .program__desco:last-child {
    display: none;
  }

  .program__more {
    display: block;
  }

  body {
    padding-top: 128px;
  }

  body:has(.header.closed) {
    padding-top: 44px;
  }

  body:has(.header.fixed) {
    padding-top: 44px;
  }

  .help__inner {
    padding-left: 0;
    padding-top: 93px;
  }

  .header.closed,
  .header.fixed {
    min-height: 44px;
  }

  .preloader__image {
    width: 150px;
    transform: translate(calc(-50% + 17px), calc(-50% + -35px));
  }

  .program__info.active {
    margin-bottom: 28px;
  }

  body {
    transition: 0.3s padding-top ease;
  }

  .iti {
    margin-top: 8px;
  }
}

@media (max-width: 370px) {
  .main-button {
    padding: 11px 15px;
  }

  .testing-end .main-button {
    padding: 11px 13px;
  }
}

/* WhatsApp кнопка в меню CRM */
.wa-crm-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  margin: 8px;
  flex-shrink: 0;
}

.wa-crm-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.wa-crm-button:active {
  transform: translateY(0) scale(0.98);
}

/* Standalone WhatsApp кнопка рядом с виджетом */
.wa-standalone-button {
  position: fixed;
  z-index: 11999;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
}

.wa-standalone-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 12px 32px rgba(0, 0, 0, 0.2);
}

.wa-standalone-button:active {
  transform: scale(0.95);
}

@media (max-width: 600px) {
  .wa-crm-button {
    width: 52px;
    height: 52px;
    margin: 6px;
  }
  
  .wa-standalone-button {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
    right: 16px !important;
    bottom: 80px !important;
  }
  
  .scroll-to-top {
    right: 16px !important;
    bottom: 16px !important;
  }
}

@media (max-width: 600px) {
    .never__bottom {
        margin: 0;
        padding: 0;
        display: block;
    }

    .never__left {
        padding: 20px 16px;
        border-radius: 20px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .never__texts h2 {
        font-size: 20px;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 20px;
    }

    .never__inner {
        display: flex;
        flex-direction: column;
        gap: 12px;
        font-size: 15px;
        line-height: 1.5;
        text-align: center;
        padding: 0;
        margin: 0 0 20px 0;
        max-width: 100%;
    }

    .never__inner br {
        display: none;
    }

    .service-link {
        display: block;
        text-decoration: none;
        color: #f8692a;
        font-weight: 500;
        transition: color 0.3s;
        padding: 6px 0;
    }

    .service-link:hover {
        color: #f15e4b;
    }

    .never__text {
        font-size: 14px;
        text-align: center;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .second-buttontwo {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
        padding: 12px 20px;
        font-size: 14px;
        box-sizing: border-box;
    }
}