body {
  margin: 0;
  font-family: 'Coda Caption', Arial, sans-serif;
  background: #470905;
  color: #FFEDED;
    overflow-x: hidden; /* запрет горизонтального скролла */
  width: 100%;
}


html, body {
  overflow-x: hidden;
    scroll-behavior: smooth;
}









header {
  width: 100%;
  padding: 25px 0;
  position: relative; /* УБРАЛ fixed */
}

/* Контейнер — центрируем всё */
header .container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center; /* центрируем */
  align-items: center;
}

/* Навигация по центру */
.nav-links {
  display: flex;
  gap: 60px;
  justify-content: center;
}

.nav-links a {
  color: #FFEDED;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: 0.25s ease;
}

/* Увеличение текста при наведении */
.nav-links a:hover {
  transform: scale(1.18);
}

/* Бургер */
.burger {
  width: 30px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: absolute;
  z-index: 99999999;
  right: 20px; /* чтобы бургер не уходил */
}

.burger span {
  width: 100%;
  height: 4px;
  background: #FFEDED;
  border-radius: 3px;
  transition: 0.3s;
}

/* Мобильное меню */
.mobile-menu {
    z-index: 99999999;
  position: absolute;
  top: 70px;
  right: -100%;
  width: 60%;
  background: #3D0E0C;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: 0.4s;
  border-left: 3px solid #AE0808;
}

.mobile-menu a {
  color: white;
  font-size: 18px;
  font-weight: bold;
  transition: 0.25s ease;
}

/* Увеличение текста при наведении в мобильном меню */
.mobile-menu a:hover {
  transform: scale(1.18);
}

/* Open menu */
.mobile-menu.active {
  right: 0;
}

/* Бургер активный */
.burger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Адаптация */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }
}







.hero {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  color: #fff;
}

.stars-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* чтобы звёзды не мешали кликам */
  z-index: 0;
}

.star {
  position: absolute;
  background: url('img/star.png') no-repeat center center;
  background-size: contain;
}

/* Фиксированные позиции и размеры 7 звёзд */
.star1 { top: 10%; left: 15%; width: 90px; height: 90px; }
.star2 { top: 20%; left: 50%; width: 70px; height: 70px; }
.star3 { top: 30%; left: 75%; width: 90px; height: 90px; }
.star4 { top: 50%; left: 25%; width: 70px; height: 70px; }
.star5 { top: 60%; left: 60%; width: 90px; height: 90px; }
.star6 { top: 70%; left: 80%; width: 70px; height: 70px; }
.star7 { top: 85%; left: 40%; width: 90px; height: 90px; }
.star8 { top: 60%; left: 7%; width: 70px; height: 70px; }

.hero-container {
  position: relative;
  z-index: 1; /* чтобы текст был поверх звёзд */
}

.hero {
  width: 100%;
  padding: 50px 0 60px; /* увеличил верхний и нижний отступ */
  display: flex;
  justify-content: center;
}

.hero-container {
  width: 90%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px; /* больше пространства между картинкой и текстом */
}

/* ---------- ЛЕВАЯ СТОРОНА ---------- */
.hero-left {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-photo {
  width: 520px;
  z-index: 10;
  position: relative;
}

/* ---------- ПРАВАЯ СТОРОНА ---------- */
.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;

  margin-top: 0px;
  justify-content: flex-start; /* лучше использовать flex-start для аккуратного выравнивания сверху */
  gap: 30px; /* увеличил расстояние между элементами */
  color: #FFEDED;
}

/* Бейдж */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: #B91C1C;
  padding: 10px 25px;
  border-radius: 40px;
  font-weight: bold;
  font-size: 16px;
  gap: 12px;
}

.hero-badge img {
  width: 28px;
  height: 28px;
}

/* Заголовок */
.hero-title {
  font-size: 44px; /* чуть больше для гармонии */
  line-height: 1.3;
  font-weight: 700;
}

/* Маленький текст под заголовком */
.hero-sub {
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.6;
  margin-top: 0; /* убрал отрицательный отступ */
}
/* Красивая кнопка */
.hero-btn {
  margin-top: 10px;
  padding: 18px 35px; /* уменьшили горизонтальный padding */
  background: linear-gradient(180deg, #C02922 0%, #A01711 100%);
  border: none;
  border-radius: 14px;
  color: white;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 0 #7E1C14, 0 12px 18px rgba(0, 0, 0, 0.25);
  transition: 0.25s ease;
}

.hero-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 0 #7E1C14, 0 18px 24px rgba(0, 0, 0, 0.25);
}

