/* ============================================ */
/* CSS ПЕРЕМЕННЫЕ (для быстрой смены цветов) */
/* ============================================ */
:root {
  /* ТЕМНЫЕ ФОНЫ - глубокие пурпурно-синие (премиум) */
  --dark-bg-1: #0a0e1a;
  --dark-bg-2: #1a1f3a;
  --dark-bg-3: #1e2539;
  --dark-bg-4: #2c3e50;

  /* СВЕТЛЫЕ ФОНЫ */
  --light-bg-1: #ffffff;
  --light-bg-2: #f8f9fa;

  /* ЗОЛОТОЙ ГРАДИЕНТ (акценты, заголовки) - ПРЕМИУМ */
  --gold-lighter: #ffe066;
  --gold-light: #ffd84d;
  --gold-dark: #d4a445;
  --gold-peach: #e8a87c;

  /* ДОПОЛНИТЕЛЬНЫЕ ЗОЛОТЫЕ */
  --gold-glow: rgba(255, 216, 77, 0.3);
  --gold-soft: rgba(255, 216, 77, 0.1);
  --gold-medium: rgba(255, 216, 77, 0.2);
  --amber: #ffb347;
  --honey: #daa520;

  /* ГОЛУБОЙ (кнопки CTA) - для контраста */
  --blue-light: #5DADE2;
  --blue-dark: #3498DB;
  --blue-darker: #2980B9;

  /* ТЕКСТ */
  --text-light: #e6f1ff;
  --text-dark: #2c3e50;
  --text-gray: #8892b0;

  /* МОБИЛЬНОЕ МЕНЮ - Smart Menu */
  --menu-width-mobile: 55%;
  --menu-padding-top: 70px;
  --menu-gap: 18px;
  --menu-icon-size: 18px;

  /* FAB КНОПКА */
  --fab-size: 64px;
  --fab-offset: 20px;
  --fab-pulse-duration: 2s;
}

/* ============================================ */
/* БАЗОВЫЕ СТИЛИ */
/* ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ============================================ */
/* HEADER (фиксированное меню) */
/* ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  transition: all 0.3s ease;
}

/* Переливающаяся полоса под header - ЗОЛОТАЯ */
.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #ffd84d 20%, #e8a87c 50%, #ffd84d 80%, transparent 100%);
  background-size: 200% 100%;
  animation: header-shimmer 5s ease-in-out infinite;
  opacity: 0.8;
}

@keyframes header-shimmer {
  0% { background-position: 200% 50%; }
  100% { background-position: -200% 50%; }
}

.header.scrolled {
  padding: 8px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header.scrolled::after {
  opacity: 0.8;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  margin-left: -10px;
}

.header-logo img {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}

.header.scrolled .header-logo img {
  height: 32px;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-light);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================ */
/* БЛОК 1: HERO - ПРЕМИУМ */
/* ============================================ */
.hero {
  background: linear-gradient(135deg, #0a0e1a 0%, #141a2e 40%, #1a1f3a 70%, #1e2539 100%);
  padding: 180px 20px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Переливающаяся полоса снизу - КРАСНАЯ */
.hero-shimmer-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd84d 0%, #e8a87c 30%, #ffd84d 50%, #e8a87c 70%, #ffd84d 100%);
  background-size: 200% 100%;
  animation: hero-shimmer 4s ease-in-out infinite;
}

@keyframes hero-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Декоративные свечения - КРАСНЫЕ НЕОНОВЫЕ */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-1 {
  width: 700px;
  height: 700px;
  top: -250px;
  left: -200px;
  background: radial-gradient(circle, rgba(255, 216, 77, 0.15) 0%, rgba(232, 168, 124, 0.08) 40%, transparent 70%);
  animation: hero-float 10s ease-in-out infinite;
}

.hero-glow-2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(212, 164, 69, 0.12) 0%, rgba(233, 30, 99, 0.05) 40%, transparent 70%);
  animation: hero-float 10s ease-in-out infinite reverse;
}

.hero-glow-3 {
  width: 300px;
  height: 300px;
  top: 30%;
  right: 10%;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.1) 0%, transparent 70%);
  animation: hero-pulse 6s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 20px) scale(1.05); }
}

@keyframes hero-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

/* Декоративные частицы/звёзды */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ffd84d;
  border-radius: 50%;
  animation: hero-particle-float 8s ease-in-out infinite;
  box-shadow: 0 0 10px #ffd84d, 0 0 20px rgba(255, 216, 77, 0.5);
}

.hero-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; opacity: 0.4; }
.hero-particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 1s; opacity: 0.3; width: 3px; height: 3px; }
.hero-particle:nth-child(3) { left: 80%; top: 30%; animation-delay: 2s; opacity: 0.5; }
.hero-particle:nth-child(4) { left: 70%; top: 70%; animation-delay: 3s; opacity: 0.3; width: 2px; height: 2px; }
.hero-particle:nth-child(5) { left: 90%; top: 50%; animation-delay: 4s; opacity: 0.4; width: 3px; height: 3px; }
.hero-particle:nth-child(6) { left: 5%; top: 80%; animation-delay: 2.5s; opacity: 0.35; }

@keyframes hero-particle-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-20px) scale(1.2); opacity: 0.6; }
}

.hero-content {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 20px;
}

.hero-logo {
  flex-shrink: 0;
  margin-left: -5%;
}

.hero-logo img {
  height: 750px;
  filter: drop-shadow(0 0 50px rgba(255, 216, 77, 0.6)) drop-shadow(0 0 100px rgba(212, 164, 69, 0.3));
}

/* Hero Video */
.hero-video {
  flex-shrink: 0;
}

.hero-video video {
  width: 660px;
  max-width: 53vw;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 216, 77, 0.4);
}

.video-caption {
  text-align: center;
  color: var(--gold-light);
  font-size: 14px;
  margin-top: 10px;
  font-weight: 500;
}

.video-stat {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  margin-top: 6px;
  font-weight: 400;
}

.hero-text {
  flex: 1;
  text-align: center;
}

.hero-main-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.hero-secondary-title {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 50px;
  color: var(--text-light);
  opacity: 0.85;
  white-space: nowrap;
}

.hero h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 22px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-input-methods {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 35px;
}

.hero-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.hero-method-icon {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 216, 77, 0.2) 0%, rgba(212, 164, 69, 0.1) 100%);
  border: 2px solid rgba(255, 216, 77, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  box-shadow:
    0 8px 32px rgba(255, 216, 77, 0.3),
    0 4px 16px rgba(212, 164, 69, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.15),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.hero-method-icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffd84d, #d4a445, #d4a445);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
  filter: blur(15px);
}

/* 3D эффект на иконках */
.hero-method-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
}

.hero-method:hover .hero-method-icon::before {
  opacity: 0.7;
}

