
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 20px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.header__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 4;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo img {
  max-width: 60px;
}

.header__nav {
  display: none;
}

.burger-menu {
  display: block;
  cursor: pointer;
  padding: 10px;
}

.burger-line {
  display: block;
  width: 30px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0s linear 0.5s;
  z-index: 100;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.menu {
  background-color: #000000;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  position: relative;
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out;
}

.menu.open {
  transform: translateY(0);
}

.menu__close {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 25px;
  height: 25px;
}

.close-line {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #fff;
  top: 50%;
  transition: all 0.3s ease;
}

.close-line-1 {
  transform: rotate(45deg);
}

.close-line-2 {
  transform: rotate(-45deg);
}

.menu__links {
  list-style: none;
  padding: 0;
  margin-top: 80px;
}

.menu__links li {
  margin-bottom: 20px;
}

.menu__links a {
  text-decoration: none;
  color: #faf9f9;
  font-size: 20px;
  padding: 15px 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.5s ease, background-color 0.5s ease;
}

.menu__links a:hover {
  background-color: #714aff;
  color: #faf9f9;
}

@media (min-width: 768px) {
  .header {
    background-color: #010101f9;
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

  .header__nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .header__nav ul li {
    margin-right: 20px;
  }

  .header__nav ul li:last-child {
    margin-right: 0;
  }

  .header__nav a {
    text-decoration: none;
    color: #e6dfdf;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 4px;
    transition: color 0.5s ease, background-color 0.5s ease;
  }

  .header__nav a:hover {
    background-color: #5e5e5eb0;
    color: #ffffff;
  }

  .burger-menu {
    display: none;
  }

  .menu-overlay {
    display: none !important;
  }
}

@media (min-width: 1440px) {
  .header__logo img {
    max-width: 60px;
  }

  .header__nav a {
    font-size: 18px;
  }
}





/* Футер */
.footer {
  position: relative;             /* Обязательно для позиционирования оверлея */
  background: #121212;            /* Фон футера (например, темный) */
  color: #ffffff;                 /* Цвет текста */
  padding: 20px 0;
  text-align: center;
}

/* Затемняющий оверлей для футера */
.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);  /* Уровень затемнения (настраивается по вкусу) */
  z-index: 1;
}

/* Контейнер футера, чтобы содержимое было выше оверлея */
.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Блок с дополнительным текстом перед копирайтом */
.footer-pretext {
  font-size: 14px;
  margin-bottom: 10px;
}

/* Нижняя полоса с копирайтом */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  font-size: 14px;
  opacity: 0.7;
} .hero-unique { position: relative; width: 100%; min-height: 100vh; display: flex; align-items: center; background: var(--background-color); overflow: hidden; padding: 80px 20px; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('images/{{image}}'); background-size: cover; background-position: center; filter: brightness(0.65); z-index: 1; }

.container { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }

.hero-content-wrapper { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }

.hero-text { flex: 1 1 60%; color: var(--text-color); padding-right: 20px; }

.hero-title { font-family: var(--font-secondary); font-size: 3.5rem; text-transform: uppercase; margin-bottom: 20px; color: var(--primary-color); animation: slideIn 1s ease; }

.hero-subtitle { font-family: var(--font-primary); font-size: 1.25rem; line-height: 1.6; margin-bottom: 30px; color: var(--text-color); animation: fadeIn 1s ease; }

.hero-cta .btn { padding: 12px 30px; font-size: 1rem; border-radius: 8px; transition: transform 0.3s ease, background 0.3s ease; }

.btn-primary { background: var(--button-bg); color: var(--button-text); border: none; box-shadow: 0 4px 10px var(--button-shadow); }

.btn-primary:hover { background: var(--button-hover-bg); transform: translateY(-3px); }

.hero-decor { flex: 1 1 35%; height: 400px; background: var(--secondary-color); clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%); margin-top: 20px; transition: transform 0.3s ease; }

.hero-decor:hover { transform: scale(1.05); }

@keyframes slideIn { 0% { opacity: 0; transform: translateX(-20px); } 100% { opacity: 1; transform: translateX(0); } }

@keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } }

@media (max-width: 768px) { .hero-content-wrapper { flex-direction: column; text-align: center; } .hero-text { padding-right: 0; margin-bottom: 30px; } .hero-title { font-size: 2.8rem; } .hero-subtitle { font-size: 1rem; } .hero-decor { width: 100%; clip-path: none; height: 200px; margin-top: 20px; } }

