/* --- 1. Setup & Variables --- */
:root {
  --bg-dark: #030303;
  --accent: #00E676; /* Neon Green */
  --accent-glow: rgba(0, 230, 118, 0.5);
  --card-bg: rgba(20, 20, 20, 0.6);
  --text-main: #ffffff;
  --text-gray: #9ca3af;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
}

/* --- 2. Background Canvas --- */
#bgCanvas {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
}
.bg-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, transparent 0%, #030303 90%);
  z-index: -1; pointer-events: none;
}

/* --- 3. Typography & UI --- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; }
.section-title { font-size: 3.5rem; margin-bottom: 1.5rem; text-align: center; } /* Default Center for Headers */
.section-h3 { font-size: 1.5rem; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.text-body { color: var(--text-gray); font-size: 1.1rem; line-height: 1.6; }
.text-large { font-size: 1.4rem; color: #ddd; text-align: center; max-width: 800px; margin: 0 auto 3rem auto; }
.center-text { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; padding: 14px 32px; border-radius: 50px;
  font-weight: 600; text-decoration: none; transition: 0.3s; border: none; cursor: pointer;
  font-size: 1rem;
}
.btn--primary { background: var(--accent); color: #000; }
.btn--primary:hover { transform: scale(1.05); box-shadow: 0 0 25px var(--accent-glow); background: #fff; }
.btn--glow { box-shadow: 0 0 15px var(--accent-glow); }
.btn--outline { border: 1px solid rgba(255,255,255,0.2); color: #fff;gap:7px; }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--telegram { background: #229ED9; color: #fff; width: 100%; justify-content: center; }
.btn--telegram:hover { background: #1f8ec2; box-shadow: 0 0 15px rgba(34, 158, 217, 0.5); }
.btn--small { padding: 8px 20px; font-size: 0.9rem; }

/* --- 4. Header --- */
.header {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(3,3,3,0.8); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05); padding: 15px 0;
}
.header__container { display: flex; justify-content: space-between; align-items: center; }
/* .header__logo { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; } */

/* --- Логотип в Хедере (SVG/IMG) --- */

.header__logo {
  display: flex;       /* Чтобы картинка центрировалась по вертикали */
  align-items: center;
  height: 100%;        /* Занимаем высоту контейнера */
  text-decoration: none; /* Если вдруг обернешь в ссылку */
}

.header__logo img {
  display: block;
  height: 25px; /* Оптимальная высота для хедера (поменяй на 40px или 30px, если нужно) */
  width: auto;  /* Сохраняем пропорции */
  object-fit: contain; /* Чтобы лого не сплющило */

  /* Если логотип черный, а фон темный — раскомментируй строку ниже, чтобы сделать его белым: */
  /* filter: brightness(0) invert(1); */
}
@media (max-width: 768px) {
  .header__logo img{
    max-width: 275px;
  }
}
@media (max-width: 480px) {
  .header__logo img{
    max-width: 250px;
  }
	.footer .nav-col{
		display:none;
	}
}
@media (max-width: 420px) {
  .header__logo img{
    max-width: 200px;
  }
}
.text-accent { color: var(--accent); }
.header__nav a { margin: 0 15px; color: var(--text-gray); text-decoration: none; transition: 0.3s; }
.header__nav a:hover { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }

/* --- 5. Hero (Centered & Animated) --- */
.hero {
  height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative;
}
.hero__badge {
  display: inline-block; padding: 6px 16px; border-radius: 20px;
  border: 1px solid var(--accent); color: var(--accent); font-size: 0.9rem; margin-bottom: 20px;
}
.hero__title { font-size: 5rem; margin-bottom: 20px; letter-spacing: -2px; }
.hero__subtitle { font-size: 1.3rem; color: var(--text-gray); margin-bottom: 40px; }

/* Glitch Effect on Text */
.glitch-text { position: relative; color: var(--text-main); }
.glitch-text::before, .glitch-text::after {
  content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--bg-dark);
}
.glitch-text::before { left: 2px; text-shadow: -1px 0 red; clip: rect(24px, 550px, 90px, 0); animation: glitch-anim-2 3s infinite linear alternate-reverse; }
.glitch-text::after { left: -2px; text-shadow: -1px 0 blue; clip: rect(85px, 550px, 140px, 0); animation: glitch-anim 2.5s infinite linear alternate-reverse; }

@keyframes glitch-anim { 0% { clip: rect(10px, 9999px, 30px, 0); } 100% { clip: rect(80px, 9999px, 100px, 0); } }
@keyframes glitch-anim-2 { 0% { clip: rect(60px, 9999px, 10px, 0); } 100% { clip: rect(20px, 9999px, 130px, 0); } }

/* --- 6. Sections & 3D Cards --- */
.section { padding: 100px 0;overflow: hidden; }

.grid-2-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* 3D Visual Card in About */
.card-3d {
  height: 300px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  transform-style: preserve-3d; transition: transform 0.5s;
}
.card-3d:hover { transform: rotateY(10deg) rotateX(5deg); border-color: var(--accent); }
.card-3d__content { text-align: center; transform: translateZ(30px); }
.big-number { font-size: 4rem; font-weight: 700; color: var(--accent); display: block; text-shadow: 0 0 20px var(--accent-glow); }

/* Tilt Cards (What We Do / Offer) */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }

.tilt-card {
  background: var(--card-bg); padding: 35px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05); transition: 0.2s;
}
.tilt-card:hover {
  background: rgba(30,30,30,0.8); border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.tilt-icon { font-size: 2rem; margin-bottom: 15px; }
.card-title { font-size: 1.4rem; margin-bottom: 10px; color: #fff; }

/* --- 7. Slider (Images) --- */
.slider-container { max-width: 900px; margin: 40px auto; position: relative; }
.slider-window { overflow: hidden; border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); }
.slider-track { display: flex; transition: transform 0.5s ease-in-out; }
.slide { min-width: 100%; }
.img-placeholder {
  height: 450px; background: #111; display: flex; align-items: center; justify-content: center;
  color: #444; font-size: 1.5rem; font-weight: 700;
  /* Если картинка реальная: */
  /* background-image: url('...'); background-size: cover; */
}
.img-placeholder img { width: 100%; height: 100%; object-fit: cover; }

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: #000; color: #fff; border: 1px solid #333; width: 50px; height: 50px;
  border-radius: 50%; cursor: pointer; transition: 0.3s; z-index: 5; font-size: 1.2rem;
}
.slider-arrow:hover { border-color: var(--accent); color: var(--accent); }
.prev { left: -70px; }
.next { right: -70px; }

/* --- 8. Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 800px; margin: 40px auto 0; }
.contact-card { background: var(--card-bg); padding: 30px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.05); text-align: center; }
.contact-title { margin-bottom: 15px; }
.simple-form input { width: 100%; padding: 12px; background: #000; border: 1px solid #333; color: #fff; border-radius: 6px; margin-bottom: 10px; }
.simple-form button { width: 100%; }
.contact-form input, .contact-form textarea {
  width: 100%; background: #050505; border: 1px solid var(--border);
  padding: 16px; border-radius: 8px; color: #fff; font-family: var(--font-body); font-size: 1rem;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }
.form-title { margin-bottom: 20px; font-size: 1.5rem; }
.form-group { margin-bottom: 16px; }

/* --- 9. Footer --- */
.footer { border-top: 1px solid #222; padding: 40px 0; color: #666; font-size: 0.9rem; }
.footer__row { display: flex; justify-content: space-between; align-items: center; }
.footer__logo { color: #fff; font-weight: 700; }
.age-limit { background: #222; color: #888; padding: 3px 8px; border-radius: 4px; margin-right: 10px; }

/* --- Animation Classes --- */
.anim-up { opacity: 0; transform: translateY(40px); transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.in-view { opacity: 1; transform: translateY(0); }

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero__title { font-size: 3rem; }
  .grid-2-col, .offer-grid, .contact-grid { grid-template-columns: 1fr; }
  .header__nav { display: none; }
  .slider-arrow { display: none; } /* На моб. без стрелок */
  .section { padding: 60px 0;overflow: hidden; }
}

/* --- New Offer Section Styles --- */

.section-offer-pro {
  padding: 100px 0;
  overflow: hidden;
}

.offer-pro-wrapper {
  display: flex;
  gap: 20px;
  height: 300px; /* Высота блока */
  width: 100%;
  margin-top: 40px;
}

.offer-item {
  position: relative;
  flex: 1; /* Исходно все равны */
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), background 0.4s;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Фоновое свечение */
.offer-item__bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at bottom right, rgba(0, 230, 118, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 0;
}

/* Состояние Hover и Active */
.offer-item:hover,
.offer-item.active {
  flex: 3; /* Расширяем активную карточку */
  border-color: #00E676; /* Neon Green */
  background: rgba(10, 10, 10, 0.9);
  box-shadow: 0 10px 40px rgba(0, 230, 118, 0.1);
}

.offer-item:hover .offer-item__bg,
.offer-item.active .offer-item__bg {
  opacity: 1;
}

/* Контент внутри */
.offer-item__content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Заголовки и Номера */
.offer-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  white-space: nowrap; /* Чтобы текст не прыгал при сжатии */
}

.offer-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  color: #444;
  transition: 0.3s;
}

.offer-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  transition: 0.3s;
}

/* Текст описания (Скрываем на неактивных, показываем на активных) */
.offer-body {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s 0.2s, transform 0.4s 0.2s; /* Задержка появления */
}

.offer-item:hover .offer-body,
.offer-item.active .offer-body {
  opacity: 1;
  transform: translateY(0);
}

.offer-desc {
  font-size: 1rem;
  color: #aaa;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 30px;
}

/* Теги */
.offer-tags {
  display: flex;
  gap: 10px;
}

.offer-tags span {
  background: rgba(0, 230, 118, 0.1);
  color: #00E676;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(0, 230, 118, 0.2);
}

/* Иконка */
.offer-icon-box {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #666;
  transition: 0.4s;
}

.offer-item:hover .offer-icon-box,
.offer-item.active .offer-icon-box {
  background: #00E676;
  color: #000;
  transform: scale(1.2) rotate(-10deg);
  border-color: #00E676;
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.4);
}

.offer-icon-box svg {
  width: 28px;
  height: 28px;
}

/* Адаптив для мобильных (превращаем в вертикальный стек) */
@media (max-width: 900px) {
  .offer-pro-wrapper {
    flex-direction: column;
    height: auto;
  }

  .offer-item {
    min-height: 100px;
    flex: none;
    width: 100%;
  }

  .offer-item.active, .offer-item:hover {
    min-height: 350px; /* Раскрытие по высоте на телефоне */
  }

  .offer-title { font-size: 1.4rem; }
  .offer-icon-box { width: 40px; height: 40px; bottom: 20px; right: 20px; }
  .offer-icon-box svg { width: 20px; height: 20px; }
}

/* --- Advanced Scroll Animations --- */

/* Базовый класс для анимируемого элемента */
.anim-item {
  opacity: 0;
  will-change: transform, opacity;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); /* Плавный "кинематографичный" ход */
}