.hero-method:hover .hero-method-icon {
  border-color: #ffd84d;
  transform: translateY(-10px) rotateX(10deg) scale(1.05);
  box-shadow:
    0 20px 50px rgba(255, 216, 77, 0.4),
    0 10px 30px rgba(212, 164, 69, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}

.hero-method-icon svg {
  width: 54px;
  height: 54px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.hero-method:hover .hero-method-icon svg {
  transform: scale(1.2) translateZ(20px);
  filter: drop-shadow(0 0 15px rgba(255, 216, 77, 0.8)) drop-shadow(0 8px 16px rgba(0,0,0,0.4));
}

.hero-method-text {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

/* Coral/Peach - Голос → КРАСНЫЙ НЕОНОВЫЙ */
.hero-method-icon--coral {
  background: linear-gradient(145deg, rgba(255, 179, 71, 0.25) 0%, rgba(212, 164, 69, 0.15) 100%);
  border-color: rgba(255, 179, 71, 0.6);
  box-shadow:
    0 8px 32px rgba(255, 179, 71, 0.35),
    0 4px 16px rgba(212, 164, 69, 0.25),
    inset 0 2px 0 rgba(255, 255, 255, 0.15),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.hero-method-icon--coral::before {
  background: linear-gradient(135deg, #ffb347, #ffd84d, #d4a445);
}

.hero-method:hover .hero-method-icon--coral {
  border-color: #ffb347;
  box-shadow:
    0 20px 50px rgba(255, 179, 71, 0.5),
    0 10px 30px rgba(212, 164, 69, 0.35),
    inset 0 2px 0 rgba(255, 255, 255, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}

.hero-method:hover .hero-method-icon--coral svg {
  filter: drop-shadow(0 0 20px rgba(255, 179, 71, 0.9)) drop-shadow(0 8px 16px rgba(0,0,0,0.4));
}

/* Blue - Скриншот → РУБИНОВЫЙ */
.hero-method-icon--blue {
  background: linear-gradient(145deg, rgba(233, 30, 99, 0.25) 0%, rgba(156, 39, 176, 0.15) 100%);
  border-color: rgba(233, 30, 99, 0.6);
  box-shadow:
    0 8px 32px rgba(233, 30, 99, 0.35),
    0 4px 16px rgba(156, 39, 176, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.15),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.hero-method-icon--blue::before {
  background: linear-gradient(135deg, #e8a87c, #d4a445, #b8860b);
}

.hero-method:hover .hero-method-icon--blue {
  border-color: #e8a87c;
  box-shadow:
    0 20px 50px rgba(233, 30, 99, 0.5),
    0 10px 30px rgba(156, 39, 176, 0.35),
    inset 0 2px 0 rgba(255, 255, 255, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}

.hero-method:hover .hero-method-icon--blue svg {
  filter: drop-shadow(0 0 20px rgba(233, 30, 99, 0.9)) drop-shadow(0 8px 16px rgba(0,0,0,0.4));
}

/* Gold - Вручную → ТЁМНО-КРАСНЫЙ С ОРАНЖЕВЫМ */
.hero-method-icon--gold {
  background: linear-gradient(145deg, rgba(255, 107, 107, 0.25) 0%, rgba(255, 82, 82, 0.15) 100%);
  border-color: rgba(255, 107, 107, 0.6);
  box-shadow:
    0 8px 32px rgba(255, 107, 107, 0.35),
    0 4px 16px rgba(255, 82, 82, 0.25),
    inset 0 2px 0 rgba(255, 255, 255, 0.15),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.hero-method-icon--gold::before {
  background: linear-gradient(135deg, #ffe066, #ffc966, #d4a445);
}

.hero-method:hover .hero-method-icon--gold {
  border-color: #ffe066;
  box-shadow:
    0 20px 50px rgba(255, 107, 107, 0.5),
    0 10px 30px rgba(255, 82, 82, 0.35),
    inset 0 2px 0 rgba(255, 255, 255, 0.2),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}

.hero-method:hover .hero-method-icon--gold svg {
  filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.9)) drop-shadow(0 8px 16px rgba(0,0,0,0.4));
}

.hero-method:hover .hero-method-text {
  color: var(--gold-light);
  opacity: 1;
}

.hero-arrow-down {
  margin: 25px 0;
  display: flex;
  justify-content: center;
}

.hero-arrow-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255, 216, 77, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounceArrow 2s infinite ease-in-out;
  background: linear-gradient(145deg, rgba(255, 216, 77, 0.15) 0%, transparent 100%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 216, 77, 0.3);
}

.hero-arrow-circle:hover {
  border-color: #ffd84d;
  background: linear-gradient(145deg, rgba(255, 216, 77, 0.25) 0%, transparent 100%);
  box-shadow: 0 8px 30px rgba(255, 216, 77, 0.5);
}

.hero-arrow-circle svg {
  width: 28px;
  height: 28px;
  stroke: #ffd84d;
}

@keyframes bounceArrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.hero-result {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: 20px 30px;
  margin-bottom: 30px;
  perspective: 1000px;
}

.hero-result-divider {
  display: none;
}

.hero-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 216, 77, 0.15) 0%, rgba(212, 164, 69, 0.08) 100%);
  border: 1px solid rgba(255, 216, 77, 0.35);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
  position: relative;
  transform-style: preserve-3d;
  box-shadow:
    0 8px 25px rgba(255, 216, 77, 0.2),
    0 4px 10px rgba(212, 164, 69, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-result-item::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ffd84d, #d4a445, #d4a445);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
  filter: blur(15px);
}

.hero-result-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-result-item:hover {
  transform: translateY(-10px) rotateX(12deg) scale(1.08);
  border-color: rgba(255, 216, 77, 0.7);
  box-shadow:
    0 25px 50px rgba(255, 216, 77, 0.35),
    0 15px 30px rgba(212, 164, 69, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-result-item:hover::before {
  opacity: 0.5;
}

.hero-result-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 3px 6px rgba(255, 216, 77, 0.4));
}

.hero-result-item:hover .hero-result-icon {
  transform: scale(1.25) rotateY(15deg) translateZ(15px);
  filter: drop-shadow(0 6px 15px rgba(255, 216, 77, 0.6));
}

.hero-result-item span {
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(135deg, #ffe066 0%, #ffd84d 60%, #d4a445 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.hero-result-item:hover span {
  filter: brightness(1.2);
}

/* Blue - Улучшенные фото → РОЗОВО-КРАСНЫЙ */
.hero-result-item--blue {
  background: linear-gradient(145deg, rgba(233, 30, 99, 0.15) 0%, rgba(156, 39, 176, 0.08) 100%);
  border-color: rgba(233, 30, 99, 0.4);
  box-shadow:
    0 8px 25px rgba(233, 30, 99, 0.2),
    0 4px 10px rgba(156, 39, 176, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-result-item--blue::before {
  background: linear-gradient(135deg, #e8a87c, #d4a445, #b8860b);
}

.hero-result-item--blue:hover {
  border-color: rgba(233, 30, 99, 0.7);
  box-shadow:
    0 25px 50px rgba(233, 30, 99, 0.35),
    0 15px 30px rgba(156, 39, 176, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-result-item--blue .hero-result-icon {
  filter: drop-shadow(0 3px 6px rgba(233, 30, 99, 0.4));
}

.hero-result-item--blue:hover .hero-result-icon {
  filter: drop-shadow(0 6px 15px rgba(233, 30, 99, 0.6));
}

.hero-result-item--blue span {
  background: linear-gradient(135deg, #ffe066 0%, #e8a87c 60%, #d4a445 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Mint/Green - AI-видеотуры → ОРАНЖЕВО-КРАСНЫЙ */
.hero-result-item--mint {
  background: linear-gradient(145deg, rgba(255, 87, 34, 0.15) 0%, rgba(244, 67, 54, 0.08) 100%);
  border-color: rgba(255, 87, 34, 0.4);
  box-shadow:
    0 8px 25px rgba(255, 87, 34, 0.2),
    0 4px 10px rgba(244, 67, 54, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-result-item--mint::before {
  background: linear-gradient(135deg, #ffd84d, #e8a87c, #d4a445);
}

.hero-result-item--mint:hover {
  border-color: rgba(255, 87, 34, 0.7);
  box-shadow:
    0 25px 50px rgba(255, 87, 34, 0.35),
    0 15px 30px rgba(244, 67, 54, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-result-item--mint .hero-result-icon {
  filter: drop-shadow(0 3px 6px rgba(255, 87, 34, 0.4));
}

.hero-result-item--mint:hover .hero-result-icon {
  filter: drop-shadow(0 6px 15px rgba(255, 87, 34, 0.6));
}

.hero-result-item--mint span {
  background: linear-gradient(135deg, #ffe066 0%, #e8a87c 60%, #d4a445 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Purple - Инфраструктура */
.hero-result-item--purple {
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.15) 0%, rgba(99, 102, 241, 0.08) 100%);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow:
    0 8px 25px rgba(139, 92, 246, 0.2),
    0 4px 10px rgba(99, 102, 241, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-result-item--purple::before {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6, #7c3aed);
}

.hero-result-item--purple:hover {
  border-color: rgba(139, 92, 246, 0.7);
  box-shadow:
    0 25px 50px rgba(139, 92, 246, 0.35),
    0 15px 30px rgba(99, 102, 241, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-result-item--purple .hero-result-icon {
  filter: drop-shadow(0 3px 6px rgba(139, 92, 246, 0.4));
}

.hero-result-item--purple:hover .hero-result-icon {
  filter: drop-shadow(0 6px 15px rgba(139, 92, 246, 0.6));
}

.hero-result-item--purple span {
  background: linear-gradient(135deg, #ffe066 0%, #c4b5fd 60%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-result-divider-old {
  font-size: 16px;
  color: #ffd84d;
  opacity: 0.7;
  animation: pulse-diamond 2s ease-in-out infinite;
  text-shadow: 0 0 15px rgba(255, 216, 77, 0.6);
}

@keyframes pulse-diamond {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1) rotateZ(0deg);
    text-shadow: 0 0 5px rgba(224, 122, 138, 0.3);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.3) rotateZ(90deg);
    text-shadow: 0 0 15px rgba(224, 122, 138, 0.8);
  }
}

.hero-flow {
  font-size: 24px;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
  font-weight: 500;
}

.hero-flow-arrow {
  color: var(--gold-light);
  margin: 0 15px;
  font-size: 28px;
}

.hero-features-line {
  font-size: 20px;
  font-weight: 600;
  background: linear-gradient(135deg, #ffe066 0%, #ffd84d 50%, #d4a445 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  filter: drop-shadow(0 0 8px rgba(255, 216, 77, 0.4));
}

.hero-description {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 40px;
  text-align: center;
}

.cta-button {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, #ffe066 0%, #ffd84d 50%, #d4a445 100%);
  background-size: 200% 200%;
  color: #ffffff;
  padding: 22px 55px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 18px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow:
    0 8px 30px rgba(255, 216, 77, 0.5),
    0 4px 15px rgba(212, 164, 69, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  overflow: hidden;
  animation: cta-gradient 4s ease infinite;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: left 0.6s ease;
}

.cta-button::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ffd84d, #d4a445, #e8a87c, #ffd84d);
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0;
  filter: blur(18px);
  transition: opacity 0.4s ease;
  animation: cta-glow-rotate 3s linear infinite;
}

@keyframes cta-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes cta-glow-rotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-button:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 15px 50px rgba(255, 216, 77, 0.6),
    0 8px 25px rgba(212, 164, 69, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover::after {
  opacity: 0.8;
}

.cta-button:active {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 25px rgba(255, 216, 77, 0.5),
    0 4px 12px rgba(212, 164, 69, 0.4);
}

.hero-note {
  margin-top: 25px;
  font-size: 14px;
  color: var(--text-gray);
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.hero-note-star {
  color: var(--gold-light);
  margin-right: 4px;
  font-size: 10px;
  animation: twinkle 2s ease-in-out infinite;
}

.hero-note-star:nth-child(1) {
  animation-delay: 0s;
}

.hero-note-star:nth-child(2) {
  animation-delay: 0.3s;
}

.hero-note-star:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* ============================================ */
/* БЛОК 2: ПРОБЛЕМА */
/* ============================================ */
.problema {
  background: linear-gradient(135deg, #1a1f3a 0%, #2a3550 50%, #354060 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

/* Переливающиеся полосы - КРАСНЫЕ */
.problema::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd84d 0%, #d4a445 25%, #ffb347 50%, #d4a445 75%, #ffd84d 100%);
  background-size: 200% 100%;
  animation: problema-shimmer 3.5s ease-in-out infinite;
}

.problema-line-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd84d 0%, #d4a445 25%, #ffb347 50%, #d4a445 75%, #ffd84d 100%);
  background-size: 200% 100%;
  animation: problema-shimmer 3.5s ease-in-out infinite reverse;
}

@keyframes problema-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Декоративные свечения */
.problema-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.problema-glow-1 {
  width: 450px;
  height: 450px;
  top: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(255, 216, 77, 0.15) 0%, transparent 70%);
}

.problema-glow-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(212, 164, 69, 0.12) 0%, transparent 70%);
}

.problema .container {
  position: relative;
  z-index: 1;
}

/* Заголовок секции */
.problema-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desktop: скрываем мобильные элементы */
.problema-dots {
  display: none;
}

.problema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.problema-card {
  background: linear-gradient(145deg, rgba(255, 216, 77, 0.08) 0%, rgba(212, 164, 69, 0.04) 100%);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 4px 15px rgba(255, 216, 77, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid rgba(255, 216, 77, 0.25);
}

.problema-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #ffd84d, #d4a445, #d4a445);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.4;
  transition: opacity 0.4s ease;
}

.problema-card::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 26px;
  background: linear-gradient(135deg, #ffd84d, #d4a445);
  z-index: -1;
  opacity: 0;
  filter: blur(18px);
  transition: opacity 0.4s ease;
}

.problema-card:hover {
  transform: translateY(-8px);
}

.problema-card:hover::before {
  opacity: 1;
}

.problema-card:hover::after {
  opacity: 0.12;
}

.problema-icon-wrapper {
  width: 90px;
  height: 90px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255, 216, 77, 0.15) 0%, rgba(212, 164, 69, 0.08) 100%);
  border-radius: 50%;
  border: 2px solid rgba(255, 216, 77, 0.4);
  box-shadow: 0 4px 20px rgba(255, 216, 77, 0.2);
  transition: all 0.4s ease;
  position: relative;
}

.problema-card:hover .problema-icon-wrapper {
  transform: scale(1.1);
}

.problema-icon-svg {
  width: 55px;
  height: 55px;
  transition: all 0.4s ease;
}

.problema-card:hover .problema-icon-svg {
  transform: scale(1.1);
}

.problema-card h3 {
  font-size: 22px;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 600;
}

.problema-card p {
  color: var(--text-gray);
}

.problema-card ul {
  list-style: none;
  margin: 15px 0;
}

.problema-card li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-gray);
}

.problema-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #e07a8a;
}

/* ============================================ */
/* БЛОК 3: РЕШЕНИЕ */
/* ============================================ */
.reshenie {
  background: linear-gradient(135deg, #0a0e1a 0%, #141a2e 50%, #1e2539 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

/* Переливающиеся полосы - КРАСНЫЕ */
.reshenie::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd84d 0%, #d4a445 25%, #ffb347 50%, #d4a445 75%, #ffd84d 100%);
  background-size: 200% 100%;
  animation: reshenie-shimmer 3.5s ease-in-out infinite;
}

.reshenie::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd84d 0%, #d4a445 25%, #ffb347 50%, #d4a445 75%, #ffd84d 100%);
  background-size: 200% 100%;
  animation: reshenie-shimmer 3.5s ease-in-out infinite reverse;
}

@keyframes reshenie-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Декоративные свечения */
.reshenie-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.reshenie-glow-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(255, 216, 77, 0.15) 0%, transparent 70%);
}

.reshenie-glow-2 {
  width: 450px;
  height: 450px;
  bottom: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(212, 164, 69, 0.12) 0%, transparent 70%);
}

.reshenie .container {
  position: relative;
  z-index: 1;
}

/* Заголовок с иконкой */
.reshenie-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.section-subtitle {
  text-align: center;
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 50px;
  opacity: 0.9;
}

.reshenie-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.reshenie-card {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.95), rgba(44, 62, 80, 0.95));
  border: 2px solid transparent;
  background-clip: padding-box;
  padding: 40px 30px;
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.reshenie-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, var(--gold-light), var(--blue-light), var(--gold-dark));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

.reshenie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(255, 216, 77, 0.2);
}

.reshenie-card:hover::before {
  opacity: 1;
}

.reshenie-card h3 {
  font-size: 24px;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.reshenie-card p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.reshenie-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255, 216, 77, 0.1) 0%, rgba(224, 122, 138, 0.08) 100%);
  border-radius: 50%;
  border: 2px solid rgba(255, 216, 77, 0.3);
  transition: all 0.4s ease;
  position: relative;
}

.reshenie-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd84d, #e07a8a, #c95b8a);
  opacity: 0;
  z-index: -1;
  filter: blur(12px);
  transition: opacity 0.4s ease;
}

.reshenie-card:hover .reshenie-icon-wrapper {
  border-color: rgba(224, 122, 138, 0.6);
  transform: scale(1.1) rotateY(15deg);
  box-shadow: 0 8px 30px rgba(224, 122, 138, 0.3);
}

.reshenie-card:hover .reshenie-icon-wrapper::before {
  opacity: 0.6;
}

.reshenie-icon-svg {
  width: 60px;
  height: 60px;
  transition: all 0.4s ease;
}

.reshenie-card:hover .reshenie-icon-svg {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 10px rgba(224, 122, 138, 0.5));
}

.reshenie-arrow {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.reshenie-arrow svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold-light);
  animation: bounceArrow 2s ease-in-out infinite;
}

.reshenie-result {
  color: var(--text-light);
  font-weight: 600;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reshenie-note {
  margin-top: 15px;
  font-size: 14px;
  color: var(--text-gray);
}

/* ============================================ */
/* SPOSOBY SHOWCASE (4 способа — табы) */
/* ============================================ */
.sposoby-showcase {
  margin-top: 40px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 216, 77, 0.15);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
}

/* Табы */
.sposoby-tabs {
  display: flex;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 216, 77, 0.1);
}

.sposoby-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.sposoby-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-peach));
  border-radius: 3px 3px 0 0;
  transition: width 0.3s ease;
}

.sposoby-tab.active::after {
  width: 80%;
}

.sposoby-tab:hover {
  background: rgba(255, 216, 77, 0.05);
}

.sposoby-tab.active {
  background: rgba(255, 216, 77, 0.1);
}

.sposoby-tab-icon {
  font-size: 24px;
}

.sposoby-tab-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray);
  transition: color 0.3s ease;
}