.hero-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 0 #7E1C14, 0 6px 12px rgba(0, 0, 0, 0.2);
}

.hero-photo {
  width: 520px;   /* для ПК */
  max-width: 100%; /* чтобы не выходило за пределы контейнера */
  height: auto;    /* сохраняем пропорции */
  z-index: 10;
  position: relative;
}
/* ----------- АДАПТАЦИЯ ---------- */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;  /* вертикально */
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  /* Скрываем бейдж на мобильных */
  .hero-badge {
    display: none;
  }

  /* Заголовок меньше */
  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }

  /* Серый текст меньше */
  .hero-sub {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.8;
  }

  /* Фото полностью по ширине, без сужения */
  .hero-photo {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  /* Кнопка, чтобы помещалась на экран */
  .hero-btn {
    padding: 16px 30px;  /* чуть меньше, чтобы уместилась */
    font-size: 18px;
    margin: 0 auto;
  }
}

/* Общая анимация появления */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Анимация для левой части (фото) */
.hero-left {
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0; /* чтобы сначала был скрыт */
}

/* Анимация для правой части (текст) */
.hero-right {
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

/* Анимация для звезд */
.star {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

.star1 { animation-delay: 0.2s; }
.star2 { animation-delay: 0.4s; }
.star3 { animation-delay: 0.6s; }
.star4 { animation-delay: 0.8s; }
.star5 { animation-delay: 1s; }
.star6 { animation-delay: 1.2s; }
.star7 { animation-delay: 1.4s; }
.star8 { animation-delay: 1.6s; }

/* Можно добавить лёгкое вращение для звезд */
.star {
  animation-name: fadeInUp, starRotate;
  animation-duration: 1s, 10s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out, linear;
  animation-delay: 0s, 0s;
}

@keyframes starRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.tag {
  background: #AE0808;
  padding: 12px 22px;
  border-radius: 30px;
  display: inline-flex; /* чтобы иконка и текст были на одной линии */
  align-items: center; /* вертикальное выравнивание */
  font-weight: bold;
  margin-bottom: 20px;
  gap: 10px; /* расстояние между иконкой и текстом */
}

.tag-icon {
  width: 24px; /* размер иконки */
  height: 24px;
}


nav.nav-links {
  gap: 20px;
}

.pricing-card__container--classic-plan {
  width: 100%;
  padding: 15px;
}


/* Исходное состояние для анимации */
.animate-left,
.animate-right {
  opacity: 0;
  transform: translateX(0) scale(0.95);
  transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Картинка — слева направо */
.animate-left {
  transform: translateX(-60px) scale(0.95);
}

/* Текст — справа налево */
.animate-right {
  transform: translateX(60px) scale(0.95);
}

/* Активный класс — при появлении */
.animate-left.show,
.animate-right.show {
  opacity: 1;
  transform: translateX(0) scale(1);
}


/* Текстовая правая колонка */
.right {
  max-width: 600px;
  text-align: right;
}

h1 {
  font-size: 40px;
  line-height: 1.3;
  margin: 0 0 15px;
}

.sub {
  opacity: 0.8;
  margin-bottom: 25px;
}

/* Кнопка */
.btn {
  position: relative;
  display: inline-block;
  padding: 18px 50px;
  font-size: 22px;
  font-weight: bold;
  color: #FFEDED;
  text-transform: uppercase;
  background: linear-gradient(45deg, #AE0808, #FF3030, #AE0808, #FF3030);
  background-size: 400% 400%;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  animation: gradientBG 8s ease infinite;
}

.btn:hover {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6), 0 0 20px #AE0808;
}

/* Анимация градиента кнопки */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Полоска прокрутки текста */
.scroll-text-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #AE0808;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.scroll-text-container .scroll-text {
  white-space: nowrap;
  font-size: 24px;
  font-weight: bold;
  color: #FFEDED;
  padding-right: 50px;
  display: inline-block;
  animation: scroll 50s linear infinite;
}

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


:root {
    --font-family: 'Coda Caption', Arial, sans-serif;
    --accent: #FFEDED;
    --bg: #470905;
    --item-bg: rgba(255,255,255,0.06);
    --item-hover: #FFEDED; /* <-- Hover цвет (новый) */
    --item-hove2:  #470905; /* <-- Hover цвет (новый) */
    
    --active-red: #470905;
}

/* ===== ГЛОБАЛЬНО — ШРИФТ + CAPS ===== */
* {
    box-sizing: border-box;
    font-family: 'Coda Caption', Arial, sans-serif;
    text-transform: uppercase;
}

.courseProgramV2__wrapper {
    font-family: 'Coda Caption', Arial, sans-serif;
    padding: 50px;
    color: #FFEDED;
}

.courseProgramV2__title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    font-family: 'Coda Caption', Arial, sans-serif;
    margin-bottom: 40px;
}

.courseProgramV2__layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    font-family: 'Coda Caption', Arial, sans-serif;
}