@media (max-width: 480px) { .hero-title { font-size: 2.2rem; } .hero-subtitle { font-size: 0.9rem; } .btn { font-size: 0.9rem; padding: 10px 20px; } }


  /* --- Переменные темы из вашего кода --- */


  /* Ограничение ширины контейнера карточек */
  .u-container-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
  }

  /* Обёртка для карточек */
  .u-cards-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
  }

  /* --- Стили карточек --- */

  .u-cards-simple {
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 21.5rem);
    grid-template-areas:
      "first"
      "fourth"
      "fifth"
      "second"
      "sixth"
      "third";
    gap: 2rem;
  }

  .u-card-simple {
    position: relative;
    display: grid;
    overflow: hidden;
    width: 100%;
    border-radius: 0.625rem;
  }

  /* Градиентные оверлеи (оставляем стандартные значения) */
  .u-card-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 100%);
  }

  .u-card-simple::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0) 50.15%, rgba(0, 0, 0, 0.8) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  }

  /* Привязка карточек к областям сетки */
  .u-card-simple--first { grid-area: first; }
  .u-card-simple--second { grid-area: second; }
  .u-card-simple--third { grid-area: third; }
  .u-card-simple--fourth { grid-area: fourth; }
  .u-card-simple--fifth { grid-area: fifth; }
  .u-card-simple--sixth { grid-area: sixth; }

  /* Общие стили для изображения и контента карточки */
  .u-card-simple__background,
  .u-card-simple__content {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .u-card-simple__img {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .u-card-simple__background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
  }

  /* --- Стили для контента карточки --- */
  .u-card-simple__content {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 10;
    max-height: 100%;
    padding: 2rem 1rem 1rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
  }

  /* Заголовок карточки: используем шрифт для заголовков и делаем текст белым для читаемости на затемненном фоне */
  .u-card-simple__title {
    margin: 0;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.25;
    letter-spacing: 0.02em;
    color: /online.htmlFFFFFF;
    overflow-wrap: anywhere;
    position: relative;
  }

  /* Подчёркивание заголовка – используем акцентный цвет */
  .u-card-simple__title::after {
    content: '';
    position: absolute;
    bottom: calc((1.5rem - 1rem) * -1);
    left: -1rem;
    width: calc(100% + 1.5rem);
    height: 0.3125rem;
    background-color: var(--accent-color);
  }

  /* Описание карточки: основной шрифт и белый цвет */
  .u-card-simple__description {
    margin-top: 1rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.5;
    color: /online.htmlFFFFFF;
    overflow-wrap: anywhere;
  }

  /* --- Стили для кнопки --- */
  .u-card-simple__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
    padding: 0.5rem 2rem;
    background-color: var(--button-bg);
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.25;
    letter-spacing: 0.02em;
    border: 1px solid var(--button-border);
    border-radius: 0.25rem;
    text-decoration: none;
    color: var(--button-text);
    cursor: pointer;
    box-shadow: 0 4px 8px var(--button-shadow);
    transition: background-color 300ms ease;
  }

  .u-card-simple__button:hover,
  .u-card-simple__button:focus {
    background-color: var(--button-hover-bg);
  }

  .u-card-simple__button:active {
    background-color: var(--button-hover-bg);
  }

  .u-card-simple__button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: -5px;
  }

  /* --- Адаптивные стили --- */
  @media screen and (min-width: 428px) {
    .u-cards-simple {
      grid-template-rows: repeat(4, 11.063rem);
      grid-template-areas:
        "first first"
        "fourth fifth"
        "second third"
        "second sixth";
    }
    .u-card-simple__content { padding: 1.5rem 1rem 1rem; }
    .u-card-simple__title { font-size: 1.25rem; }
    .u-card-simple__title::after {
      bottom: calc((1.25rem - 0.5rem) * -1);
      left: -1.25rem;
      width: calc(100% + 1.25rem);
    }
    .u-card-simple__description { margin-top: 0.875rem; font-size: 0.875rem; }
    .u-card-simple__button {
      margin-top: 0.375rem;
      padding: 0.25em 1em;
      font-size: 1rem;
    }
  }

  @media screen and (min-width: 768px) {
    .u-cards-simple { grid-template-rows: repeat(4, 21.5rem); }
    .u-card-simple__content { padding: 1.5rem 1rem 1rem; }
    .u-card-simple__title { font-size: 1.5rem; }
    .u-card-simple__description {
      margin-top: 1.25rem;
      font-size: 1rem;
      line-height: 1.5;
    }
    .u-card-simple__button { margin-top: 0.9375rem; padding: 0.5rem 1rem; }
  }

  @media screen and (min-width: 1024px) {
    .u-cards-simple {
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(2, 19rem);
      grid-template-areas:
        "first first second third"
        "fourth fifth second sixth";
    }
    .u-card-simple__button {
      width: fit-content;
      margin-top: 0.9375rem;
      padding: 0.375rem 1.25rem;
    }
  }