.sposoby-tab.active .sposoby-tab-text {
  color: var(--text-light);
}

.sposoby-tab-time {
  font-size: 11px;
  color: var(--gold-light);
  font-weight: 500;
  opacity: 0.7;
}

.sposoby-tab.active .sposoby-tab-time {
  opacity: 1;
}

/* Слайды */
.sposoby-slides {
  position: relative;
  min-height: 280px;
}

.sposoby-slide {
  display: none;
  padding: 32px 40px;
  animation: sposobyFadeIn 0.4s ease;
}

.sposoby-slide.active {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
}

@keyframes sposobyFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Визуальная часть (левая) */
.sposoby-slide-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sposoby-slide-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255, 216, 77, 0.1) 0%, rgba(224, 122, 138, 0.08) 100%);
  border-radius: 50%;
  border: 2px solid rgba(255, 216, 77, 0.3);
}

.sposoby-slide-icon svg {
  width: 70px;
  height: 70px;
}

.sposoby-slide-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-light);
  padding: 6px 14px;
  background: rgba(255, 216, 77, 0.1);
  border: 1px solid rgba(255, 216, 77, 0.3);
  border-radius: 20px;
}

/* Контентная часть (правая) */
.sposoby-slide-content {
  padding: 8px 0;
}

.sposoby-slide-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
}

.sposoby-slide-desc {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.sposoby-slide-example {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 16px;
  border-radius: 10px;
  border-left: 3px solid var(--gold-light);
  margin-bottom: 16px;
}

.sposoby-slide-example em {
  color: var(--text-gray);
  font-style: italic;
  font-size: 14px;
}

.sposoby-slide-arrow {
  text-align: center;
  font-size: 20px;
  color: var(--gold-light);
  margin: 12px 0;
  animation: bounceArrow 2s ease-in-out infinite;
}

.sposoby-slide-result {
  font-size: 15px;
  color: var(--text-light);
  padding: 12px 16px;
  background: linear-gradient(145deg, rgba(255, 216, 77, 0.1) 0%, rgba(224, 122, 138, 0.05) 100%);
  border-radius: 10px;
  margin-bottom: 12px;
}

.sposoby-slide-result strong {
  color: var(--gold-light);
}

.sposoby-slide-note {
  font-size: 13px;
  color: var(--text-gray);
  font-style: italic;
}

.sposoby-slide-benefit {
  margin-top: 15px;
  padding: 12px 16px;
  background: rgba(255, 216, 77, 0.1);
  border: 1px solid rgba(255, 216, 77, 0.3);
  border-radius: 10px;
  font-size: 14px;
  color: var(--gold-light);
  font-weight: 500;
}

/* Навигация */
.sposoby-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(255, 216, 77, 0.1);
}

.sposoby-nav-prev,
.sposoby-nav-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 216, 77, 0.1);
  border: 1px solid rgba(255, 216, 77, 0.3);
  color: var(--gold-light);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sposoby-nav-prev:hover,
.sposoby-nav-next:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: var(--dark-bg-1);
  border-color: transparent;
}

.sposoby-infra-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffe066 0%, #ffd84d 50%, #e07a8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 40px;
  letter-spacing: 1px;
  filter: drop-shadow(0 0 12px rgba(255, 216, 77, 0.4));
}

.sposoby-infra-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(255, 216, 77, 0.5));
}

/* Адаптив */
@media (max-width: 768px) {
  .sposoby-tabs {
    flex-wrap: nowrap;
  }

  .sposoby-tab {
    flex: 1;
    padding: 10px 4px;
    gap: 4px;
  }

  .sposoby-tab-icon {
    font-size: 18px;
  }

  .sposoby-tab-text {
    font-size: 10px;
    line-height: 1.2;
  }

  .sposoby-tab-time {
    font-size: 9px;
  }

  .sposoby-slide.active {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
  }

  .sposoby-slide-visual {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .sposoby-slide-icon {
    width: 80px;
    height: 80px;
  }

  .sposoby-slide-icon svg {
    width: 50px;
    height: 50px;
  }

  .sposoby-slide-title {
    font-size: 20px;
    text-align: center;
  }

  .sposoby-slide-desc {
    text-align: center;
  }
}

/* ============================================ */
/* БЛОК 3.5: КЕЙСЫ ПО ТЕКСТАМ (СЛАЙДЕР) */
/* ============================================ */
.teksty-keysy {
  background: linear-gradient(135deg, #1a2332 0%, #2c3e50 50%, #34495e 100%);
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

/* Переливающиеся полосы сверху/снизу */
.teksty-keysy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5dade2 0%, #3498db 25%, #85c1e9 50%, #f4d03f 75%, #5dade2 100%);
  background-size: 200% 100%;
  animation: teksty-shimmer 4s ease-in-out infinite;
}

.teksty-keysy::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5dade2 0%, #3498db 25%, #85c1e9 50%, #f4d03f 75%, #5dade2 100%);
  background-size: 200% 100%;
  animation: teksty-shimmer 4s ease-in-out infinite reverse;
}

@keyframes teksty-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Лёгкое свечение */
.teksty-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.teksty-glow-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(93, 173, 226, 0.1) 0%, transparent 70%);
}

.teksty-glow-2 {
  width: 350px;
  height: 350px;
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(244, 208, 63, 0.08) 0%, transparent 70%);
}

.teksty-keysy .container {
  position: relative;
  z-index: 1;
}

/* Заголовок с иконкой */
.teksty-keysy-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.teksty-keysy .section-subtitle {
  color: var(--text-light);
  font-weight: 500;
}

.teksty-slider-container {
  max-width: 1200px;
  margin: 40px auto 0;
  position: relative;
}

.teksty-slider-wrapper {
  overflow: hidden;
  border-radius: 20px;
}