/* ===== SIDEBAR ===== */

.courseProgramV2__item {
    width: 100%;
    background: var(--accent);
    border: 2px solid transparent;
    padding: 18px;
    margin-bottom: 15px;
    border-radius: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: 0.25s ease;
    font-family: 'Coda Caption', Arial, sans-serif;
    justify-content: flex-start;
    color: #2A2A2A;
}

/* 👆 состояние наведения — другая функция */
.courseProgramV2__item:hover:not(.is-active) {
    background: var(--item-hove2);
    color: #2A2A2A;
    transform: translateX(12px);
}

/* Иконка на ховере */

.courseProgramV2__item:hover:not(.is-active) .courseProgramV2__icon {
    stroke:  #470905;
    transform: translateX(6px);
    opacity: 1;
}

/* ⏺ АКТИВНЫЙ */
/* тёмный и выделяется сильнее */
.courseProgramV2__item.is-active {
    background: var(--active-red);
    font-family: 'Coda Caption', Arial, sans-serif;
    border-color: white;
    transform: translateX(15px);
    color: #FFEDED;
    box-shadow: 0 8px 28px rgba(255, 255, 255, 0.18);
}

/* Цифра ВСЕГДА чёрная */
.courseProgramV2__itemIndex {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background: #470905;
    font-family: 'Coda Caption', Arial, sans-serif;
    color: #FFEDED;
    font-size: 20px;
}

/* Текст */
.courseProgramV2__itemText {
    flex: 1;
    font-size: 17px;
    line-height: 1.35;
    margin-right: auto;
    text-align: left;
    font-family: 'Coda Caption', Arial, sans-serif;
    color: inherit;
}

/* ICON */
.courseProgramV2__icon {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    opacity: .6;
    transition: .3s;
}

/* ===== CONTENT ===== */

.courseProgramV2__content {
    background: #FFEDED;
    padding: 30px;
    border-radius: 20px;
    min-height: 400px;
    max-height: 500px; /* <-- ограничение по высоте */
    overflow-y: auto;  /* <-- скролл если текста больше */
    color: #470905;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.courseProgramV2__content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.courseProgramV2__image {
    width: 100%;
    border-radius: 18px;
}

.courseProgramV2__subtitle {
    font-size: 26px;
    margin: 16px 0;
    font-family: 'Coda Caption', Arial, sans-serif;
}

.courseProgramV2__text {
    opacity: .85;
    line-height: 1.6;
    font-family: 'Coda Caption', Arial, sans-serif;
}


    .get-button {
        width: 100%;
        padding: 16px;
        margin-top: 20px;
        background: #AE0808;
        color: #FFEDED;
        border-radius: 24px;
        font-size: 16px;
        border: 2px solid white;
    }