.single-game-unique {
  padding: 80px 20px;
  background: var(--background-color);
  color: var(--text-color);
}

.single-game-unique .container {
  max-width: 1200px;
  margin: 0 auto;
}

.game-unique-wrapper {
  display: flex;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.game-unique-image {
  flex: 1;
  min-width: 300px;
  height: 400px;
  background-size: cover;
  background-position: center;
}

.game-unique-content {
  flex: 1;
  padding: 40px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}

.game-unique-title {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-transform: uppercase;
}

.game-unique-description {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.game-unique-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--button-bg);
  color: var(--button-text);
  border: none;
  border-radius: 8px;
  text-transform: uppercase;
  font-family: var(--font-primary);
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.game-unique-button:hover {
  background: var(--button-hover-bg);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .game-unique-wrapper {
    flex-direction: column;
  }
  .game-unique-image {
    height: 300px;
  }
}


/* Cookie Consent Modal Styles */
.cookie-consent-modal {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--secondary-color);
  color: var(--text-color);
  border: 2px solid var(--accent-color);
  border-radius: 10px;
  padding: 20px;
  z-index: 1100;
  max-width: 400px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  display: none; /* Отображается через JS */
}

.cookie-consent-content {
  position: relative;
  font-family: var(--font-primary);
}

.cookie-consent-close {
  position: absolute;
  top: 5px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--text-color);
  cursor: pointer;
}

.cookie-consent-modal h3 {
  margin-top: 0;
  font-family: var(--font-secondary);
  color: var(--primary-color);
}

.cookie-consent-modal p {
  font-size: 16px;
  margin: 10px 0;
}

.cookie-consent-actions {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-consent-actions .btn {
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s ease;
  background: var(--button-bg);
  color: var(--button-text);
  box-shadow: 0 4px 8px var(--button-shadow);
}

.cookie-consent-actions .btn:hover {
  background: var(--button-hover-bg);
  transform: translateY(-2px);
}

.cookie-consent-actions .btn.secondary {
  background: var(--button-secondary-bg);
  color: var(--button-secondary-text);
}




.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  

}

.about-text {
    flex: 1;
    max-width: 550px;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
}

.feature-icon {
    font-size: 20px;
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    transform: scale(1.08);
}

.about-image {
    flex: 1;
    max-width: 550px;
}

.image-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 15px 40px rgba(255, 255, 255, 0.1);
}

.image-frame img {
    width: 70%;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.image-frame img:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    .about-text {
        text-align: center;
    }
    .about-image {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 36px;
    }
    .about-description {
        font-size: 16px;
    }
    .btn {
        font-size: 16px;
        padding: 12px 28px;
    }
}


.capabilities-section {
  padding: 120px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.capabilities-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}

.capabilities-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #00ffcc;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(0, 255, 204, 0.8), 0 0 40px rgba(0, 123, 255, 0.6);
  transition: color 0.3s ease;
}

.capabilities-title:hover {
  color: #007bff;
}

.capabilities-description {
  font-size: 1.2rem;
  color: #d9d9d9;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.capabilities-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
}

.capability-module {
  perspective: 1000px;
}

.capability-element {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 10px 30px rgba(0, 255, 204, 0.2);
  transition: transform 0.5s ease-in-out, box-shadow 0.3s ease;
  padding: 20px;
}

.capability-element:hover {
  transform: rotateY(10deg) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 255, 204, 0.4), 0 0 60px rgba(0, 123, 255, 0.6);
}

.capability-visual {
  position: relative;
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
}

.capability-image {
  width: 100%;
  height: auto;
  display: block;
  border: 3px solid #00ffcc;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-image:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.7);
}

.capability-details {
  text-align: left;
}

.capability-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.capability-info {
  font-size: 1rem;
  color: #e6dfdf;
  line-height: 1.6;
  margin-bottom: 20px;
}

.capability-aura {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 255, 204, 0.1), rgba(0, 123, 255, 0.1));
  border-radius: 20px;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.capability-element:hover .capability-aura {
  opacity: 0.8;
}