.teksty-slider {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.teksty-slide {
  min-width: 100%;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.teksty-slide-header {
  background: linear-gradient(135deg, #5dade2 0%, #3498db 50%, #f1c40f 100%);
  color: white;
  padding: 30px 40px;
}

.teksty-slide-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.teksty-slide-title {
  font-size: 28px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.teksty-slide-subtitle {
  font-size: 16px;
  opacity: 0.95;
  font-weight: 500;
  margin-top: 8px;
}

.teksty-slide-badge {
  background: rgba(255, 255, 255, 0.95);
  color: #2c3e50;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.teksty-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  height: 550px;
}

.teksty-before,
.teksty-after {
  padding: 35px;
  overflow-y: auto;
  position: relative;
}

.teksty-before {
  background: #fff5f5;
  border-right: 3px solid #fee;
}

.teksty-after {
  background: #f0fff4;
}

/* Кастомный скроллбар */
.teksty-before::-webkit-scrollbar,
.teksty-after::-webkit-scrollbar {
  width: 8px;
}

.teksty-before::-webkit-scrollbar-track {
  background: #ffe5e5;
}

.teksty-after::-webkit-scrollbar-track {
  background: #e0f7e9;
}

.teksty-before::-webkit-scrollbar-thumb {
  background: #ffe066;
  border-radius: 4px;
}

.teksty-after::-webkit-scrollbar-thumb {
  background: #40c057;
  border-radius: 4px;
}

.teksty-label {
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: sticky;
  top: 0;
  z-index: 10;
  padding-bottom: 10px;
}

.teksty-before .teksty-label {
  color: #dc3545;
  background: #fff5f5;
}

.teksty-after .teksty-label {
  color: #40c057;
  background: #f0fff4;
}

.teksty-text {
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 15px;
  white-space: pre-wrap;
}

/* Компактная строка статистики */
.teksty-stats-line {
  padding: 15px 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 2px solid #eee;
  font-size: 15px;
  color: var(--text-dark);
}

.teksty-stats-chars {
  font-weight: 500;
}

.teksty-stats-divider {
  color: rgba(255, 216, 77, 0.8);
  font-weight: bold;
}

.teksty-stats-growth {
  font-weight: 700;
  color: #40c057;
  background: rgba(64, 192, 87, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

.teksty-stats-time {
  font-weight: 500;
  color: #666;
}

/* Старые стили - оставляем для совместимости */
.teksty-stats-compact {
  padding: 25px 40px;
  background: #f8f9fa;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 2px solid #eee;
}

.teksty-stat-compact {
  text-align: center;
}

.teksty-stat-compact-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-dark);
}

.teksty-stat-compact-label {
  font-size: 13px;
  color: var(--text-gray);
  margin-top: 5px;
}

.teksty-improvements {
  padding: 0;
  background: transparent;
}

.teksty-improvements.expanded {
  background: white;
}

.teksty-improvements-header {
  padding: 30px 40px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-top: 2px solid #eee;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  user-select: none;
}

.teksty-improvements-header:hover {
  background: linear-gradient(135deg, #f0f2f5, #f8f9fa);
}

.teksty-improvements-header h3 {
  font-size: 22px;
  color: var(--blue-dark);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.teksty-improvements-toggle {
  font-size: 36px;
  color: var(--blue-dark);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  font-weight: 700;
}

.teksty-improvements.collapsed .teksty-improvements-toggle {
  transform: rotate(0deg);
}

.teksty-improvements.expanded .teksty-improvements-toggle {
  transform: rotate(180deg);
}

.teksty-improvements-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.teksty-improvements.collapsed .teksty-improvements-content {
  max-height: 0 !important;
}

.teksty-improvements.expanded .teksty-improvements-content {
  max-height: 800px;
}

.teksty-improvements ul {
  list-style: none;
  padding: 30px 40px;
  margin: 0;
  background: white;
}

.teksty-improvements li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.teksty-improvements li:last-child {
  border-bottom: none;
}

.teksty-improvement-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.teksty-improvement-text {
  flex: 1;
}

.teksty-improvement-text strong {
  display: block;
  color: var(--text-dark);
  font-size: 15px;
  margin-bottom: 5px;
}

.teksty-improvement-text span {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.5;
}

.teksty-meta {
  padding: 20px 40px;
  background: #fafbfc;
  border-top: 2px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.teksty-meta-bot {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-dark);
}

.teksty-meta-info {
  font-size: 14px;
  color: var(--text-gray);
}

.teksty-meta-info strong {
  color: var(--text-dark);
}

.teksty-detail-link {
  padding: 25px 40px;
  text-align: center;
  border-top: 2px solid #eee;
  background: #fafbfc;
}

.teksty-detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f1c40f, #f39c12);
  color: white;
  text-decoration: none;
  padding: 16px 35px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(241, 196, 15, 0.4);
}

.teksty-detail-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(241, 196, 15, 0.5);
  background: linear-gradient(135deg, #f39c12, #e67e22);
}

.teksty-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #f1c40f, #f39c12);
  border: none;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 32px;
  color: white;
  box-shadow: 0 6px 25px rgba(241, 196, 15, 0.5);
  transition: all 0.3s ease;
  z-index: 10;
  font-weight: 700;
}

.teksty-slider-nav:hover {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(241, 196, 15, 0.6);
}

.teksty-slider-nav.prev {
  left: -35px;
}

.teksty-slider-nav.next {
  right: -35px;
}

/* Убираем счетчик */
.teksty-slider-counter {
  display: none;
}

/* Мобильная навигация - скрыта на десктопе */
.teksty-mobile-nav {
  display: none;
}

/* Стрелки между До/После - скрыты на десктопе */
.teksty-middle-nav {
  display: none;
}

/* ============================================ */
/* ПОЛОСКА-РАЗДЕЛИТЕЛЬ */
/* ============================================ */
.section-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #ffd84d 20%, #e8a87c 50%, #ffd84d 80%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.1) 50%,
    transparent 100%
  );
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -50%; }
  100% { left: 100%; }
}

/* ============================================ */
/* КНОПКА "ВСЕ КЕЙСЫ" */
/* ============================================ */
.teksty-all-cases-btn-wrapper {
  margin-top: 40px;
  text-align: center;
}

.teksty-all-cases-btn {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border: none;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.teksty-all-cases-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.5);
  background: linear-gradient(135deg, #2980b9, #21618c);
}

/* ============================================ */
/* МОДАЛКА "ВСЕ КЕЙСЫ" */
/* ============================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 1000px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.modal-close:hover {
  background: rgba(224, 122, 138, 0.2);
  transform: rotate(90deg) scale(1.1);
}

.modal-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  text-align: center;
}

.modal-subtitle {
  font-size: 16px;
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 40px;
}

.modal-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.modal-case-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid #e9ecef;
  border-radius: 15px;
  padding: 30px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.modal-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #3498db, #2ecc71);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.modal-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(52, 152, 219, 0.2);
  border-color: #3498db;
}

.modal-case-card:hover::before {
  transform: scaleX(1);
}

.modal-case-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.modal-case-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.modal-case-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 15px;
}

.modal-case-badge {
  display: inline-block;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}

/* ============================================ */
/* БЛОК 4: КЕЙСЫ ДО/ПОСЛЕ */
/* ============================================ */
/* ============================================ */
/* БЛОК 4: ФОТО ДО/ПОСЛЕ - ПРЕМИУМ СТИЛЬ */
/* ============================================ */
.keysy {
  /* Более светлый сине-серый фон вместо чисто чёрного */
  background: linear-gradient(135deg, #1e2a3a 0%, #2a3a4d 40%, #354556 70%, #3d4f63 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

/* Переливающиеся полосы */
.keysy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd84d 0%, #e8a87c 25%, #e07a8a 50%, #e8a87c 75%, #ffd84d 100%);
  background-size: 200% 100%;
  animation: shimmer-line 3s ease-in-out infinite;
}

.keysy::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd84d 0%, #e8a87c 25%, #e07a8a 50%, #e8a87c 75%, #ffd84d 100%);
  background-size: 200% 100%;
  animation: shimmer-line 3s ease-in-out infinite reverse;
}

/* Декоративные элементы */
.keysy-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.keysy-decor-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(255, 216, 77, 0.12) 0%, rgba(232, 168, 124, 0.05) 50%, transparent 70%);
  animation: float-glow 8s ease-in-out infinite;
}

.keysy-decor-2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -150px;
  background: radial-gradient(circle, rgba(224, 122, 138, 0.1) 0%, rgba(200, 90, 138, 0.04) 50%, transparent 70%);
  animation: float-glow 8s ease-in-out infinite reverse;
}

@keyframes float-glow {
  0%, 100% { transform: translate(0, 0); opacity: 0.8; }
  50% { transform: translate(20px, 20px); opacity: 1; }
}

.keysy .container {
  position: relative;
  z-index: 1;
}

/* Заголовок секции */
.keysy-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--text-light) !important;
}

.keysy-title-icon {
  flex-shrink: 0;
}

/* Подзаголовок с иконками */
.keysy-subtitle {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
}

.keysy-subtitle-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--text-gray);
  font-weight: 500;
}

.keysy-subtitle-item svg {
  flex-shrink: 0;
}

/* Сетка карточек */
.keysy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Карточка кейса */
.keysy-item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 216, 77, 0.15);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.keysy-item::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ffd84d, #e8a87c, #e07a8a);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.keysy-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 216, 77, 0.4);
  box-shadow:
    0 20px 40px rgba(255, 216, 77, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.3);
}

.keysy-item:hover::before {
  opacity: 0.4;
}

/* Слайдер сравнения */
.keysy-slider {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

img-comparison-slider {
  border-radius: 16px;
  --divider-color: linear-gradient(180deg, #ffd84d, #e07a8a);
  --divider-width: 3px;
  --handle-size: 44px;
}

/* Кастомизация ручки слайдера */
img-comparison-slider::part(handle) {
  background: linear-gradient(135deg, #ffd84d 0%, #e07a8a 100%);
  border: 3px solid white;
  box-shadow: 0 4px 15px rgba(255, 216, 77, 0.5);
}

/* Метка типа обработки */
.keysy-type {
  position: absolute;
  top: 30px;
  left: 30px;
  background: linear-gradient(135deg, rgba(255, 216, 77, 0.9) 0%, rgba(224, 122, 138, 0.9) 100%);
  color: #1a1f3a;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(255, 216, 77, 0.3);
}

/* Подпись под слайдером */
.keysy-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 14px;
  margin-top: 15px;
  font-weight: 500;
}

.keysy-caption svg {
  flex-shrink: 0;
}

/* Stats Banner */
.keysy-stats-banner {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.95) 0%, rgba(40, 45, 80, 0.95) 100%);
  border: 1px solid rgba(255, 216, 77, 0.3);
  border-radius: 20px;
  padding: 30px 40px;
  margin: 50px auto 0;
  max-width: 900px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 216, 77, 0.1);
}

.keysy-stats-title {
  text-align: center;
  color: var(--gold-light);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
}

.keysy-stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.keysy-stats-item {
  text-align: center;
  flex: 1;
  max-width: 200px;
}

.keysy-stats-value {
  display: block;
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd84d 0%, #e8a87c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.keysy-stats-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.4;
}

.keysy-stats-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 216, 77, 0.4) 50%, transparent 100%);
}

/* Mobile: Stats Banner */
@media (max-width: 768px) {
  .keysy-stats-banner {
    padding: 25px 20px;
    margin: 40px 15px 0;
  }

  .keysy-stats-row {
    flex-direction: column;
    gap: 25px;
  }

  .keysy-stats-item {
    max-width: none;
  }

  .keysy-stats-value {
    font-size: 36px;
  }

  .keysy-stats-divider {
    display: none;
  }
}

/* Кнопка "Посмотреть все" */
.keysy-button {
  text-align: center;
  margin-top: 50px;
}

.keysy-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #ffd84d 0%, #e8a87c 50%, #e07a8a 100%);
  color: #1a1f3a;
  padding: 18px 40px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 216, 77, 0.4);
}

.keysy-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 216, 77, 0.5);
}

.keysy-btn svg {
  transition: transform 0.3s ease;
}

.keysy-btn:hover svg {
  transform: translateX(5px);
}

/* ============================================ */
/* KEYSY SHOWCASE - БОЛЬШОЙ СЛАЙДЕР С ТАБАМИ */
/* ============================================ */
.keysy-showcase {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 50px;
}

.keysy-main-slider {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 216, 77, 0.2);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(255, 216, 77, 0.1);
}

/* Слайды */
.keysy-slide {
  display: none;
  animation: keysyFadeIn 0.5s ease;
}

.keysy-slide.active {
  display: block;
}

@keyframes keysyFadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

.keysy-slide-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}

/* Изображение слайда */
.keysy-slide-image {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #1a1f3a;
}