/* 1. Снизу вверх (классика) */
.anim-up {
  transform: translateY(60px);
}

/* 2. Слева направо */
.anim-left {
  transform: translateX(-80px);
}

/* 3. Справа налево */
.anim-right {
  transform: translateX(80px);
}

/* 4. Увеличение (Zoom In) */
.anim-zoom {
  transform: scale(0.9);
}

/* 5. Каскадное появление (Stagger) для сеток */
.anim-up-stagger {
  transform: translateY(60px);
}

/* Состояние "В кадре" (Active) */
.in-view {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Задержки для каскада (карточки появляются по очереди) */
.features-grid .anim-item:nth-child(1) { transition-delay: 0.1s; }
.features-grid .anim-item:nth-child(2) { transition-delay: 0.2s; }
.features-grid .anim-item:nth-child(3) { transition-delay: 0.3s; }
.features-grid .anim-item:nth-child(4) { transition-delay: 0.4s; }

/* Hero Elements Delays */
.hero .anim-item:nth-child(1) { transition-delay: 0.1s; }
.hero .anim-item:nth-child(2) { transition-delay: 0.2s; }
.hero .anim-item:nth-child(3) { transition-delay: 0.3s; }
.hero .anim-item:nth-child(4) { transition-delay: 0.4s; }


/* --- Cyber Slider (Results Section) --- */

.cyber-slider {
  position: relative;
  max-width: 900px;
  margin: 40px auto;
  background: #050505;
  border: 1px solid rgba(0, 230, 118, 0.3); /* Dark Green Border */
  /* Срезанные углы в стиле Cyberpunk */

  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 230, 118, 0.05);
}

