 .site-header-alt { background: var(--secondary-color); padding: 15px 0; box-shadow: 0 4px 8px var(--button-shadow); }
.header-wrapper-alt { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; }

.logo-alt img { height: 50px; width: auto; }

.navigation-alt .nav-list-alt { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }

.navigation-alt .nav-list-alt .nav-item-alt a { text-decoration: none; font-size: 1rem; font-weight: 600; color: var(--text-color); padding: 8px 12px; transition: color 0.3s ease, transform 0.2s ease; }

.navigation-alt .nav-list-alt .nav-item-alt a:hover { color: var(--primary-color); transform: translateY(-2px); }

.menu-toggle-alt { display: none; flex-direction: column; gap: 5px; cursor: pointer; }

.menu-toggle-alt span { width: 30px; height: 3px; background: var(--text-color); transition: 0.3s ease; }

.menu-toggle-alt.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }

.menu-toggle-alt.active span:nth-child(2) { opacity: 0; }

.menu-toggle-alt.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) { .navigation-alt { display: none; } .menu-toggle-alt { display: flex; } }




/* Стили для футера */
.site-footer {
  position: relative;
  background: #1a1a1a;       /* Темный фон */
  color: #f0f0f0;            /* Светлый текст */
  padding: 25px 0;
  text-align: center;
}

/* Затемняющий оверлей */
.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Немного сильнее затемнение */
  z-index: 1;
}

/* Контейнер для содержимого футера */
.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Информационный блок с текстом */
.footer-disclaimer {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Нижняя строка с копирайтом */
.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  font-size: 13px;
  opacity: 0.85;
}
/* === Глобальные переменные для стилизации Hero === */
:root {
    --hero-bg: url('images/{{image}}'); /* Фоновое изображение */
    --hero-overlay: rgba(0, 0, 0, 0.5); /* Затемнение фона */
    --hero-text-color: /online.htmlffffff; /* Основной цвет текста */
    --hero-title-color: var(--primary-color); /* Цвет заголовка */
    --hero-subtitle-color: var(--secondary-color); /* Цвет подзаголовка */
    --hero-shadow: rgba(0, 0, 0, 0.3); /* Тень */
}

/* === Hero Section === */
.hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: var(--hero-bg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Затемнение поверх фонового изображения */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--hero-overlay);
    z-index: 1;
}

/* Контейнер Hero */
.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

/* === Hero Layout === */
.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* === Hero Content === */
.hero-content {
    flex: 1 1 50%;
    max-width: 500px;
    text-align: left;
    color: var(--hero-text-color);
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--hero-title-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeInDown 1s ease-in-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--hero-subtitle-color);
    margin-bottom: 30px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-in-out;
}

/* === Hero Buttons === */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* === Кнопки === */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--button-bg);
    color: var(--button-text);
    border: none;
    box-shadow: 0 4px 10px var(--shadow-color);
}

.btn-primary:hover {
    background: var(--button-hover-bg);
    transform: scale(1.05);
}

/* Outline Button */
.btn-secondary {
    background: transparent;
    border: 2px solid var(--button-bg);
    color: var(--button-bg);
}

.btn-secondary:hover {
    background: var(--button-bg);
    color: var(--button-text);
    transform: scale(1.05);
}

/* === Hero Image === */
.hero-image {
    flex: 1 1 50%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px var(--hero-shadow);
    animation: fadeIn 1.5s ease-in-out;
}

/* === Анимации === */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* === Адаптация под мобильные устройства === */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 50px 15px;
    }

    .hero-layout {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .hero-image {
        max-width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        font-size: 0.9rem;
    }
}


.single-game-overlay-variant {
  position: relative;
  height: 450px;
  background: var(--background-color);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
  transition: transform 0.3s ease;
}

.single-game-overlay-variant:hover .game-bg {
  transform: scale(1.05);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.game-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  color: var(--text-color);
}

.game-title {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.game-description {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.game-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;
  transition: background 0.3s ease, transform 0.2s ease;
}

.game-button:hover {
  background: var(--button-hover-bg);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .single-game-overlay-variant {
    height: 350px;
  }
  .game-title {
    font-size: 2.2rem;
  }
  .game-description {
    font-size: 1rem;
  }
  .game-button {
    font-size: 0.9rem;
    padding: 10px 25px;
  }
}



/* === Глобальные переменные FAQ === */
:root {
    --faq-bg: var(--background-color);
    --faq-text-color: var(--text-color);
    --faq-title-color: var(--primary-color);
    --faq-card-bg: var(--card-bg);
    --faq-border-color: var(--shadow-color);
    --faq-hover-bg: var(--button-hover-bg);
    --faq-toggle-color: var(--primary-color);
}

/* === Основные стили секции FAQ === */
.faq-section {
    background: var(--faq-bg);
    color: var(--faq-text-color);
    padding: 80px 20px;
    text-align: center;
}

/* Контейнер */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Заголовок */
.faq-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--faq-title-color);
    margin-bottom: 10px;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: var(--faq-text-color);
    margin-bottom: 40px;
}