.keysy-slide-image img-comparison-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.keysy-slide-image img-comparison-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

img-comparison-slider {
  overflow: hidden;
  display: block;
}

/* Видео в слайдере */
.keysy-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* Информация справа */
.keysy-slide-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.95) 0%, rgba(30, 37, 57, 0.98) 100%);
}

.keysy-slide-type {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 216, 77, 0.2) 0%, rgba(224, 122, 138, 0.2) 100%);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  width: fit-content;
  border: 1px solid rgba(255, 216, 77, 0.3);
}

.keysy-slide-title {
  color: var(--text-light);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, #e6f1ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.keysy-slide-desc {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Статистика */
.keysy-slide-stats {
  display: flex;
  gap: 30px;
}

.keysy-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.keysy-stat-value {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-peach) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.keysy-stat-label {
  font-size: 13px;
  color: var(--text-gray);
}

/* Навигация стрелками */
.keysy-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(26, 31, 58, 0.9);
  border: 1px solid rgba(255, 216, 77, 0.3);
  color: var(--gold-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.keysy-nav:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: var(--dark-bg-1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(255, 216, 77, 0.4);
}

.keysy-nav-prev {
  left: -25px;
}

.keysy-nav-next {
  right: -25px;
}

/* Контейнер для табов + стрелок (мобильная версия) */
.keysy-tabs-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

/* На десктопе скрываем мобильные стрелки */
.keysy-nav-mobile {
  display: none;
}

/* Табы */
.keysy-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.keysy-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 216, 77, 0.15);
  border-radius: 12px;
  color: var(--text-gray);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.keysy-tab:hover {
  background: rgba(255, 216, 77, 0.1);
  border-color: rgba(255, 216, 77, 0.3);
  color: var(--text-light);
}

.keysy-tab.active {
  background: linear-gradient(135deg, rgba(255, 216, 77, 0.2) 0%, rgba(224, 122, 138, 0.15) 100%);
  border-color: var(--gold-light);
  color: var(--gold-light);
  box-shadow: 0 4px 20px rgba(255, 216, 77, 0.2);
}

.keysy-tab-icon {
  font-size: 18px;
}

.keysy-tab-text {
  font-weight: 600;
}

/* Адаптивность для showcase */
@media (max-width: 900px) {
  .keysy-slide-content {
    grid-template-columns: 1fr;
  }

  .keysy-slide-image {
    aspect-ratio: 3/2;
    position: relative;
  }

  .keysy-slide-info {
    padding: 30px;
  }

  /* Скрываем десктопные стрелки */
  .keysy-nav-desktop {
    display: none;
  }

  /* Показываем мобильные стрелки */
  .keysy-nav-mobile {
    display: flex;
    position: static;
    transform: none;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  /* Табы и стрелки в одну линию */
  .keysy-tabs-row {
    gap: 10px;
  }

  .keysy-tabs {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .keysy-tab {
    padding: 12px 18px;
  }
}

@media (max-width: 600px) {
  .keysy-slide-info {
    padding: 25px 20px;
  }

  .keysy-slide-title {
    font-size: 22px;
  }

  .keysy-slide-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .keysy-slide-stats {
    gap: 20px;
  }

  .keysy-stat-value {
    font-size: 20px;
  }

  .keysy-nav-mobile {
    width: 40px;
    height: 40px;
  }

  .keysy-tabs-row {
    gap: 8px;
  }

  .keysy-tabs {
    gap: 6px;
  }

  .keysy-tab {
    padding: 10px 14px;
    font-size: 12px;
  }

  .keysy-tab-icon {
    font-size: 16px;
  }

  .keysy-tab-text {
    display: none;
  }
}

/* Старая кнопка - оставляем для совместимости */
.secondary-button {
  display: inline-block;
  background: transparent;
  color: var(--gold-light);
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid var(--gold-light);
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background: linear-gradient(135deg, #ffd84d 0%, #e07a8a 100%);
  color: #1a1f3a;
  border-color: transparent;
}

/* Адаптивность для keysy */
@media (max-width: 1024px) {
  .keysy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .keysy-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .keysy-subtitle {
    flex-direction: column;
    gap: 10px;
  }
}

/* ============================================ */
/* БЛОК 5: ФУНКЦИИ - ЗОЛОТОЙ ПРЕМИУМ СТИЛЬ */
/* ============================================ */
.funkcii {
  background: linear-gradient(135deg, #1a2332 0%, #2c3e50 50%, #34495e 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

/* Переливающиеся полосы */
.funkcii::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd84d 0%, #e8a87c 25%, #e07a8a 50%, #e8a87c 75%, #ffd84d 100%);
  background-size: 200% 100%;
  animation: shimmer-line 3s ease-in-out infinite;
}

.funkcii::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd84d 0%, #e8a87c 25%, #e07a8a 50%, #e8a87c 75%, #ffd84d 100%);
  background-size: 200% 100%;
  animation: shimmer-line 3s ease-in-out infinite reverse;
}

@keyframes shimmer-line {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Декоративное свечение */
.funkcii-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 216, 77, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.funkcii-glow-1 {
  top: -200px;
  left: -200px;
}

.funkcii-glow-2 {
  bottom: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(224, 122, 138, 0.08) 0%, transparent 70%);
}

/* Заголовок секции funkcii */
.funkcii-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--text-light) !important;
}

/* Подзаголовок секции funkcii */
.funkcii-subtitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 20px !important;
  color: var(--text-light) !important;
}

.funkcii-subtitle-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-gray);
}

.funkcii-subtitle-icon {
  flex-shrink: 0;
}

.funkcii .container {
  position: relative;
  z-index: 1;
}

.funkcii-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.funkcii-card {
  background: var(--light-bg-1);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.funkcii-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.funkcii-card.featured {
  border: 3px solid var(--gold-light);
  box-shadow: 0 8px 40px rgba(255, 216, 77, 0.2);
}

.funkcii-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: var(--dark-bg-1);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.funkcii-icon {
  font-size: 48px;
  margin-bottom: 20px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255, 216, 77, 0.1) 0%, rgba(224, 122, 138, 0.08) 100%);
  border: 2px solid rgba(255, 216, 77, 0.3);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.funkcii-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 216, 77, 0.25), rgba(224, 122, 138, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  filter: blur(8px);
}

.funkcii-card:hover .funkcii-icon {
  transform: scale(1.1) rotateY(15deg);
  border-color: rgba(255, 216, 77, 0.6);
  box-shadow: 0 8px 25px rgba(255, 216, 77, 0.3);
}

.funkcii-card:hover .funkcii-icon::before {
  opacity: 1;
}

.funkcii-icon svg {
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease;
}

.funkcii-card:hover .funkcii-icon svg {
  transform: scale(1.05);
}

.funkcii-card h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.funkcii-card p,
.funkcii-card ul {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.7;
}

.funkcii-card ul {
  list-style: none;
  margin: 15px 0;
}

.funkcii-card li {
  padding: 5px 0;
  padding-left: 24px;
  position: relative;
}

.funkcii-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: bold;
}

/* Акцентный текст в карточках */
.funkcii-accent {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  color: var(--text-dark);
  font-weight: 500;
}

.funkcii-accent svg {
  flex-shrink: 0;
}

/* Примечание под карточками */
.funkcii-note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-gray);
}

/* ============================================ */
/* FUNKCII SHOWCASE - ТАБЫ + БОЛЬШАЯ КАРТОЧКА */
/* ============================================ */
.funkcii-showcase {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* Табы сверху */
.funkcii-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.funkcii-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 216, 77, 0.15);
  border-radius: 12px;
  color: var(--text-gray);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.funkcii-tab:hover {
  background: rgba(255, 216, 77, 0.1);
  border-color: rgba(255, 216, 77, 0.3);
  color: var(--text-light);
}

.funkcii-tab.active {
  background: linear-gradient(135deg, rgba(255, 216, 77, 0.2) 0%, rgba(224, 122, 138, 0.15) 100%);
  border-color: var(--gold-light);
  color: var(--gold-light);
  box-shadow: 0 4px 20px rgba(255, 216, 77, 0.2);
}

/* ФИШКА табы с золотым свечением */
.funkcii-tab.featured {
  border-color: rgba(255, 216, 77, 0.3);
}

.funkcii-tab.featured.active {
  box-shadow: 0 4px 25px rgba(255, 216, 77, 0.4), 0 0 15px rgba(255, 216, 77, 0.2);
}

.funkcii-tab-badge {
  position: absolute;
  top: -8px;
  right: -5px;
  font-size: 12px;
  animation: funkciiBadgePulse 2s ease-in-out infinite;
}

@keyframes funkciiBadgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.funkcii-tab-icon {
  font-size: 18px;
}

.funkcii-tab-text {
  font-weight: 600;
}

/* Слайдер */
.funkcii-slider {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 216, 77, 0.2);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(255, 216, 77, 0.1);
}

/* Слайды */
.funkcii-slide {
  display: none;
  animation: funkciiFadeIn 0.5s ease;
}

.funkcii-slide.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@keyframes funkciiFadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

/* Визуальная часть (слева) */
.funkcii-slide-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.5) 0%, rgba(30, 37, 57, 0.3) 100%);
  gap: 30px;
}

.funkcii-slide-icon {
  animation: funkciiIconFloat 4s ease-in-out infinite;
}

.funkcii-slide-icon.featured-icon {
  filter: drop-shadow(0 0 20px rgba(255, 216, 77, 0.4));
}