/* Декоративные линии рамки */
.cyber-frame-top, .cyber-frame-bottom {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 60%; height: 2px; background: rgba(0, 230, 118, 0.5); z-index: 5;
}
.cyber-frame-top { top: 0; }
.cyber-frame-bottom { bottom: 0; }

/* Сканирующая линия (Анимация) */
.scan-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 230, 118, 0.1), transparent);
  z-index: 4; pointer-events: none;
  background-size: 100% 5px; /* Линии телевизора */
  animation: scanline 3s linear infinite;
}

@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Трек слайдера */
.cyber-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.cyber-slide {
  min-width: 100%;
  position: relative;
}

.slide-content {
  position: relative;
  width: 100%;
  height: 450px; /* Высота слайдера */
}
.slide-content img{
	width:100%;
}
/* Бейдж с названием кейса */
.slide-badge {
  position: absolute; top: 20px; left: 20px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid #00E676;
  color: #00E676;
  padding: 5px 15px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  z-index: 6;
  text-transform: uppercase;
}

/* Заглушка для изображения (Техно-стиль) */
.img-placeholder-tech {
  width: 100%; height: 100%;
  background: #080808;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  display: flex; align-items: center; justify-content: center;
  color: #333; font-family: 'Space Grotesk', sans-serif; text-align: center;
}
.img-placeholder-tech img {
  width: 100%; height: 100%; object-fit: cover; /* Или contain, если скриншот должен быть виден целиком */
}