/* === Грид для карточек === */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

/* === Карточки FAQ === */
.faq-item {
    background: var(--faq-card-bg);
    border-radius: 10px;
    border: 2px solid var(--faq-border-color);
    box-shadow: 0 4px 8px var(--faq-border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

/* === Заголовки карточек === */
.faq-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    padding: 15px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--faq-text-color);
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-button {
    color: var(--faq-hover-bg);
}

/* === Иконка открытия === */
.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--faq-toggle-color);
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

/* === Ответы (анимация раскрытия) === */
.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    max-height: 150px;
    opacity: 1;
    padding-bottom: 15px;
}

/* === Адаптивность === */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 15px;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}


/* Cookie Consent Modal Variant 2 Styles */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);  /* затемнение фона */
  display: none;  /* показывается через JS */
  align-items: center;
  justify-content: center;
  z-index: 1200;
}

.cookie-modal {
  background: var(--background-color);
  color: var(--text-color);
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  font-family: var(--font-primary);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--text-color);
  cursor: pointer;
}

.cookie-modal h2 {
  margin-top: 0;
  font-family: var(--font-secondary);
  color: var(--primary-color);
}

.cookie-modal p {
  font-size: 16px;
  margin: 20px 0;
}

.cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.cookie-modal-actions .btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  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-modal-actions .btn:hover {
  background: var(--button-hover-bg);
}

.cookie-modal-actions .btn.secondary {
  background: var(--button-secondary-bg);
  color: var(--button-secondary-text);
}


  /* --- Переменные темы из вашего кода --- */


  /* Ограничение ширины контейнера карточек */
  .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;
    }
  }


/* === Глобальные переменные для Features === */
:root {
    --features-bg: var(--background-color); /* Фон секции */
    --features-text-color: var(--text-color); /* Цвет текста */
    --features-title-color: var(--primary-color); /* Цвет заголовка */
    --features-subtitle-color: var(--secondary-color); /* Цвет подзаголовка */
    --features-card-bg: var(--card-bg); /* Фон карточек */
    --features-card-shadow: var(--shadow-color); /* Тень карточек */
    --features-icon-bg: var(--primary-color); /* Фон иконки */
}

/* === Общие стили для секции Features === */
.features {
    background: var(--features-bg);
    color: var(--features-text-color);
    padding: 80px 20px;
    text-align: center;
}

/* Контейнер */
.features .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Заголовки */
.features .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--features-title-color);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.features .section-subtitle {
    font-size: 1.2rem;
    color: var(--features-subtitle-color);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* === Grid Сетка === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
}

/* === Карточки (Feature Cards) === */
.feature-card {
    background: var(--features-card-bg);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px var(--features-card-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 15px var(--features-card-shadow);
}

/* === Иконки в карточках === */
.feature-card .icon {
    width: 90px;
    height: 90px;
    background: var(--features-icon-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden; /* Обрезаем края */
    padding: 0; /* Убираем отступы */
}

.feature-card:hover .icon {
    transform: scale(1.1);
}

.feature-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Заполняет весь круг */
    border-radius: 50%; /* Делаем изображение круглым */
}

/* === Текст в карточке === */
.feature-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.5;
}

/* === Адаптивность === */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features {
        padding: 60px 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card .icon {
        width: 70px;
        height: 70px;
    }

    .feature-card .icon img {
        width: 50px;
        height: 50px;
    }

    .features .section-title {
        font-size: 2rem;
    }

    .features .section-subtitle {
        font-size: 1rem;
    }
}


.stats-bg-overlay {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  text-align: center;
  color: var(--text-color);
}

.stats-bg-overlay .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.stats-bg-overlay .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.stats-content {
  margin-bottom: 40px;
}