@keyframes funkciiIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Платформы, типы, примеры */
.funkcii-slide-platforms,
.funkcii-slide-types,
.funkcii-slide-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.platform-tag,
.type-tag,
.feature-item {
  padding: 8px 16px;
  background: rgba(255, 216, 77, 0.1);
  border: 1px solid rgba(255, 216, 77, 0.2);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

/* Примеры трансформации текста */
.funkcii-slide-examples {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.example-transform {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.example-before {
  color: var(--text-gray);
  text-decoration: line-through;
  opacity: 0.7;
}

.example-arrow {
  color: var(--gold-light);
  font-weight: bold;
}

.example-after {
  color: var(--gold-light);
  font-weight: 600;
}

/* Контент (справа) */
.funkcii-slide-content {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.funkcii-slide-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: var(--dark-bg-1);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  z-index: 5;
}

.funkcii-slide-title {
  color: var(--text-light);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff 0%, #e6f1ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.funkcii-slide-subtitle {
  color: var(--gold-light);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.funkcii-slide-desc {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Статистика */
.funkcii-slide-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.funkcii-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.funkcii-stat-value {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-peach) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.funkcii-stat-label {
  font-size: 13px;
  color: var(--text-gray);
}

.funkcii-slide-note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-gray);
  padding: 8px 14px;
  background: rgba(255, 216, 77, 0.1);
  border-radius: 8px;
  width: fit-content;
}

.funkcii-slide-benefit {
  margin-top: 15px;
  padding: 14px 20px;
  background: rgba(26, 31, 58, 0.8);
  border: 1px solid rgba(255, 216, 77, 0.4);
  border-radius: 12px;
  font-size: 15px;
  color: var(--gold-light);
  font-weight: 600;
  text-align: center;
}

/* Навигация стрелками */
.funkcii-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(26, 31, 58, 0.9);
  border: 1px solid rgba(255, 216, 77, 0.3);
  color: var(--gold-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.funkcii-nav:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: var(--dark-bg-1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(255, 216, 77, 0.4);
}

.funkcii-nav-prev {
  left: -25px;
}

.funkcii-nav-next {
  right: -25px;
}

.funkcii-infra-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffe066 0%, #ffd84d 50%, #e07a8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 40px;
  letter-spacing: 1px;
  filter: drop-shadow(0 0 12px rgba(255, 216, 77, 0.4));
}

.funkcii-infra-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(255, 216, 77, 0.5));
}

/* Адаптивность для funkcii showcase */
@media (max-width: 900px) {
  .funkcii-slide.active {
    grid-template-columns: 1fr;
  }

  .funkcii-slide-visual {
    padding: 40px 30px;
  }

  .funkcii-slide-content {
    padding: 30px;
  }

  .funkcii-nav-prev {
    left: 10px;
  }

  .funkcii-nav-next {
    right: 10px;
  }

  .funkcii-tabs {
    gap: 8px;
  }

  .funkcii-tab {
    padding: 10px 14px;
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .funkcii-slide-icon svg {
    width: 80px;
    height: 80px;
  }

  .funkcii-slide-title {
    font-size: 22px;
  }

  .funkcii-slide-desc {
    font-size: 14px;
  }

  .funkcii-slide-stats {
    gap: 20px;
  }

  .funkcii-stat-value {
    font-size: 20px;
  }

  .funkcii-nav {
    width: 40px;
    height: 40px;
  }

  .funkcii-tab-text {
    display: none;
  }

  .funkcii-tab {
    padding: 10px 12px;
  }
}

/* ============================================ */
/* БЛОК 6: ТАРИФЫ */
/* ============================================ */
.tarify {
  background: linear-gradient(135deg, #1a2332 0%, #243447 50%, #2d4156 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

/* Переливающиеся полосы */
.tarify::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd84d 0%, #e8a87c 25%, #ffd84d 50%, #e8a87c 75%, #ffd84d 100%);
  background-size: 200% 100%;
  animation: tarify-shimmer 4s ease-in-out infinite;
}

.tarify-line-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd84d 0%, #e8a87c 25%, #ffd84d 50%, #e8a87c 75%, #ffd84d 100%);
  background-size: 200% 100%;
  animation: tarify-shimmer 4s ease-in-out infinite reverse;
}

@keyframes tarify-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Декоративные свечения */
.tarify-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.tarify-glow-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(255, 216, 77, 0.08) 0%, transparent 70%);
}

.tarify-glow-2 {
  width: 450px;
  height: 450px;
  bottom: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(232, 168, 124, 0.06) 0%, transparent 70%);
}

.tarify .container {
  position: relative;
  z-index: 1;
}

/* Стили для заголовка тарифов */
.tarify-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

/* Стили для подзаголовка тарифов */
.tarify-subtitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 20px !important;
  color: var(--text-light) !important;
}

.tarify-subtitle-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.tarify-subtitle-icon {
  flex-shrink: 0;
}

.tarify-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.tarif-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 216, 77, 0.15);
}

.tarif-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 216, 77, 0.15);
  border-color: rgba(255, 216, 77, 0.4);
}

.tarif-card.featured {
  border: 3px solid var(--gold-light);
  box-shadow: 0 8px 40px rgba(255, 216, 77, 0.2);
}

.tarif-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: var(--dark-bg-1);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.tarif-card.popular .tarif-badge {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-dark) 100%);
  color: white;
}

.tarif-title {
  font-size: 14px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-align: center;
}

.tarif-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 2px;
}

.tarif-period {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 15px;
  font-size: 14px;
}

.tarif-features {
  list-style: none;
  margin: 15px 0;
}

.tarif-features li {
  padding: 6px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-gray);
  line-height: 1.4;
  font-size: 14px;
}

.tarif-features li::before {
  content: '✅';
  position: absolute;
  left: 0;
  font-size: 18px;
}

/* SVG галочки для тарифов */
.tarif-features-svg li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 0;
}

.tarif-features-svg li::before {
  display: none;
}

.tarif-check {
  flex-shrink: 0;
  margin-top: 2px;
}

.tarif-note {
  background: rgba(255, 216, 77, 0.08);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-gray);
  margin: 12px 0;
  border: 1px solid rgba(255, 216, 77, 0.15);
}

.tarif-note-highlight {
  background: linear-gradient(145deg, rgba(255, 216, 77, 0.15) 0%, rgba(224, 122, 138, 0.1) 100%);
  border: 1px solid rgba(255, 216, 77, 0.3);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tarif-note-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-gray);
}

.tarif-note-line svg {
  flex-shrink: 0;
}

.tarif-button {
  width: 100%;
  margin-top: auto;
  padding-top: 25px;
}

.tarif-disclaimer {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  color: var(--text-gray);
}

.tarify-note {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(255, 216, 77, 0.08) 0%, rgba(224, 122, 138, 0.05) 100%);
  border: 1px solid rgba(255, 216, 77, 0.2);
  border-radius: 16px;
  font-size: 18px;
  color: var(--text-gray);
}

.tarify-note a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.tarify-note a:hover {
  color: var(--gold-peach);
}

.tarify-note-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.tarify-note-bottom .tarify-note-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
}

.tarify-note-bottom svg {
  flex-shrink: 0;
}

/* ============================================ */
/* НОВЫЕ ТАРИФЫ: Trial Banner + Compact Cards + Comparison */
/* ============================================ */

/* === TRIAL BANNER === */
.trial-banner {
  margin-bottom: 40px;
}

.trial-banner-content {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(145deg, rgba(255, 216, 77, 0.12) 0%, rgba(224, 122, 138, 0.08) 100%);
  border: 2px solid rgba(255, 216, 77, 0.4);
  border-radius: 20px;
  padding: 24px 32px;
  position: relative;
  overflow: hidden;
}

.trial-banner-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 10% 50%, rgba(255, 216, 77, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.trial-banner-icon {
  flex-shrink: 0;
}

.trial-banner-text {
  flex: 1;
}

.trial-banner-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}

.trial-banner-features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--text-gray);
  font-size: 15px;
}

.trial-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-peach));
}

.trial-banner-btn {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: var(--dark-bg-1);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 216, 77, 0.3);
}

.trial-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 216, 77, 0.4);
}

/* === COMPACT TARIFF CARDS === */
.tarify-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* Скрываем навигацию на десктопе */
.tarify-nav {
  display: none;
}

.tarif-compact-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 216, 77, 0.15);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s ease;
}

.tarif-compact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 216, 77, 0.15);
  border-color: rgba(255, 216, 77, 0.4);
}

.tarif-compact-card.popular {
  border: 2px solid var(--gold-light);
  background: linear-gradient(145deg, rgba(255, 216, 77, 0.1) 0%, rgba(224, 122, 138, 0.05) 100%);
  box-shadow: 0 8px 40px rgba(255, 216, 77, 0.2);
}

.tarif-compact-badge {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: var(--dark-bg-1);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  z-index: 10;
}

/* Карточки с бейджем - добавляем отступ сверху */
.tarif-compact-card.popular,
.tarif-compact-card.tarif-trial,
.tarif-compact-card.tarif-business {
  padding-top: 45px;
}

.tarif-compact-header {
  text-align: center;
  margin-bottom: 16px;
}

.tarif-compact-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}

.tarif-compact-desc {
  font-size: 14px;
  color: var(--text-gray);
}

.tarif-compact-price {
  text-align: center;
  margin-bottom: 8px;
}

.tarif-compact-price .price-value {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-peach));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tarif-compact-price .price-currency {
  font-size: 16px;
  color: var(--text-gray);
  margin-left: 4px;
}

.tarif-compact-credits {
  text-align: center;
  font-size: 15px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tarif-compact-features {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
}

.tarif-compact-features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.4;
}

.tarif-compact-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-peach));
}

.tarif-compact-highlight {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-light);
  padding: 10px;
  background: rgba(255, 216, 77, 0.1);
  border-radius: 8px;
  margin-bottom: 16px;
}

.tarif-compact-btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  background: transparent;
  border: 2px solid rgba(255, 216, 77, 0.5);
  color: var(--text-light);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tarif-compact-btn:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: var(--dark-bg-1);
  border-color: transparent;
}

.tarif-compact-card.popular .tarif-compact-btn {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: var(--dark-bg-1);
  border-color: transparent;
}

.tarif-compact-card.popular .tarif-compact-btn:hover {
  box-shadow: 0 6px 25px rgba(255, 216, 77, 0.4);
}

/* Trial карточка - скрыта на десктопе */
.tarif-compact-card.tarif-trial {
  display: none;
  border: 2px solid rgba(100, 200, 100, 0.4);
  background: linear-gradient(145deg, rgba(100, 200, 100, 0.1) 0%, rgba(100, 200, 100, 0.02) 100%);
}

.tarif-badge-free {
  background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%) !important;
}

.tarif-btn-trial {
  background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%) !important;
  color: white !important;
  border-color: transparent !important;
}

/* Business карточка - скрыта на десктопе */
.tarif-compact-card.tarif-business {
  display: none;
  border: 2px solid rgba(93, 173, 226, 0.4);
  background: linear-gradient(145deg, rgba(93, 173, 226, 0.1) 0%, rgba(93, 173, 226, 0.02) 100%);
}

.tarif-badge-business {
  background: linear-gradient(135deg, #5DADE2 0%, #3498DB 100%) !important;
}

/* === BUSINESS BANNER BIG (закрывающий) === */
.business-banner-big {
  margin-top: 20px;
}

.business-big-content {
  background: linear-gradient(145deg, rgba(255, 216, 77, 0.08) 0%, rgba(224, 122, 138, 0.05) 100%);
  border: 2px solid rgba(255, 216, 77, 0.3);
  border-radius: 24px;
  padding: 32px 40px;
  position: relative;
  overflow: hidden;
}

.business-big-content::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: radial-gradient(circle at 100% 50%, rgba(255, 216, 77, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.business-big-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}

.business-big-icon {
  flex-shrink: 0;
}

.business-big-title-block {
  flex: 1;
}

.business-big-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 4px;
}

.business-big-subtitle {
  font-size: 16px;
  color: var(--text-gray);
}

.business-big-price-block {
  flex-shrink: 0;
  text-align: right;
}

.business-big-price {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-peach));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.business-big-currency {
  font-size: 18px;
  color: var(--text-gray);
  margin-left: 4px;
}

.business-big-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
}

.business-feature {
  text-align: center;
}

.business-feature-value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.business-feature-label {
  display: block;
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.3;
}

.business-big-extras {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  background: linear-gradient(135deg, #ffd84d 0%, #e8a87c 50%, #e07a8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 216, 77, 0.15);
}

.business-dot {
  width: 5px;
  height: 5px;
  background: linear-gradient(135deg, #ffd84d, #e07a8a);
  border-radius: 50%;
  flex-shrink: 0;
}

.business-big-btn {
  flex-shrink: 0;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: var(--dark-bg-1);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 216, 77, 0.3);
}

.business-big-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 216, 77, 0.4);
}