/* Управление */
.cyber-controls {
  position: absolute; bottom: 0; left: 0; width: 100%;
  height: 60px;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  backdrop-filter: blur(5px);
}

.cyber-pagination {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.cyber-pagination span { color: #00E676; }

.cyber-arrow {
  background: transparent; border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: 0.3s;
}
.cyber-arrow:hover {
  background: #00E676; color: #000; border-color: #00E676;
}

/* Адаптив */
@media (max-width: 768px) {
  .slide-content { height: 250px; } /* Меньше высота на мобиле */
  /* Кнопки можно оставить, они теперь внизу и не мешают */
  .cyber-controls { height: 50px; }
}

/* --- Mobile Fix for Offer Section (Force Active State) --- */

/* --- Mobile Horizontal Swipe for Offer Section --- */
@media (max-width: 900px) {

  /* 1. Контейнер превращаем в горизонтальную ленту */
  .offer-pro-wrapper {
    flex-direction: row; /* В ряд */
    overflow-x: auto;    /* Разрешаем скролл */
    scroll-snap-type: x mandatory; /* Магнитный эффект */
    gap: 16px;
    padding-bottom: 30px; /* Место под скроллбар (если есть) */
    height: auto;

    /* Скрываем скроллбар для красоты */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }

  .offer-pro-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

  /* 2. Настройка карточек */
  .offer-item {
    min-width: 85vw; /* Ширина карточки - 85% от экрана (чтобы видно было край следующей) */
    flex: none;      /* Не сжимать */
    scroll-snap-align: center; /* Центрировать при остановке */
    min-height: 380px;

    /* Дефолтное состояние (не активное) - чуть прозрачное и меньше */
    opacity: 0.5;
    transform: scale(0.92);
    transition: opacity 0.3s, transform 0.3s, border-color 0.3s;

    /* Возвращаем стили фона */
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* 3. Активная карточка (которая по центру) */
  .offer-item.active {
    opacity: 1;
    transform: scale(1); /* Полный размер */
    border-color: #00E676;
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 5px 30px rgba(0, 230, 118, 0.15);
  }

  /* Показываем контент всегда */
  .offer-item .offer-body {
    opacity: 1 !important;
    transform: translateY(0) !important;
    display: block;
    margin-top: 20px;
  }

  /* Фон активной карточки */
  .offer-item.active .offer-item__bg {
    opacity: 0.4;
  }

  /* Иконка */
  .offer-icon-box {
    width: 50px; height: 50px; bottom: 20px; right: 20px;
    transition: 0.3s;
  }

  /* Иконка у активной карточки загорается */
  .offer-item.active .offer-icon-box {
    background: #00E676;
    color: #000;
    border-color: #00E676;
    transform: rotate(-10deg);
  }

  .offer-item__content { padding: 30px; }
  .offer-desc { max-width: 100%; font-size: 1rem; }


}
/* --- Mobile Horizontal Swipe (All Active Mode) --- */
@media (max-width: 900px) {

  /* 1. Лента свайпа */
  .offer-pro-wrapper {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 30px;
    height: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .offer-pro-wrapper::-webkit-scrollbar { display: none; }

  /* 2. Карточка (ВСЕГДА АКТИВНАЯ) */
  .offer-item {
    min-width: 85vw;
    flex: none;
    scroll-snap-align: center;
    min-height: 380px;

    /* Сразу полная яркость и размер */
    opacity: 1;
    transform: none;

    /* Сразу стиль "Active" */
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid #00E676; /* Зеленая рамка у всех */
    box-shadow: 0 5px 30px rgba(0, 230, 118, 0.15); /* Свечение у всех */
  }

  /* Текст всегда виден */
  .offer-item .offer-body {
    opacity: 1 !important;
    transform: translateY(0) !important;
    display: block;
    margin-top: 20px;
  }

  /* Фон всегда светится */
  .offer-item .offer-item__bg {
    opacity: 0.4;
  }

  /* Иконка всегда зеленая и активная */
  .offer-icon-box {
    width: 50px; height: 50px; bottom: 20px; right: 20px;
    background: #00E676;
    color: #000;
    border-color: #00E676;
    transform: rotate(-10deg); /* Повернута у всех */
  }

  .offer-icon-box svg { width: 24px; height: 24px; }

  .offer-item__content { padding: 30px; }
  .offer-desc { max-width: 100%; font-size: 1rem; }
}


/* --- Partners Section (Marquee) --- */

.section-partners {
  padding: 80px 0;
  overflow: hidden; /* Важно, чтобы полоса не расширяла экран */
  position: relative;
}

.marquee-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px; /* Расстояние между рядами */
  margin-top: 40px;
}

/* Размытие по краям (Fade effect) */
.marquee-fade {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to right, var(--bg-dark) 0%, transparent 10%, transparent 90%, var(--bg-dark) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Трек (полоса) */
.marquee-track {
  display: flex;
  overflow: hidden;
  user-select: none;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); /* Маска для плавного исчезновения */
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px; /* Расстояние между карточками */
  min-width: 100%;
  padding-right: 20px; /* Компенсация gap */
}

/* Анимации движения */
.scroll-left .marquee-group {
  animation: scrollLeft 30s linear infinite;
}

.scroll-right .marquee-group {
  animation: scrollRight 30s linear infinite;
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes scrollRight {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

/* Стиль карточки партнера */
.partner-card {
  width: 200px; /* Ширина плашки */
  height: 90px;
  background: rgba(20, 20, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  cursor: default;
}

/* Эффект при наведении */
.partner-card:hover {
  border-color: var(--accent);
  background: rgba(0, 230, 118, 0.05);
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.1);
}

/* Текст внутри (или логотип) */
.partner-card span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: #666; /* Тусклый цвет по умолчанию */
  transition: 0.3s;
  letter-spacing: 1px;
}

.partner-card:hover span {
  color: #fff;
}

/* Если будешь вставлять картинки */
.partner-card img {
  max-width: 70%;
  max-height: 60%;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: 0.3s;
}

.partner-card:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/* Адаптив */
@media (max-width: 768px) {
  .section-partners {
    padding: 60px 0;

  }

  .partner-card {
    width: 150px;
    height: 70px;
  }

  .partner-card span {
    font-size: 0.9rem;
  }

  /* Чуть медленнее на телефоне, чтобы не рябило */
  .scroll-left .marquee-group,
  .scroll-right .marquee-group {
    animation-duration: 20s;
  }
}



/* --- About Section Redesign (Kinetic Composition) --- */

.mb-20 { margin-bottom: 20px; }

/* Список преимуществ */
.about-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.about-list li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.check-icon {
  background: rgba(0, 230, 118, 0.1);
  color: #00E676;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: bold; font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.about-list strong { color: #fff; display: block; margin-bottom: 2px; }
.about-list p { font-size: 0.95rem; color: var(--text-gray); margin: 0; }

/* --- Композиция справа --- */
.about-composition {
  position: relative;
  width: 100%;
  height: 400px; /* Фиксируем высоту для композиции */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Общий стиль карточек (Glassmorphism) */
.comp-card {
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: absolute;
}

/* 1. Главная карта (Центр) */
.main-card {
  width: 300px;
  height: 200px;
  z-index: 2;
  padding: 20px;
  display: flex; flex-direction: column; justify-content: space-between;
  border-top: 1px solid rgba(0, 230, 118, 0.3); /* Зеленый акцент сверху */
}

.card-header { display: flex; gap: 6px; margin-bottom: 10px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #333; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.stat-value { font-family: var(--font-head); font-size: 2.5rem; color: #fff; display: block; }
.stat-label { font-size: 0.9rem; color: var(--text-gray); text-transform: uppercase; letter-spacing: 1px; }

.chart-line {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 60px;
  opacity: 0.8;
}

/* 2. Виджет GEO (Сверху справа) */
.widget-geo {
  top: 40px; right: 20px;
  padding: 15px;
  display: flex; align-items: center; gap: 12px;
  z-index: 3;
  width: 160px;
  border-right: 2px solid #00E676;
}

/* 3. Виджет Players (Снизу слева) */
.widget-players {
  bottom: 50px; left: 0;
  padding: 15px;
  display: flex; align-items: center; gap: 12px;
  z-index: 3;
  width: 180px;
  border-left: 2px solid #00E676;
}

/* Тексты виджетов */
.widget-card strong { display: block; font-size: 1.2rem; color: #fff; line-height: 1; }
.widget-card small { font-size: 0.8rem; color: var(--text-gray); }
.widget-icon { font-size: 1.5rem; }

/* Фоновое свечение */
.comp-glow {
  position: absolute;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.15), transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

/* --- Анимации парения (Floating) --- */
.floating-slow { animation: float 6s ease-in-out infinite; }
.floating-medium { animation: float 5s ease-in-out infinite 1s; } /* Задержка 1с */
.floating-fast { animation: float 4s ease-in-out infinite 0.5s; }

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Адаптив */
@media (max-width: 768px) {
  .about-composition { height: 350px; transform: scale(0.9); }
  .main-card { width: 260px; }
  .widget-geo { right: 0; top: 20px; }
  .widget-players { left: 0; bottom: 30px; }
}


/* --- Footer Redesign (Cyber Minimal) --- */

.footer {
  background: #020202; /* Чуть темнее основного фона */
  padding-top: 60px;
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
}

/* Неоновая линия сверху */
.footer-line {
  position: absolute; top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 230, 118, 0.5), transparent);
}

/* Сетка верхней части */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr; /* Бренд занимает больше места */
  gap: 60px;
  margin-bottom: 50px;
}

/* Лого и описание */
/* --- Логотип в футере (SVG) --- */

.footer-logo {
  display: inline-block; /* Позволяет блоку быть по размеру картинки */
  margin-bottom: 20px;
  line-height: 0; /* Убирает лишний отступ снизу под картинкой */
}

.footer-logo img {
  display: block;
  height: 40px; /* Оптимальная высота для футера (можно менять: 30px - 50px) */
  width: auto;  /* Сохраняем пропорции логотипа */
  max-width: 100%; /* Чтобы не вылезал за границы на мобилках */

  /* Если твой SVG черный, этот фильтр сделает его белым.
     Если SVG уже белый/цветной — удали эту строку */
  /* filter: brightness(0) invert(1); */
}

/* На мобильных устройствах логотип центрируется родительским блоком,
   так что дополнительных правок не нужно, если использовал мой код футера выше. */

.footer-desc {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
}

/* Заголовки колонок */
.footer-heading {
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Ссылки */
.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px; /* Эффект сдвига */
}

/* Кнопка-ссылка со стрелкой */
.link-arrow {
  display: inline-block;
  margin-top: 20px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
}

.link-arrow:hover {
  letter-spacing: 1px;
}

/* Разделитель */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
}

/* Нижняя часть */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Блок 18+ */
.legal-warning {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.badge-18 {
  background: #222;
  color: #888;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 0.8rem;
  border: 1px solid #333;
}

.legal-warning p {
  color: #555;
  font-size: 0.8rem;
  margin: 0;
}

.copyright {
  color: #444;
  font-size: 0.85rem;
}

/* Адаптив */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr; /* Одна колонка на телефоне */
    gap: 40px;
    text-align: center;
  }

  .footer-desc {
    margin: 0 auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-warning {
    width: 100%;
    justify-content: center;
  }
}





/* --- Back to Top Button --- */
.btn-up {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--accent); /* Зеленая рамка */
  border-radius: 50%;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  
  /* Скрыта по умолчанию */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  
  /* Blur эффект */
  backdrop-filter: blur(5px);
  box-shadow: 0 0 10px rgba(0, 230, 118, 0.1);
}

.btn-up svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

/* Состояние "Показать" (добавляется через JS) */
.btn-up.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Ховер */
.btn-up:hover {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.6);
  transform: translateY(-5px);
}

.btn-up:hover svg {
  transform: translateY(-3px); /* Стрелка чуть подпрыгивает */
}

/* Адаптив: на мобилке чуть меньше и ближе к краю */
@media (max-width: 768px) {
  .btn-up {
    width: 44px;
    height: 44px;
    bottom: 20px;
    right: 20px;
  }
}
@media (max-width: 768px) {
  .card-visual-top {
    display:none;
  }
}






/* --- Contact Section Redesign --- */

/* 1. Выравнивание высоты карточек */
.contact-grid {
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 30px; 
  max-width: 900px; 
  margin: 40px auto 0;
  align-items: stretch; /* Растягиваем карточки по высоте */
}

.contact-card {
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  /* Flex для внутреннего позиционирования */
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.contact-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* --- Стили для левой карточки (Telegram) --- */
.telegram-card {
  justify-content: space-between; /* Разносим верх и низ */
  padding: 0; /* Убираем паддинги у родителя, зададим внутри */
  background: linear-gradient(180deg, rgba(20,20,20,0.6) 0%, rgba(34, 158, 217, 0.05) 100%);
}

/* Верхняя часть с визуализацией */
.card-visual-top {
  flex: 1; /* Занимает всё свободное место */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px; /* Минимальная высота для красоты */
  position: relative;
}

/* Нижняя часть с кнопкой */
.card-action-bottom {
  padding: 30px;
  background: rgba(0,0,0,0.2); /* Чуть темнее фон снизу */
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.contact-sub {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 20px;
  margin-top: -10px;
}

/* Стили для правой карточки (Email) - чтобы паддинги были красивые */
.email-card {
  padding: 30px;
}

/* --- Анимация "Signal / Connection" (CSS Art) --- */
.signal-loader {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Центральная точка */
.signal-dot {
  width: 16px; height: 16px;
  background: #229ED9; /* Telegram Blue */
  border-radius: 50%;
  box-shadow: 0 0 15px #229ED9;
  z-index: 2;
  animation: pulseDot 2s infinite;
}

/* Кольца */
.signal-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(34, 158, 217, 0.3);
  box-shadow: 0 0 10px rgba(34, 158, 217, 0.1);
  opacity: 0;
}

.ring-1 {
  width: 100%; height: 100%;
  animation: ripple 2s infinite ease-out;
}

.ring-2 {
  width: 100%; height: 100%;
  animation: ripple 2s infinite ease-out 0.6s; /* Задержка */
}

/* Кейфреймы анимации */
@keyframes ripple {
  0% { transform: scale(0.1); opacity: 1; border-width: 3px; }
  100% { transform: scale(1.5); opacity: 0; border-width: 0px; }
}

@keyframes pulseDot {
  0% { transform: scale(1); box-shadow: 0 0 15px #229ED9; }
  50% { transform: scale(1.2); box-shadow: 0 0 25px #229ED9; }
  100% { transform: scale(1); box-shadow: 0 0 15px #229ED9; }
}

/* Адаптив */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .card-visual-top {
    min-height: 150px;
  }
}


/* --- Обновленная кнопка Telegram --- */

.btn--telegram {
  background: #229ED9; /* Официальный цвет Telegram */
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  
  /* Flex для выравнивания иконки и текста */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* Расстояние между иконкой и текстом */
  
  transition: all 0.3s ease;
}

.btn--telegram:hover {
  background: #1f8ec2;
  box-shadow: 0 0 20px rgba(34, 158, 217, 0.6); /* Синее свечение */
  border-color: #fff;
  transform: translateY(-2px);
}

.tg-icon {
  width: 20px;
  height: 20px;
  fill: none; /* Если хочешь залитую иконку, поставь fill: currentColor и убери stroke */
}

/* Чтобы текст внутри кнопки был чуть жирнее */
.btn--telegram span {
  font-weight: 600;
  letter-spacing: 0.5px;
}



/* --- Contact Form 7 Overrides (Restoring Design) --- */

/* 1. Сброс стандартных отступов CF7 */
.wpcf7 p {
  margin-bottom: 0;
  padding: 0;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  position: relative;
}

/* 2. Стилизация полей ввода (Input & Textarea) */
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  padding: 16px;
  background: #050505 !important; /* Важно перебить дефолт */
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px;
  color: #fff !important;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box; /* Чтобы паддинги не ломали ширину */
  margin-bottom: 0;
}

/* Фокус (Неоновый эффект) */
.wpcf7-form-control.wpcf7-text:focus,
.wpcf7-form-control.wpcf7-textarea:focus {
  border-color: #00E676 !important;
  box-shadow: 0 0 10px rgba(0, 230, 118, 0.1);
}

/* Плейсхолдеры */
.wpcf7-form-control::placeholder {
  color: #666;
  opacity: 1;
}

/* 3. Отступы между полями (если используешь div.form-group) */
.form-group {
  margin-bottom: 16px;
}

/* 4. Кнопка отправки */
/* CF7 обычно использует input[type="submit"], но если у тебя button, стилизуем и его */
.wpcf7-submit, 
button.wpcf7-submit {
  width: 100%;
  padding: 14px 32px;
  background: #00E676;
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  text-transform: none; /* Убираем капс, если WP добавляет */
  margin-top: 10px;
}

.wpcf7-submit:hover {
  background: #fff;
  box-shadow: 0 0 25px rgba(0, 230, 118, 0.5);
  transform: translateY(-2px);
}

/* 5. Сообщения об ошибках/успехе (подгоняем под темную тему) */
.wpcf7-response-output {
  margin-top: 20px !important;
  border-radius: 8px;
  font-size: 0.9rem;
  padding: 10px !important;
  background: rgba(20, 20, 20, 0.9);
}

/* Успех - Зеленая рамка */
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #00E676 !important;
  color: #00E676;
}

/* Ошибка - Красная рамка */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  border-color: #ff5f56 !important;
  color: #ff5f56;
}

/* Скрываем спиннер загрузки, если он мешает, или стилизуем */
.wpcf7-spinner {
  display:none;
}