.stats-title {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.stats-description {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  color: var(--text-color);
  opacity: 0.9;
}

.stats-counters {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.counter {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.counter:hover {
  transform: scale(1.05);
}

.counter-number {
  font-family: var(--font-secondary);
  font-size: 2rem;
  color: var(--accent-color);
  margin: 0;
}

.counter-label {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--text-color);
  text-transform: uppercase;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .stats-counters {
    flex-direction: column;
    gap: 20px;
  }
  .counter {
    width: 120px;
    height: 120px;
  }
  .counter-number {
    font-size: 1.8rem;
  }
  .counter-label {
    font-size: 0.9rem;
  }
}



/* Основной контейнер секции параллакса */
.u-parallax-simple {
  position: relative;
  overflow: hidden;
  height: 25rem;
  background-color: var(--background-color);
}

/* Фоновый слой с изображением */
.u-parallax-simple__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* Оверлей для затемнения фонового изображения */
.u-parallax-simple__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Используем затемнение, аналогичное hero-overlay; при необходимости замените на переменную, например, var(--hero-overlay) */
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Контейнер с контентом (заголовок, описание) */
.u-parallax-simple__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

/* Заголовок и описание — текст оформляется с использованием глобальных переменных темы */
.u-parallax-simple__caption,
.u-parallax-simple__desc {
  padding: 1rem 0;
  text-align: center;
  color: var(--primary-color);
  overflow-wrap: anywhere;
}

.u-parallax-simple__caption {
  margin: 0;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
  font-size: clamp(1.75rem, 2.5vw + 1.25rem, 2.25rem);
}

.u-parallax-simple__desc {
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* Дополнительная адаптивность для заголовков */
@media screen and (max-width: 48rem) {
  .u-parallax-simple__caption {
    font-size: 1.75rem;
  }
}


.about-split {
  padding: 80px 20px;
  background: var(--background-color);
  color: var(--text-color);
  position: relative;
}

.about-split .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.about-split-wrapper {
  display: flex;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image-side {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.about-image-side img {
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
  /* Diagonal clip-path for a unique effect */
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.about-image-side:hover img {
  transform: scale(1.05);
}

.about-text-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-title {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-transform: uppercase;
}

.about-description {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.about-list li {
  font-family: var(--font-primary);
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.btn.about-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--button-bg);
  color: var(--button-text);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-primary);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn.about-btn:hover {
  background: var(--button-hover-bg);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .about-split-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .about-image-side, .about-text-side {
    flex: 0 0 100%;
  }
  .about-title {
    font-size: 2.2rem;
  }
  .about-description {
    font-size: 1rem;
  }
}


 


/* Секция горизонтальной контактной формы */
    .contact-form-horizontal {
      background: var(--background-color);
      padding: 40px 20px;
      margin: 40px auto;
      max-width: 800px;
      border-radius: 12px;
      border: 2px solid var(--primary-color);
      position: relative;
      overflow: hidden;
    }

    /* Оверлей для легкого затемнения фона секции */
    .contact-form-horizontal::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay-bg);
      z-index: 0;
    }

    /* Контейнер внутри секции */
    .container {
      position: relative;
      z-index: 1;
      padding: 0 20px;
      box-sizing: border-box;
    }

    /* Заголовок формы */
    .contact-form-horizontal__title {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    /* Форма располагается вертикально, но ряды содержат поля, выстроенные горизонтально */
    .contact-form-horizontal form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    /* Ряды формы */
    .contact-form-horizontal__row {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    /* Поля формы (Name, Email) */
    .contact-form-horizontal__field {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    /* Поле для сообщения занимает больше места */
    .contact-form-horizontal__field--message {
      flex: 2;
    }

    /* Контейнер для кнопки (выравнивание по нижней границе) */
    .contact-form-horizontal__field--btn {
      display: flex;
      align-items: flex-end;
    }

    /* Метки полей */
    .contact-form-horizontal label {
      font-family: 'Montserrat', sans-serif;
      font-size: 1rem;
      color: var(--text-color);
      margin-bottom: 5px;
    }

    /* Поля ввода и textarea */
    .contact-form-horizontal input,
    .contact-form-horizontal textarea {
      padding: 10px;
      font-family: 'Montserrat', sans-serif;
      font-size: 1rem;
      border: 1px solid var(--input-border);
      border-radius: 8px;
      outline: none;
      transition: border 0.3s ease;
      background: var(--input-bg);
      color: var(--text-color);
    }

    /* Фокус на полях ввода */
    .contact-form-horizontal input:focus,
    .contact-form-horizontal textarea:focus {
      border-color: var(--primary-color);
    }

    /* Кнопка отправки */
    .submit-btn {
      width: 100%;
      padding: 12px;
      background: var(--button-bg);
      color: var(--button-text);
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1rem;
      font-weight: bold;
      text-transform: uppercase;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.2s ease;
      box-shadow: var(--button-shadow);
    }

    /* Эффект при наведении на кнопку */
    .submit-btn:hover {
      background: var(--button-hover-bg);
      transform: scale(1.05);
    }

    /* Сообщение об успешной отправке */
    #success-message {
      display: none;
      text-align: center;
      font-size: 1.2rem;
      font-weight: bold;
      color: var(--secondary-color);
      margin-top: 20px;
      opacity: 0;
      animation: fadeIn 0.5s ease-in-out forwards;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Адаптивность: на узких экранах ряды располагаются вертикально */
    @media (max-width: 600px) {
      .contact-form-horizontal__row {
        flex-direction: column;
      }
      .contact-form-horizontal__field--btn {
        width: 100%;
      }
    }