/* === RESPONSIVE: Тарифы === */
@media (max-width: 992px) {
  /* Горизонтальный свайп-слайдер для тарифов */
  .tarify-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -20px;
    padding: 0 20px;
  }

  .tarify-compact-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .tarify-compact-grid::-webkit-scrollbar {
    display: none;
  }

  .tarif-compact-card {
    flex: 0 0 calc(100% - 40px) !important;
    min-width: calc(100% - 40px) !important;
    max-width: calc(100% - 40px) !important;
    scroll-snap-align: center;
    padding: 24px 20px;
  }

  .tarif-compact-card.popular {
    order: 0; /* Сохраняем порядок для свайпа */
  }

  .tarif-compact-features li {
    font-size: 13px;
    word-break: break-word;
    hyphens: auto;
  }

  /* Показываем Trial и Business карточки на мобилке */
  .tarif-compact-card.tarif-trial,
  .tarif-compact-card.tarif-business {
    display: flex !important;
    flex-direction: column !important;
  }

  /* Скрываем отдельные баннеры Trial и Business на мобилке */
  .trial-banner,
  .business-banner-big {
    display: none !important;
  }

  /* Навигация тарифов */
  .tarify-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
  }

  .tarify-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 216, 77, 0.4);
    background: rgba(255, 216, 77, 0.1);
    color: var(--gold-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .tarify-nav-btn:hover,
  .tarify-nav-btn:active {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-peach));
    border-color: transparent;
    color: var(--dark-bg-1);
    transform: scale(1.1);
  }

  .tarify-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .tarify-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 216, 77, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .tarify-dot.active {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-peach));
    transform: scale(1.2);
  }

  .trial-banner-content {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .trial-banner-title {
    font-size: 20px;
  }

  .trial-banner-features {
    justify-content: center;
  }

  /* Business Big адаптив */
  .business-big-content {
    padding: 24px 20px;
  }

  .business-big-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .business-big-price-block {
    text-align: center;
  }

  .business-big-title {
    font-size: 26px;
  }

  .business-big-price {
    font-size: 36px;
  }

  .business-big-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .trial-banner-features span {
    font-size: 13px;
  }

  .business-feature-value {
    font-size: 24px;
  }

  .business-feature-label {
    font-size: 12px;
  }
}

/* ============================================ */
/* БЛОК 7: ОТЗЫВЫ */
/* ============================================ */
.otzyvy {
  background: var(--dark-bg-3);
  padding: 100px 20px;
}

.otzyvy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Скрываем точки на десктопе */
.otzyvy-dots {
  display: none;
}

.otziv-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 35px 30px;
  border-radius: 16px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.otziv-card:hover {
  transform: translateY(-5px);
  border-color: rgba(224, 122, 138, 0.3);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(224, 122, 138, 0.12);
}

.otziv-quote {
  font-size: 80px;
  color: var(--gold-light);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.otziv-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: block;
  border: 3px solid var(--gold-light);
  box-shadow: 0 4px 15px rgba(255, 216, 77, 0.3);
}

.otziv-text {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.otziv-stars {
  color: var(--gold-light);
  font-size: 20px;
  margin-bottom: 15px;
}

.otziv-author {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 5px;
}

.otziv-meta {
  color: var(--text-gray);
  font-size: 14px;
}

/* ============================================ */
/* БЛОК 8: FAQ */
/* ============================================ */
.faq {
  background: linear-gradient(135deg, #1e2a3a 0%, #2a3a4d 50%, #354556 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

/* Переливающиеся полосы */
.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd84d 0%, #e8a87c 25%, #ffd84d 50%, #e8a87c 75%, #ffd84d 100%);
  background-size: 200% 100%;
  animation: faq-shimmer 4s ease-in-out infinite;
}

.faq-line-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd84d 0%, #e8a87c 25%, #ffd84d 50%, #e8a87c 75%, #ffd84d 100%);
  background-size: 200% 100%;
  animation: faq-shimmer 4s ease-in-out infinite reverse;
}

@keyframes faq-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Декоративные свечения */
.faq-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.faq-glow-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(255, 216, 77, 0.06) 0%, transparent 70%);
}

.faq-glow-2 {
  width: 350px;
  height: 350px;
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(232, 168, 124, 0.05) 0%, transparent 70%);
}

.faq > .container,
.faq > .faq-container {
  position: relative;
  z-index: 1;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.faq-title-icon {
  flex-shrink: 0;
}

.faq-q-icon {
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 8px;
}

.faq-a-icon {
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 6px;
}

.accordion-content-inner p {
  display: flex;
  align-items: flex-start;
}

.accordion-content-inner p svg {
  margin-top: 3px;
}

.accordion-item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 216, 77, 0.15);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(255, 216, 77, 0.3);
  box-shadow: 0 4px 20px rgba(255, 216, 77, 0.08);
}

.accordion-header {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: rgba(255, 216, 77, 0.05);
}

.accordion-header h3 {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.accordion-icon {
  font-size: 24px;
  color: #ffd84d;
  transition: transform 0.4s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-content-inner {
  padding: 0 30px 25px 30px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ============================================ */
/* БЛОК 9: ФИНАЛЬНЫЙ CTA */
/* ============================================ */
.final-cta {
  background: linear-gradient(135deg, var(--dark-bg-1) 0%, var(--dark-bg-2) 100%);
  padding: 100px 20px;
  text-align: center;
}

.final-cta-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 35px;
  background: linear-gradient(135deg, #ffd84d 0%, #e8a87c 50%, #e07a8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.final-cta-icon {
  flex-shrink: 0;
}

.final-cta-text {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.final-cta-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-gray);
}

.final-cta-line svg {
  flex-shrink: 0;
}

.final-cta-btn {
  font-size: 20px;
  padding: 22px 50px;
  box-shadow: 0 8px 30px rgba(93, 173, 226, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.final-cta-features {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 15px;
  color: var(--text-gray);
}

.final-cta-features span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.final-cta-features span svg {
  flex-shrink: 0;
}

/* ============================================ */
/* БЛОК: БОНУС ДЛЯ РИЕЛТОРОВ */
/* ============================================ */
.bonus-section {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.95) 0%, rgba(40, 45, 80, 0.95) 100%);
  padding: 80px 20px;
  position: relative;
}

.bonus-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 216, 77, 0.4) 50%, transparent 100%);
}

.bonus-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 50px;
}

.bonus-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.bonus-preview {
  flex-shrink: 0;
}

.bonus-preview img {
  width: 280px;
  height: auto;
  border-radius: 12px;
  border: 2px solid rgba(255, 216, 77, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 216, 77, 0.1);
}

.bonus-info {
  flex: 1;
}

.bonus-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.4;
}

.bonus-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.bonus-list li {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 216, 77, 0.1);
}

.bonus-list li:last-child {
  border-bottom: none;
}

.bonus-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffd84d 0%, #e8a87c 50%, #e07a8a 100%);
  color: #1a1f3a;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 216, 77, 0.4);
}

.bonus-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 216, 77, 0.5);
}

/* Mobile: Bonus Section */
@media (max-width: 768px) {
  .bonus-section {
    padding: 60px 20px;
  }

  .bonus-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .bonus-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .bonus-preview img {
    width: 220px;
  }

  .bonus-subtitle {
    font-size: 20px;
  }

  .bonus-list li {
    font-size: 15px;
  }

  .bonus-btn {
    padding: 16px 32px;
    font-size: 16px;
  }
}

/* ============================================ */
/* БЛОК 10: FOOTER */
/* ============================================ */
.footer {
  background: linear-gradient(180deg, #0a0e1a 0%, #080b14 100%);
  padding: 60px 20px 30px;
  text-align: center;
  color: var(--text-light);
  position: relative;
}

/* Переливающаяся полоса сверху */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd84d 0%, #e8a87c 30%, #ffd84d 50%, #e8a87c 70%, #ffd84d 100%);
  background-size: 200% 100%;
  animation: footer-shimmer 4s ease-in-out infinite;
}

@keyframes footer-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  height: 70px;
  opacity: 0.9;
}