/* ===== Responsive ===== */
/* ===== МОБИЛЬНАЯ АДАПТАЦИЯ ===== */
@media(max-width: 900px) {

    .courseProgramV2__wrapper {
        padding: 25px 16px;
    }

    .courseProgramV2__title {
        font-size: 28px;
        margin-bottom: 25px;
        line-height: 1.2;
    }

    /* Вертикальная колонка */
    .courseProgramV2__layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* ==== Sidebar ===== */
    .courseProgramV2__sidebar {
        width: 100%;
    }

    .courseProgramV2__item {
        padding: 14px 16px;
        margin-bottom: 12px;
        border-radius: 20px;
        gap: 12px;
        transform: none !important;
    }

    .courseProgramV2__itemIndex {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 16px;
    }

    .courseProgramV2__itemText {
        font-size: 14px;
        line-height: 1.25;
    }

    .courseProgramV2__icon {
        width: 18px;
        height: 18px;
    }

    /* Скрытие/показ */
    #toggleMore {
        margin-top: -5px;
        font-size: 14px;
        width: 100%;
        padding: 12px;
        border-radius: 20px;
    }

    /* ==== Контент ==== */
    .courseProgramV2__content {
        padding: 20px;
        border-radius: 16px;
        max-height: none;
        min-height: auto;
    }

    .courseProgramV2__subtitle {
        font-size: 20px;
        margin: 12px 0;
    }

    .courseProgramV2__text {
        font-size: 14px;
        line-height: 1.45;
    }

    /* Видео адаптация */
    #videoContainer .video-wrapper {
        width: 100%;
        height: auto;
    }

    #promo-video {
        width: 100% !important;
        height: auto !important;
        border-radius: 12px;
    }

    /* Кнопка "ОТРИМАТИ" */
    .get-button {
        width: 100%;
        padding: 16px;
        margin-top: 20px;
        background: #AE0808;
        color: #FFEDED;
        border-radius: 24px;
        font-size: 16px;
        border: 2px solid white;
    }

    .get-button:active {
        transform: scale(0.97);
    }

    /* Убираем сильные смещения при hover на мобильных */
    .courseProgramV2__item:hover:not(.is-active),
    .courseProgramV2__toggle:hover {
        transform: none;
        box-shadow: none;
    }
}
/* Новая анимация при наведении — белая рамка */
.courseProgramV2__item:hover:not(.is-active) {
    font-family: 'Coda Caption', Arial, sans-serif;
    background: linear-gradient(135deg, #470905, #470905); /* твой фон */
    color: #FFEDED; /* текст белый */
    transform: translateX(8px); /* лёгкое смещение */
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border: 2px solid white; /* белая рамка */
    transition: all 0.3s ease;
}

/* Иконка на ховере — белая */
.courseProgramV2__item:hover:not(.is-active) .courseProgramV2__icon {
    stroke: white; /* иконка белая */
    opacity: 1;
    transform: translateX(4px);
    transition: all 0.3s ease;
}

.courseProgramV2__toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px; /* фиксированная ширина */
    max-width: 90%; /* чтобы не вылезала на маленьких экранах */
    padding: 14px 0;
    margin: 10px auto 15px; /* центрирование по горизонтали и отступы сверху/снизу */
    background: var(--accent);
    color: #2A2A2A;
    font-family: 'Coda Caption', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

/* Hover эффект */
.courseProgramV2__toggle:hover {
    background: var(--item-hover);
    color: #470905;
    transform: translateX(4px);
    border: 2px solid white;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* Активное состояние */
.courseProgramV2__toggle.active {
    background: var(--active-red);
    color: #FFEDED;
    border: 2px solid white;
    box-shadow: 0 8px 28px rgba(255,255,255,0.18);
    transform: translateX(4px);
}


.pricing-card__container--classic-plan {
  width: 560px;
  padding: 25px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  margin: 40px auto;
}

/* Внутрішня картка */
.pricing-card__wrapper--classic {
  background: linear-gradient(160deg, #AE0808, #AE0808);
  padding: 32px;
  border-radius: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;

  box-shadow: inset 0 0 12px rgba(0,0,0,0.3),
              0 8px 20px rgba(0,0,0,0.35);
}

/* Заголовок */
.pricing-card__title--large {
  font-size: 28px;
  font-weight: 800;
  color: #FFEDED;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* Блок з пунктами */
.pricing-card__features-block--extended {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(7px);
  padding: 25px;
  border-radius: 20px;
  width: 100%;
  margin-bottom: 35px;

  box-shadow: inset 0 0 12px rgba(0,0,0,0.25);
}

/* Кожен пункт */
.pricing-card__feature-item--text {
  color: #FFEDED;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.4;
  transition: 0.25s ease;
}

.pricing-card__feature-item--text:hover {
  transform: translateX(5px);
  color: #FFEDED;
}

/* Нижня секція */
.pricing-card__footer-section--buy {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Кнопка */
.pricing-card__button--purchase {
  padding: 14px 40px;
  background: linear-gradient(145deg, #ffffff, #f3dede);
  color: #AE0808;
  border: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;

  box-shadow: 0 6px 14px rgba(255, 255, 255, 0.3),
              inset 0 0 10px rgba(255, 255, 255, 0.5);
}

.pricing-card__button--purchase:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.35),
              inset 0 0 12px rgba(255, 255, 255, 0.8);
}

.pricing-card__button--purchase:active {
  transform: translateY(0) scale(0.98);
  box-shadow: inset 0 0 18px rgba(0,0,0,0.45);
}

/* Ціна */
.pricing-card__price--value {
  font-size: 26px;
  font-weight: 800;
  color: #FFEDED;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}


/* -------------------------------------------------------- */
/* 📱 МОБІЛЬНА АДАПТАЦІЯ */
/* -------------------------------------------------------- */

@media (max-width: 600px) {
  .pricing-card__container--classic-plan {
    width: 100%;
    padding: 15px;
    margin: 20px auto;
  }

  .pricing-card__wrapper--classic {
    padding: 22px;
    border-radius: 18px;
  }

  .pricing-card__title--large {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .pricing-card__features-block--extended {
    padding: 18px;
  }

  .pricing-card__feature-item--text {
    font-size: 14.5px;
    margin-bottom: 10px;
  }

  .pricing-card__footer-section--buy {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .pricing-card__button--purchase {
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
  }

  .pricing-card__price--value {
    font-size: 22px;
  }
}

/* Дуже маленькі телефони */
@media (max-width: 400px) {
  .pricing-card__wrapper--classic {
    padding: 18px;
  }

  .pricing-card__title--large {
    font-size: 21px;
  }

  .pricing-card__feature-item--text {
    font-size: 13.5px;
  }

  .pricing-card__button--purchase {
    font-size: 15px;
  }

  .pricing-card__price--value {
    font-size: 20px;
  }
}


/* Головний контейнер футера */
.site-footer__main-container {
  width: 100%;
  background: #AE0808;
  padding: 25px 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

/* Лівий блок social icons */
.site-footer__social-icons {
  display: flex;
  align-items: center;
  gap: 25px;
}

.site-footer__social-link img {
  width: 42px;
  height: 42px;
  filter: brightness(100%);
  transition: 0.25s ease;
}

.site-footer__social-link img:hover {
  transform: scale(1.12);
  filter: brightness(140%);
}

/* Центр: навігація */
.site-footer__navigation {
  display: flex;
  gap: 55px;
}

.site-footer__nav-item {
  color: #FFEDED;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  transition: 0.25s ease;
}

.site-footer__nav-item:hover {
  color: #FFEDED;
}

/* Права кнопка */
.site-footer__contact-button {
  background: #ffffff;
  border: none;
  padding: 16px 38px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 800;
  color: #AE0808;
  cursor: pointer;
  transition: 0.3s ease;

  box-shadow: 0 6px 14px rgba(255, 255, 255, 0.2),
              inset 0 0 10px rgba(255, 255, 255, 0.7);
}

.site-footer__contact-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.35),
              inset 0 0 15px rgba(255,255,255,1);
}

.site-footer__contact-button:active {
  transform: scale(0.97);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 📱 АДАПТИВ ДЛЯ ТЕЛЕФОНІВ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 700px) {
  .site-footer__main-container {
    flex-direction: column;
    gap: 25px;
    padding: 30px 20px;
  }

  .site-footer__navigation {
    gap: 25px;
  }

  .site-footer__nav-item {
    font-size: 16px;
  }

  .site-footer__contact-button {
    width: 100%;
    padding: 16px 0;
    font-size: 17px;
  }
}

@media (max-width: 450px) {
  .site-footer__social-link img {
    width: 36px;
    height: 36px;
  }

  .site-footer__navigation {
    flex-direction: column;
    gap: 12px;
  }

  .site-footer__nav-item {
    font-size: 15px;
  }

  .site-footer__contact-button {
    font-size: 16px;
  }
}



.pricing-card__container--classic-plan {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.pricing-card__container--classic-plan.show {
  opacity: 1;
  transform: translateY(0);
}

/* Для поочередного появления элементов */
.pricing-card__feature-item--text {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.pricing-card__container--classic-plan.show .pricing-card__feature-item--text:nth-child(1) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.pricing-card__container--classic-plan.show .pricing-card__feature-item--text:nth-child(2) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.pricing-card__container--classic-plan.show .pricing-card__feature-item--text:nth-child(3) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.pricing-card__container--classic-plan.show .pricing-card__feature-item--text:nth-child(4) { transition-delay: 0.8s; opacity: 1; transform: translateY(0); }
.pricing-card__container--classic-plan.show .pricing-card__feature-item--text:nth-child(5) { transition-delay: 1s; opacity: 1; transform: translateY(0); }
.pricing-card__container--classic-plan.show .pricing-card__feature-item--text:nth-child(6) { transition-delay: 1.2s; opacity: 1; transform: translateY(0); }
.pricing-card__container--classic-plan.show .pricing-card__feature-item--text:nth-child(7) { transition-delay: 1.4s; opacity: 1; transform: translateY(0); }
.pricing-card__container--classic-plan.show .pricing-card__feature-item--text:nth-child(8) { transition-delay: 1.6s; opacity: 1; transform: translateY(0); }


.courseProgramV2__wrapper {
  opacity: 0;              /* начально прозрачный */
  transform: translateY(20px); /* немного смещаем вниз */
  transition: opacity 0.8s ease, transform 0.8s ease; /* плавный переход */
}

.courseProgramV2__wrapper.show {
  opacity: 1;
  transform: translateY(0);
}
