* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-Montserrat);
  font-size: var(--fz-16);
  line-height: 1.5;
}

.container {
  max-width: 1440px;
  padding: 0 30px;
  margin: 0 auto;
}

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

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

a:hover,
a:focus {
  color: var(--color-btn);
}

/* header start  */
.logo span {
  display: block;
  font-size: 30px;
  color: var(--color-white);
  padding-top: 10px;

  border-top: 0;
  /* убираем обычную линию */
  position: relative;
}

.logo span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  background: linear-gradient(90deg, #1cc4cc 0%, #0181cb 100%);
  border-radius: 2px;
}

.header {
  position: relative;
  height: 100vh;
  padding: 30px 0;
  overflow: hidden;
  /* важно, чтобы видео не вылазило */
}

.header__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* тянем пропорционально */
  z-index: 1;
  opacity: 0.9;
  /* можно затемнить, если текст плохо видно */
}

.header .container {
  position: relative;
  z-index: 5;
  /* контент над видео */
}

.header__top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 4;
  position: relative;
}

.header__top--fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(8, 13, 32, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.3s ease forwards;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.header__hamburger {
  display: none;
  width: 50px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  /* лучше опустить вниз */
  z-index: 999;
}

.header__hamburger span {
  width: 100%;
  height: 3px;
  background: #ffffff;
  display: block;
  margin: 6px 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #1cc4cc 0%, #0181cb 100%);
}

.nav ul {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: var(--color-white);
}

.nav ul li {
  color: inherit;
  transition: font-size 0.3s linear;
}

.nav ul li:hover {
  font-size: 20px;
}

.btn {
  padding: 10px 30px;
  font-family: var(--font-Inter);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0%;
  border-radius: 8px;
  color: var(--color-white);
  border: 1px solid rgb(202, 199, 203);
  background-color: transparent;
}

.header__typed {
  border-right: 3px solid #ffffff;
  padding-right: 3px;
  white-space: nowrap;
  display: inline-block;
  font-weight: inherit;
  animation: blinkCursor 0.7s infinite;
}

.header__content {
  min-height: 100%;
  margin-top: 300px;
}

.header__content-left {
  max-width: 700px;
  color: var(--color-white);
}

.header__content-left h1 {
  font-size: var(--fz-45);
}

.header__content-left p {
  font-size: var(--fz-24);
  margin-bottom: 50px;
}

.header__content-left h1 .header__typed {
  font-style: italic;
  background: linear-gradient(
    90deg,
    rgba(28, 196, 204, 1) 0%,
    rgba(1, 129, 203, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

@keyframes blinkCursor {
  0% {
    border-color: rgba(255, 255, 255, 1);
  }

  50% {
    border-color: rgba(255, 255, 255, 0);
  }

  100% {
    border-color: rgba(255, 255, 255, 1);
  }
}

/* header end  */
/* ---------- MOBILE MENU ---------- */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 998;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, #1cc4cc 0%, #0181cb 100%);

  padding: 20px;
  z-index: 999;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.mobile-menu__title {
  font-size: 22px;
  font-weight: bold;
}

.mobile-menu__close {
  font-size: 30px;
  cursor: pointer;
  user-select: none;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu ul li {
  margin-bottom: 20px;
}

.mobile-menu ul li a {
  font-size: 18px;
  text-decoration: none;
  color: #111;
}

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

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* BURGER SHOW ON MOBILE */

/* about start  */

.about {
  border-radius: 12px;
  background: rgba(242, 242, 242, 1);
  padding: 120px 0;
}

.about__container {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

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

.about__item {
  border-radius: 12px;
  background: #d2d4ff;
  padding: 40px 45px;
}

.about__item h4 {
  font-family: var(--font-Inter);
  font-size: 64px;
  font-weight: 800;
  line-height: 130%;
  letter-spacing: 0%;
  font-style: italic;
  margin-bottom: 10px;
}

.about__item p {
  max-width: 190px;
}

.about__right {
  width: 50%;
}

.about__title {
  color: rgba(2, 4, 22, 1);
  font-family: var(--font-Inter);
  font-size: 50px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: left;
  font-style: italic;
  margin-bottom: 40px;
}

.about__right p {
  color: rgba(95, 92, 89, 1);
  font-family: var(--font-Inter);
  font-size: var(--fz-20);
  font-weight: 300;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
}

/* Відступ для блоку з відгуками від тексту зверху */
.about__right-reviews {
  margin-top: 60px;
}

/* Стиль самої картки відгуку */
.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  /* Легка тінь для об'єму */
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  /* Щоб усі картки були однакової висоти */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Текст відгуку */
.review-text {
  font-family: var(--font-Inter);
  font-size: 16px;
  line-height: 150%;
  font-style: italic;
  color: rgba(95, 92, 89, 1);
  margin-bottom: 25px;
  position: relative;
}

/* Додаємо декоративні лапки */
.review-text::before {
  content: "“";
  font-family: var(--font-Montserrat);
  font-size: 60px;
  color: #d2d4ff;
  /* Колір ваших блоків зліва */
  position: absolute;
  top: -30px;
  left: -10px;
  z-index: 0;
  opacity: 0.5;
}

/* Блок автора */
.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Якщо будете додавати фото */
.review-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author__info h5 {
  font-family: var(--font-Inter);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 5px;
  color: rgba(2, 4, 22, 1);
}

.review-author__info span {
  font-family: var(--font-Inter);
  font-size: 14px;
  color: rgba(95, 92, 89, 0.8);
}

/* --- Навігація Swiper --- */
.swiper-nav-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  /* Стрілки справа внизу */
  gap: 20px;
  margin-top: 20px;
  padding-right: 10px;
}

/* Перевизначення стандартних стилів стрілок Swiper */
.reviews-next,
.reviews-prev {
  position: static;
  /* Скасовуємо абсолютне позиціонування */
  margin: 0;
  width: 40px;
  height: 40px;
  background-color: #d2d4ff;
  /* Колір фону стрілок */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.reviews-next:hover,
.reviews-prev:hover {
  background-color: #b6b9ff;
}

/* Колір та розмір іконок всередині стрілок */
.reviews-next::after,
.reviews-prev::after {
  font-size: 18px;
  font-weight: bold;
  color: rgba(2, 4, 22, 1);
  /* Темний колір стрілок */
}

/* about end  */
/* consult start  */

/* Загальні відступи секції */
.consult {
  padding: 100px 0;
}

/* Темна картка-контейнер */
.consult__wrapper {
  background-color: #020416;
  /* Темний фон (майже чорний) */
  border-radius: 24px;
  /* Більші заокруглення */
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
  /* Легка тінь */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Декоративний елемент (світіння) на фоні */
.consult__wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(210, 212, 255, 0.15) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* Ліва частина з текстом */
.consult__content {
  flex: 1;
  z-index: 1;
}

.consult__title {
  font-family: var(--font-Inter);
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 120%;
}

.consult__subtitle {
  font-family: var(--font-Inter);
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  /* Напівпрозорий білий */
  max-width: 450px;
  line-height: 150%;
}

/* Права частина (Форма) */
.consult__form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 450px;
  width: 100%;
  z-index: 1;
}

.consult__input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  /* Прозорий фон */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px 25px;
  font-family: var(--font-Inter);
  font-size: 16px;
  color: #fff;
  transition: all 0.3s ease;
}

.consult__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.consult__input:focus {
  outline: none;
  border-color: #d2d4ff;
  /* Акцентний колір при кліку */
  background: rgba(255, 255, 255, 0.1);
}

/* Кнопка */
.consult__btn {
  width: 100%;
  padding: 20px;
  background-color: #d2d4ff;
  /* Ваш фірмовий колір з секції About */
  color: #020416;
  border: none;
  border-radius: 12px;
  font-family: var(--font-Inter);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.consult__btn:hover {
  background-color: #fff;
  /* При наведенні стає білою */
  transform: translateY(-2px);
}

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

/* Адаптив для мобільних (Media Queries) */
/* Додайте це в кінці або у файл media.css */
@media (max-width: 992px) {
  .consult__wrapper {
    flex-direction: column;
    /* Блоки стають один під одним */
    padding: 40px 30px;
    text-align: center;
    gap: 40px;
  }

  .consult__subtitle {
    margin: 0 auto;
    /* Центруємо текст */
  }

  .consult__title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .consult__wrapper {
    padding: 30px 20px;
  }

  .consult__title {
    font-size: 26px;
  }

  .consult__btn {
    font-size: 16px;
  }
}

/* consult end  */

/* services start  */
/* services start  */
.services {
  background: rgba(14, 2, 22, 1);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.services img:nth-of-type(1) {
  position: absolute;
  left: -200px;
  top: 0;
}

.services img:nth-of-type(2) {
  position: absolute;
  right: -200px;
  bottom: -100px;
}

.services__title {
  font-family: var(--font-Inter);
  font-size: var(--fz-48);
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
  font-style: italic;
  font-weight: 500;
}

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

.service-card {
  background: rgba(210, 212, 255, 1);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card__title {
  font-family: var(--font-Inter);
  font-size: var(--fz-32);
  font-weight: 700;
  line-height: 140%;
}

.service-card__description {
  font-family: var(--font-Inter);
  font-size: var(--fz-18);
  line-height: 150%;
  color: #222;
  opacity: 0.85;
}

.service-card__list {
  list-style: disc;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: var(--fz-18);
}

/* ---------- АДАПТИВ ---------- */

/* ≤1200px */
@media (max-width: 1200px) {
  .services__grid {
    gap: 20px;
  }
}

/* ≤992px */
@media (max-width: 992px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .service-card {
    padding: 28px;
  }

  .service-card__title {
    font-size: var(--fz-28);
  }
}

/* ≤768px */
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-card {
    padding: 24px;
  }

  .service-card__title {
    font-size: var(--fz-26);
  }
}

/* ≤576px */
@media (max-width: 576px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services__title {
    font-size: var(--fz-35);
  }

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

  .service-card__title {
    font-size: var(--fz-22);
  }

  .service-card__description,
  .service-card__list {
    font-size: var(--fz-16);
  }
}

/* ≤420px */
@media (max-width: 420px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services__title {
    font-size: var(--fz-32);
  }

  .service-card {
    padding: 18px;
    border-radius: 14px;
  }

  .service-card__title {
    font-size: var(--fz-20);
  }

  .service-card__description,
  .service-card__list {
    font-size: var(--fz-15);
  }
}

/* services end */
/* portdolio start  */

.portfolio {
  border-radius: 12px;
  background: rgba(242, 242, 242, 1);
  padding: 70px 0;
}

.portfolio__title {
  font-family: var(--font-Inter);
  font-size: var(--fz-48);
  font-weight: 500;
  text-align: center;
  font-style: italic;
  margin-bottom: 50px;
}

.portfolio-slider {
  padding-bottom: 60px;
}

.portfolio__card {
  background: rgba(210, 212, 255, 0.6);
  border-radius: 22px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: auto;
  transition: transform 0.3s ease;
}

.portfolio__card:hover {
  transform: translateY(-6px);
}

.portfolio__card {
  max-width: 580px;
  max-height: 480px;
}

/* Чтобы картинка была внутри блока с фиксированной высотой и вертикальной прокруткой */
.portfolio__card .img-inner {
  width: 100%;
  height: 320px;
  /* ✨ регулируй высоту как хочешь */
  overflow-y: scroll;
  overflow-x: hidden;
  border-radius: 18px;
}

/* Чтобы убрать полосу скролла — если не нужна */
.portfolio__card .img-inner::-webkit-scrollbar {
  width: 6px;
}

.portfolio__card .img-inner::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

/* Чтобы картинка вписывалась в ширину */
.portfolio__card .img-inner img {
  width: 100%;
  height: auto;
  display: block;
}

.portfolio__card img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.portfolio__card h3 {
  font-family: var(--font-Inter);
  font-size: var(--fz-24);
  font-weight: 700;
}

.portfolio__card p {
  font-family: var(--font-Inter);
  font-size: var(--fz-18);
  line-height: 150%;
  color: #4b4b4b;
}

.swiper-button-prev,
.swiper-button-next {
  color: #000;
}

.swiper-pagination-bullet-active {
  background: #000 !important;
}

/* --- АДАПТИВ --- */

@media (max-width: 992px) {
  .portfolio__title {
    font-size: var(--fz-36);
  }
}

@media (max-width: 768px) {
  .portfolio__card {
    padding: 18px;
  }

  .portfolio__title {
    font-size: var(--fz-30);
  }
}

@media (max-width: 480px) {
  .portfolio__title {
    font-size: var(--fz-26);
  }

  .portfolio-slider {
    padding-bottom: 40px;
  }
}

/* portdolio end */

/* footer start */
.footer {
  background-color: #080d20;
  padding: 60px 0 30px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.footer__logo span {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
}

.footer__nav ul {
  display: flex;
  gap: 30px;
}

.footer__nav ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  font-size: 16px;
}

.footer__nav ul li a:hover {
  color: #fff;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer__phone,
.footer__email {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer__email {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.footer__phone:hover,
.footer__email:hover {
  color: #1cc4cc;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__socials a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer__socials a:hover {
  color: #fff;
}

/* Mobile Adaptive */
@media (max-width: 992px) {
  .footer__wrapper {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer__nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .footer__contacts {
    align-items: center;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer__nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* footer end */

/* PRELOADER */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #080d20;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

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

.preloader__spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #1cc4cc;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.preloader__text {
  font-family: var(--font-Montserrat);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* steps start  */
.steps {
  padding: 70px 0;
  background: #f8f9ff;
  margin-bottom: 40px;
}

.steps__title {
  text-align: center;
  font-size: var(--fz-40);
  margin-bottom: 50px;
  font-weight: 500;
  font-style: italic;
}

.steps__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.step {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.08);
  border: 1px solid linear-gradient(90deg, #1cc4cc 0%, #0181cb 100%);
  border-radius: 0;
}

.step__number {
  font-size: 48px;
  font-weight: 700;
  color: #7b61ff;
  margin-bottom: 10px;
}

.step__name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step__text {
  font-size: 16px;
  opacity: 0.8;
  line-height: 1.5;
}

.step2 {
  background: linear-gradient(90deg, #1cc4cc 0%, #0181cb 100%);
  color: #f8f9ff;
}

.step2 .step__name {
  font-style: italic;
}

.step4 {
  background: linear-gradient(90deg, #1cc4cc 0%, #0181cb 100%);
  color: #f8f9ff;
}

.step4 .step__name {
  font-style: italic;
}

/* steps end  */
/* price start  */

.price {
  background: rgba(14, 2, 22, 1);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.price img:nth-of-type(1) {
  position: absolute;
  left: -200px;
  top: 0;
}

.price img:nth-of-type(2) {
  position: absolute;
  right: -200px;
  bottom: -100px;
}

.price_title {
  font-family: var(--font-Inter);
  font-size: var(--fz-48);
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
  font-style: italic;
  font-weight: 500;
}

.price {
  padding: 80px 0;
  background: linear-gradient(180deg, #1b0f2e, #0e061a);
  color: #fff;
}

.price__title {
  text-align: center;
  font-size: var(--fz-45);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 50px;
}

.price__wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.price__card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  width: 330px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 40px;
}

.price__card:hover {
  transform: translateY(-3px);
  border: 1px solid white;
}

.price__card--active {
  border: 2px solid #6a4df4;
  transform: translateY(-10px);
}

.price__label {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #6a4df4;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

.price__card-title {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

.price__card-price {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
}

.price__card-price span {
  font-size: 20px;
  opacity: 0.6;
}

.price__content {
  list-style: none;
  margin-bottom: 30px;
}

.price__content li {
  font-size: 15px;
  margin-bottom: 12px;
  opacity: 0.88;
  display: flex;
  align-items: center;
}

.price__content li::before {
  content: "✔";
  color: #6a4df4;
  margin-right: 10px;
  font-weight: 700;
}

.price__btn {
  display: block;
  text-align: center;
  background: #6a4df4;
  padding: 14px 0;
  border-radius: 14px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.price__btn:hover {
  background: #836bff;
}

/* Основной фон модалки */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 9999;
}

/* Активная модалка */
.modal.active {
  opacity: 1;
  pointer-events: auto;
}

/* Контент */
.modal__content {
  background: rgba(28, 16, 48, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 35px;
  border-radius: 20px;
  width: 380px;
  animation: fadeUp 0.35s ease;
  position: relative;
}

/* Заголовок */
.modal__content h3 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 24px;
  text-align: center;
}

/* Закрыть */
.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  color: #fff;
  font-size: 20px;
  border: none;
  cursor: pointer;
}

/* Инпуты */
.modal__form input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 16px;
}

/* Кнопка */
.modal__form button {
  width: 100%;
  padding: 14px;
  background: #6a4df4;
  border: none;
  color: #fff;
  border-radius: 14px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s ease;
}

.modal__form button:hover {
  background: #836bff;
}

/* Анимация */
@keyframes fadeUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

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

.success-popup {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(50px);
  background: #6a4df4;
  color: #fff;
  padding: 16px 30px;
  font-size: 18px;
  border-radius: 12px;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 99999;
}

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

/* price end  */