.footer-description {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-year {
  font-size: 18px;
  background: linear-gradient(135deg, #ffd84d 0%, #e07a8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.footer-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-gray);
}

.footer-contacts {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-contacts p {
  margin: 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contacts a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contacts a:hover {
  background: linear-gradient(135deg, #ffd84d 0%, #e07a8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-countries {
  color: var(--text-gray);
  margin-bottom: 30px;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--text-light);
}

.footer-links a svg {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer-links a:hover svg {
  opacity: 1;
}

.footer-copyright {
  color: var(--text-gray);
  font-size: 14px;
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================ */
/* МОДАЛЬНЫЕ ОКНА */
/* ============================================ */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 16px;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 40px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--light-bg-2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--text-dark);
  color: white;
}

.modal-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.modal-grid .keysy-item {
  width: 100%;
  max-width: 100%;
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 0 !important;
  background: none !important;
  border: none !important;
}

.modal-grid .keysy-item::before {
  display: none !important;
}

.modal-grid .keysy-item img-comparison-slider {
  width: 100%;
  height: 100%;
}

.modal-grid .keysy-item img-comparison-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.modal-grid .keysy-caption {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  z-index: 10;
  white-space: nowrap;
}

/* Мобильная версия модалки */
@media (max-width: 768px) {
  .modal-grid .keysy-item {
    aspect-ratio: 16/10;
    display: block;
    position: relative;
  }

  .modal-grid .keysy-item img-comparison-slider {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
  }

  .modal-grid .keysy-item img-comparison-slider img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  .modal-grid .keysy-caption {
    font-size: 11px;
    padding: 4px 12px;
    bottom: 8px;
  }
}

/* ============================================ */
/* КНОПКА "ВВЕРХ" */
/* ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-dark) 100%);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(93, 173, 226, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(93, 173, 226, 0.5);
}

/* ============================================ */
/* АДАПТИВНОСТЬ (БОЛЬШИЕ ПЛАНШЕТЫ / МАЛЕНЬКИЕ ДЕСКТОПЫ) */
/* ============================================ */
@media (max-width: 1400px) {
  .hero-logo img {
    height: 600px;
  }

  .hero-main-title {
    font-size: 52px;
    white-space: normal;
  }

  .hero-secondary-title {
    font-size: 32px;
    white-space: normal;
  }

  .hero-result {
    gap: 20px;
  }

  .hero-result-item {
    padding: 12px 18px;
  }

  .hero-result-item span {
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .hero-main-title {
    font-size: 44px;
  }

  .hero-secondary-title {
    font-size: 26px;
  }

  .hero-logo img {
    height: 500px;
  }

  .container {
    padding: 0 30px;
  }

  .hero-result {
    gap: 15px;
  }

  .hero-result-item {
    padding: 10px 14px;
  }

  .hero-result-icon {
    width: 28px;
    height: 28px;
  }

  .hero-result-item span {
    font-size: 13px;
  }

  .hero-input-methods {
    gap: 40px;
  }

  .hero-method-icon {
    width: 65px;
    height: 65px;
  }

  .hero-method-icon svg {
    width: 36px;
    height: 36px;
  }
}

/* ============================================ */
/* АДАПТИВНОСТЬ (ПЛАНШЕТЫ) */
/* ============================================ */
@media (max-width: 1024px) {
  .hero-main-title {
    font-size: 40px;
    white-space: normal;
  }

  .hero-secondary-title {
    font-size: 24px;
    white-space: normal;
  }

  .hero-logo img {
    height: 400px;
  }

  .hero-content {
    gap: 25px;
  }

  /* Результаты hero - адаптивность для планшетов */
  .hero-result {
    gap: 12px;
    grid-template-columns: repeat(2, auto);
  }

  .hero-result-item {
    padding: 8px 12px;
    gap: 6px;
  }

  .hero-result-icon {
    width: 24px;
    height: 24px;
  }

  .hero-result-item span {
    font-size: 12px;
  }

  .hero-result-divider {
    font-size: 10px;
  }

  .hero-input-methods {
    gap: 30px;
  }

  .hero-method-icon {
    width: 55px;
    height: 55px;
  }

  .hero-method-icon svg {
    width: 30px;
    height: 30px;
  }

  .hero-method-text {
    font-size: 12px;
  }

  .header-logo img {
    height: 34px;
  }

  .header.scrolled .header-logo img {
    height: 28px;
  }

  .nav {
    gap: 20px;
  }

  .nav a {
    font-size: 14px;
  }

  .section-title {
    font-size: 36px;
  }

  .problema-grid,
  .reshenie-grid,
  .keysy-grid,
  .funkcii-grid,
  .otzyvy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tarify-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================ */
/* АДАПТИВНОСТЬ (МАЛЕНЬКИЕ ПЛАНШЕТЫ) */
/* ============================================ */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-logo {
    margin-left: 0;
    order: -1;
  }

  .hero-text {
    align-items: center;
  }

  .hero-input-methods {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--dark-bg-2);
    flex-direction: column;
    padding: 100px 30px;
    transition: right 0.3s ease;
    align-items: flex-start;
    gap: 25px;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    font-size: 18px;
  }

  .hamburger {
    display: flex;
    z-index: 10001;
  }

  .tarify-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
}

/* ============================================ */
/* АДАПТИВНОСТЬ (МОБИЛЬНЫЕ) */
/* ============================================ */
@media (max-width: 767px) {
  .hero {
    padding: 140px 20px 60px;
  }

  .hero-content {
    flex-direction: column;
    gap: 35px;
  }

  .header-logo {
    margin-left: -5px;
  }

  .header-logo img {
    height: 28px;
  }

  .header.scrolled .header-logo img {
    height: 24px;
  }

  .hero-logo {
    margin-top: -15px;
    margin-bottom: -20px;
  }

  .hero-logo img {
    height: 360px;
  }

  .hero-video video {
    width: 100%;
    max-width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .hero-main-title {
    font-size: 36px;
  }

  .hero-secondary-title {
    font-size: 24px;
    margin-bottom: 35px;
  }

  .hero-input-methods {
    gap: 25px;
  }

  .hero-method-icon {
    width: 60px;
    height: 60px;
  }

  .hero-method-icon svg {
    width: 32px;
    height: 32px;
  }

  .hero-method-text {
    font-size: 13px;
    letter-spacing: 0.5px;
  }

  .hero-result {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .hero-result-item {
    padding: 10px 20px;
    gap: 10px;
    justify-content: center;
  }

  .hero-result-item span {
    font-size: 14px;
  }

  .hero-result-icon {
    width: 26px;
    height: 26px;
  }

  .hero-features-line {
    font-size: 16px;
    background: linear-gradient(135deg, #fff3b0 0%, #ffe066 50%, #ffd84d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(255, 216, 77, 0.6));
    padding: 0 10px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-arrow-circle {
    width: 40px;
    height: 40px;
  }

  .hero-arrow-circle svg {
    width: 20px;
    height: 20px;
  }

  .hero-note {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
  }

  .reshenie-grid,
  .keysy-grid,
  .funkcii-grid,
  .tarify-grid {
    grid-template-columns: 1fr;
  }

  /* ===== PROBLEMA - Горизонтальный свайп-слайдер ===== */
  .problema-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -20px;
    padding: 0 20px;
  }

  .problema-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
  }

  .problema-grid::-webkit-scrollbar {
    display: none;
  }

  .problema-card {
    flex: 0 0 85%;
    min-width: 280px;
    scroll-snap-align: center;
  }

  .problema-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .problema-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 216, 77, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .problema-dot.active {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-peach));
    transform: scale(1.2);
  }

  /* ===== ОТЗЫВЫ - Горизонтальный свайп-слайдер ===== */
  .otzyvy-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -20px;
    padding: 0 20px;
  }

  .otzyvy-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
    margin-top: 30px;
  }

  .otzyvy-grid::-webkit-scrollbar {
    display: none;
  }

  .otziv-card {
    flex: 0 0 85%;
    min-width: 280px;
    scroll-snap-align: center;
  }

  .otzyvy-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .otzyvy-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 216, 77, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .otzyvy-dot.active {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-peach));
    transform: scale(1.2);
  }

  /* ===== SMART MENU - 2 колонки с иконками ===== */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: var(--menu-width-mobile);
    height: 100vh;
    background: linear-gradient(180deg, var(--dark-bg-2) 0%, rgba(26, 31, 58, 0.98) 100%);
    flex-direction: column;
    padding: var(--menu-padding-top) 20px 30px;
    transition: right 0.3s ease;
    align-items: stretch;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  }

  .nav.active {
    right: 0;
  }

  /* Контейнер для пунктов меню - 2 колонки */
  .nav-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--menu-gap);
    width: 100%;
  }

  /* Пункты меню с иконками */
  .nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 8px 0;
    transition: all 0.3s ease;
  }

  .nav a:hover {
    color: var(--gold-light);
  }

  /* Иконки в меню */
  .nav-icon {
    font-size: var(--menu-icon-size);
    line-height: 1;
  }

  /* Mini-CTA внутри меню */
  .menu-mini-cta {
    margin-top: 25px;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-peach) 100%);
    color: var(--dark-bg-1);
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 216, 77, 0.3);
  }

  .menu-mini-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 216, 77, 0.4);
  }

  .hamburger {
    display: flex;
    z-index: 10001;
  }

  /* ===== FAB КНОПКА - Floating Action Button ===== */
  .fab-button {
    position: fixed;
    bottom: var(--fab-offset);
    right: var(--fab-offset);
    width: var(--fab-size);
    height: var(--fab-size);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: var(--dark-bg-1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 11px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 216, 77, 0.4);
    animation: fab-pulse var(--fab-pulse-duration) ease-in-out infinite;
    z-index: 999;
    text-align: center;
    line-height: 1.2;
  }

  .fab-button .fab-days {
    font-size: 16px;
    font-weight: 800;
  }

  @keyframes fab-pulse {
    0%, 100% {
      transform: scale(1);
      box-shadow: 0 4px 20px rgba(255, 216, 77, 0.4);
    }
    50% {
      transform: scale(1.05);
      box-shadow: 0 6px 30px rgba(255, 216, 77, 0.6);
    }
  }

  /* Включаем FAB, Mini-CTA и иконки на мобильных */
  .fab-button {
    display: flex;
  }

  .menu-mini-cta {
    display: flex;
  }

  .nav-icon {
    display: inline;
  }

  .final-cta-title {
    font-size: 28px;
    flex-direction: column;
    gap: 15px;
  }

  .final-cta-features {
    flex-direction: column;
    gap: 15px;
  }

  .teksty-case-card {
    padding: 25px;
  }

  .teksty-case-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .teksty-case-title {
    font-size: 20px;
  }

  .teksty-case-stats {
    flex-direction: column;
    gap: 15px;
  }

  .teksty-comparison {
    grid-template-columns: 1fr;
    height: auto;
  }

  .teksty-before {
    border-right: none;
    border-bottom: 3px solid #fee;
    max-height: 300px;
  }

  .teksty-after {
    max-height: 300px;
  }

  .teksty-slider-nav {
    display: none;
  }

  /* Мобильная навигация для teksty - скрыта, т.к. стрелки теперь между До/После */
  .teksty-mobile-nav {
    display: none;
  }

  .teksty-mobile-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 216, 77, 0.4);
    background: rgba(255, 216, 77, 0.1);
    color: var(--gold-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .teksty-mobile-nav-btn:hover,
  .teksty-mobile-nav-btn:active {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-peach));
    border-color: transparent;
    color: var(--dark-bg-1);
    transform: scale(1.1);
  }

  .teksty-mobile-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .teksty-mobile-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 216, 77, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .teksty-mobile-dot.active {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-peach));
    transform: scale(1.2);
  }

  /* Контейнер comparison - позиционирование для кнопок */
  .teksty-comparison {
    position: relative;
  }

  /* Стрелки по центру контейнера (мобильная версия) */
  .teksty-middle-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 0 10px;
    pointer-events: none;
    z-index: 10;
  }

  .teksty-middle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 216, 77, 0.6);
    background: rgba(10, 14, 26, 0.9);
    color: var(--gold-light);
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
  }

  .teksty-middle-btn:active {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-peach));
    border-color: transparent;
    color: var(--dark-bg-1);
    transform: scale(1.1);
  }

  .teksty-slide-header {
    padding: 20px 25px;
  }

  .teksty-slide-title {
    font-size: 22px;
  }

  .teksty-slide-subtitle {
    font-size: 14px;
  }

  .teksty-stats-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px 25px;
  }

  .teksty-improvements {
    padding: 0;
  }

  .teksty-improvements-header {
    padding: 25px 20px;
    gap: 15px;
  }

  .teksty-improvements-header h3 {
    font-size: 18px;
  }

  .teksty-improvements-toggle {
    font-size: 30px;
  }

  .teksty-improvements ul {
    padding: 25px;
  }

  .teksty-improvement-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .teksty-meta {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 25px;
  }

  .teksty-detail-link {
    padding: 20px 25px;
  }

  /* Кнопка "Все кейсы" на мобильных */
  .teksty-all-cases-btn {
    padding: 16px 30px;
    font-size: 16px;
  }

  /* Модалка на мобильных */
  .modal-content {
    padding: 30px 20px;
    width: 95%;
    max-height: 85vh;
  }

  .modal-title {
    font-size: 24px;
  }

  .modal-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .modal-cases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .modal-case-card {
    padding: 25px;
  }

  .modal-close {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}

/* ============================================ */
/* АНИМАЦИИ */
/* ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================ */
/* FAB КНОПКА - скрыта на десктопе */
/* ============================================ */
.fab-button {
  display: none;
}

/* Mini-CTA в меню - скрыт на десктопе */
.menu-mini-cta {
  display: none;
}

/* Иконки в меню - скрыты на десктопе */
.nav-icon {
  display: none;
}