/* Адаптивність для мобільних пристроїв */
@media (max-width: 1024px) {
  .capabilities-section {
    padding: 100px 0;
  }

  .capabilities-title {
    font-size: 3rem;
  }

  .capabilities-description {
    font-size: 1.1rem;
  }

  .capability-name {
    font-size: 1.5rem;
  }

  .capability-info {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .capabilities-section {
    padding: 80px 0;
  }

  .capabilities-title {
    font-size: 2.5rem;
  }

  .capabilities-description {
    font-size: 1rem;
  }

  .capability-name {
    font-size: 1.3rem;
  }

  .capability-info {
    font-size: 0.8rem;
  }

  .capability-element {
    padding: 15px;
  }

  .capability-image {
    border-width: 2px;
  }
}

@media (max-width: 480px) {
  .capabilities-title {
    font-size: 2rem;
  }

  .capabilities-description {
    font-size: 0.9rem;
  }

  .capability-name {
    font-size: 1.1rem;
  }

  .capability-info {
    font-size: 0.7rem;
  }

  .capability-element {
    padding: 10px;
  }
}


.testimonials-section {
  padding: 120px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}

.testimonials-heading {
  font-size: 3.5rem;
  font-weight: 900;
  color: #00ffcc;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(0, 255, 204, 0.8), 0 0 40px rgba(0, 123, 255, 0.6);
  transition: color 0.3s ease;
}

.testimonials-heading:hover {
  color: #007bff;
}

.testimonials-subtext {
  font-size: 1.2rem;
  color: #d9d9d9;
  margin-bottom: 50px;
}

.testimonials-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background: rgba(0, 0, 0, 0.9);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 255, 204, 0.2);
  transition: transform 0.5s ease-in-out, box-shadow 0.3s ease;
  position: relative;
  perspective: 1000px;
}

.testimonial-card:hover {
  transform: rotateY(5deg) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 255, 204, 0.4);
}

.testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00ffcc;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.testimonial-avatar:hover {
  transform: scale(1.1);
}

.testimonial-content {
  text-align: left;
}

.testimonial-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.testimonial-quote {
  font-size: 1rem;
  color: #e6dfdf;
  line-height: 1.6;
}


@media (max-width: 1024px) {
  .testimonials-heading {
    font-size: 3rem;
  }

  .testimonials-subtext {
    font-size: 1.1rem;
  }

  .testimonial-name {
    font-size: 1.3rem;
  }

  .testimonial-quote {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 0;
  }

  .testimonials-heading {
    font-size: 2.5rem;
  }

  .testimonials-subtext {
    font-size: 1rem;
  }

  .testimonial-name {
    font-size: 1.1rem;
  }

  .testimonial-quote {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .testimonials-heading {
    font-size: 2rem;
  }

  .testimonials-subtext {
    font-size: 0.9rem;
  }

  .testimonial-avatar {
    width: 80px;
    height: 80px;
  }

  .testimonial-name {
    font-size: 1rem;
  }

  .testimonial-quote {
    font-size: 0.7rem;
  }
}


.stats-section {
    padding: 100px 0;
  }
  
  .stats-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }
  
  .stats-image {
    flex: 1;
    max-width: 50%;
  }
  
  .stats-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(255, 255, 255, 0.1);
  }
  
  .stats-content {
    flex: 1;
  }
  
  .stats-header {
    text-align: left;
    margin-bottom: 30px;
  }
  
  .stats-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .stats-description {
    font-size: 18px;
    line-height: 1.6;
  }
  
  .stats-grid {
    display: flex;
    gap: 30px;
  }
  
  .stats-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out;
  }
  
  .stats-card:hover {
    transform: scale(1.05);
  }
  
  .stats-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .stats-label {
    font-size: 16px;
  }
  
  @media (max-width: 1024px) {
    .stats-wrapper {
      flex-direction: column;
      text-align: center;
    }
    
    .stats-image {
      max-width: 80%;
    }
  
    .stats-header {
      text-align: center;
    }
  }
  
  @media (max-width: 768px) {
    .stats-title {
      font-size: 36px;
    }
  
    .stats-description {
      font-size: 16px;
    }
  
    .stats-grid {
      flex-direction: column;
    }
  }


.parallax-variant-3 {
  position: relative;
  overflow: hidden;
  height: 40rem;
  background-color: var(--background-color);
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 1;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.parallax-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  padding: 1rem;
  color: var(--primary-color);
}

.parallax-heading {
  font-family: var(--font-secondary);
  font-size: 3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.parallax-subtitle {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .parallax-heading {
    font-size: 2.5rem;
  }
  .parallax-subtitle {
    font-size: 1rem;
  }
}


.faq-section {
  background: var(--background-color);
  padding: 60px var(--container-padding);
  color: var(--text-color);
}

.faq-section-title {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: var(--primary-color);
}

.faq-items {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--secondary-color);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 15px 20px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}

.faq-answer.active {
  max-height: 1000px;
  padding: 15px 20px;
}

.faq-answer p {
  margin: 0;
}

@media (max-width: 768px) {
  .faq-section-title {
    font-size: 2rem;
  }
  .faq-question {
    font-size: 0.95rem;
  }
  .faq-answer {
    font-size: 0.9rem;
  }
}


.engagement-section {
  padding: 120px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.engagement-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.engagement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  perspective: 1000px;
}

.engagement-info {
  max-width: 600px;
}

.engagement-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #00ffcc;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(0, 255, 204, 0.8), 0 0 40px rgba(0, 123, 255, 0.6);
  transition: color 0.3s ease;
}

.engagement-title:hover {
  color: #007bff;
}

.engagement-description {
  font-size: 1.2rem;
  color: #d9d9d9;
  line-height: 1.6;
  margin-bottom: 30px;
}

.engagement-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.engagement-entry {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 15px;
  border-left: 3px solid #00ffcc;
  transition: all 0.3s ease;
}

.engagement-entry:hover {
  border-left: 3px solid #007bff;
  transform: translateX(5px);
  background: rgba(0, 0, 0, 0.9);
}

.engagement-icon {
  font-size: 1.5rem;
  color: #00ffcc;
}

.engagement-text {
  color: #e6dfdf;
  transition: color 0.3s ease;
}

.engagement-text:hover {
  color: #007bff;
  text-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.engagement-form {
  max-width: 600px;
  background: rgba(0, 0, 0, 0.8);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 255, 204, 0.2);
  transition: transform 0.5s ease;
}

.engagement-form:hover {
  transform: translateZ(10px) scale(1.02);
}

.form-input {
  margin-bottom: 25px;
}

.form-input label {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #e6dfdf;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input input,
.form-input textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: 2px solid #00ffcc;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input input:focus,
.form-input textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.5);
  outline: none;
}

.form-input textarea {
  resize: vertical;
  min-height: 100px;
}

.engagement-button {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 25px;
  background: linear-gradient(45deg, #00ffcc, #007bff);
  color: #fff;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.6), 0 0 20px rgba(0, 123, 255, 0.4);
}

.engagement-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
  z-index: 1;
}

.engagement-button:hover::before {
  width: 300px;
  height: 300px;
}

.engagement-button:hover {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.8), 0 0 30px rgba(0, 123, 255, 0.6);
  background: linear-gradient(45deg, #007bff, #00ffcc);
}

.success-alert {
  display: none;
  margin-top: 15px;
  font-size: 1rem;
  color: #4CAF50;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Адаптивність для мобільних пристроїв */
@media (max-width: 1024px) {
  .engagement-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .engagement-info {
    max-width: 100%;
    text-align: center;
  }

  .engagement-form {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .engagement-section {
    padding: 80px 0;
  }

  .engagement-title {
    font-size: 2.5rem;
  }

  .engagement-description {
    font-size: 1rem;
  }

  .engagement-entry {
    font-size: 1rem;
    padding: 12px;
  }

  .engagement-icon {
    font-size: 1.3rem;
  }

  .form-input label {
    font-size: 0.9rem;
  }

  .form-input input,
  .form-input textarea {
    font-size: 0.9rem;
    padding: 10px;
  }

  .engagement-button {
    font-size: 1rem;
    padding: 10px 25px;
  }

  .success-alert {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .engagement-title {
    font-size: 2rem;
  }

  .engagement-description {
    font-size: 0.9rem;
  }

  .engagement-entry {
    font-size: 0.9rem;
    padding: 10px;
  }

  .engagement-icon {
    font-size: 1.1rem;
  }

  .form-input label {
    font-size: 0.8rem;
  }

  .form-input input,
  .form-input textarea {
    font-size: 0.8rem;
    padding: 8px;
  }

  .engagement-button {
    font-size: 0.9rem;
    padding: 8px 20px;
  }

  .success-alert {
    font-size: 0.8rem;
  }
}

