@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --primary: #7C5CFC;
  --primary-dark: #6344E8;
  --primary-light: #B4A9FF;
  --accent: #00E5DF;
  --accent-dark: #00C4BF;
  --accent-light: #55EFC4;
  --neon-pink: #FF6B9D;
  --neon-blue: #4ECDC4;
  --neon-purple: #C77DFF;
  --dark-1: #06060F;
  --dark-2: #0B0B1A;
  --dark-3: #10102A;
  --dark-4: #16163A;
  --dark-5: #1E1E4A;
  --glass-bg: rgba(16,16,42,0.6);
  --glass-border: rgba(124,92,252,0.12);
  --glass-hover: rgba(124,92,252,0.08);
  --gray-900: #1A1A3E;
  --gray-800: #2A2A5A;
  --gray-700: #3A3A6A;
  --gray-600: #5A5A8A;
  --gray-400: #9A9AC0;
  --gray-300: #C0C0E0;
  --gray-200: #E0E0F0;
  --white: #FFFFFF;
  --danger: #FF6B6B;
  --success: #51CF66;
  --warning: #FFD43B;
  --gradient-primary: linear-gradient(135deg, #7C5CFC 0%, #B4A9FF 50%, #C77DFF 100%);
  --gradient-accent: linear-gradient(135deg, #00E5DF 0%, #55EFC4 100%);
  --gradient-mesh: linear-gradient(135deg, #06060F 0%, #10102A 25%, #0B0B1A 50%, #16163A 75%, #06060F 100%);
  --gradient-glow: radial-gradient(ellipse at center, rgba(124,92,252,0.15) 0%, transparent 70%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
  --shadow-glow-primary: 0 0 40px rgba(124,92,252,0.3), 0 0 80px rgba(124,92,252,0.1);
  --shadow-glow-accent: 0 0 40px rgba(0,229,223,0.3), 0 0 80px rgba(0,229,223,0.1);
  --shadow-neon: 0 0 10px rgba(124,92,252,0.5), 0 0 40px rgba(124,92,252,0.2), 0 0 80px rgba(124,92,252,0.1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius-80: 80px;
  --bg-color-80: #f0f0f0; /* Замените на нужный цвет */
  --space-30: 30px;
  --space-35: 35px;
  --space-50: 50px;  
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark-1);
  background-image: url('/wp-content/uploads/pattern-bg.jpg');
  background-repeat: repeat;
  background-size: 832px 464px;
  background-attachment: fixed;
  color: var(--gray-300);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  animation: bgDrift 120s linear infinite;
}

@keyframes bgDrift {
  0% { background-position: 0 0; }
  100% { background-position: 832px 464px; }
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(124,92,252,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0,229,223,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 50% 80%, rgba(199,125,255,0.05) 0%, transparent 60%),
    rgba(6,6,15,0.7);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
main {
	margin-top: 77px;
}

.section-title {
  position: relative;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-400);
  margin-bottom: 48px;
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-header .section-title {
  margin-bottom: 0;
}

/* ===================== ANIMATED BLOBS ===================== */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(124,92,252,0.2);
  top: -200px;
  right: -100px;
  animation: blobFloat 20s ease-in-out infinite;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: rgba(0,229,223,0.15);
  bottom: -150px;
  left: -100px;
  animation: blobFloat 25s ease-in-out infinite reverse;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: rgba(199,125,255,0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: blobFloat 18s ease-in-out infinite 5s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -50px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(40px, 30px) scale(1.05); }
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(124,92,252,0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-neon);
  color: var(--white);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--dark-1);
  box-shadow: 0 4px 20px rgba(0,229,223,0.3);
  font-weight: 700;
}

.btn-accent:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-glow-accent);
  color: var(--dark-1);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(124,92,252,0.4);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(124,92,252,0.1);
  box-shadow: 0 0 20px rgba(124,92,252,0.2);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-center {
  margin: 50px auto;
  text-align: center;
  display: block;
  min-width: 150px;
}
  }
.btn-lg {
  padding: 20px 48px;
  font-size: 1.05rem;
}

.btn-glow {
  animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(124,92,252,0.4); }
  50% { box-shadow: 0 4px 40px rgba(124,92,252,0.6), 0 0 60px rgba(124,92,252,0.2); }
}

/* ===================== BADGES ===================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.badge-accent {
  background: rgba(0,229,223,0.12);
  color: var(--accent);
  border: 1px solid rgba(0,229,223,0.2);
}

.badge-primary {
  background: rgba(124,92,252,0.12);
  color: var(--primary-light);
  border: 1px solid rgba(124,92,252,0.2);
}

.badge-danger {
  background: rgba(255,107,107,0.12);
  color: var(--danger);
  border: 1px solid rgba(255,107,107,0.2);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,107,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(255,107,107,0); }
}

/* ===================== GLASS CARD ===================== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(124,92,252,0.3) 50%, transparent 100%);
}

/* ===================== ANIMATED BORDER ===================== */
.gradient-border {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: conic-gradient(from var(--angle, 0deg), var(--primary), var(--accent), var(--neon-purple), var(--primary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotateBorder 6s linear infinite;
}

@keyframes rotateBorder {
  to { --angle: 360deg; }
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6,6,15,0.7);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(124,92,252,0.08);
  padding: 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(6,6,15,0.92);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(124,92,252,0.3);
  animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(124,92,252,0.3); }
  50% { box-shadow: 0 0 30px rgba(124,92,252,0.5), 0 0 60px rgba(124,92,252,0.15); }
}

.nav > ul{
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav a {
  color: var(--gray-400);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.nav a:hover, .nav span:hover {
  color: var(--white);
}

.nav a::after, .nav span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: var(--transition);
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(124,92,252,0.5);
}

.nav a:hover::after, .nav span:hover::after {
  width: 100%;
}


.menu-item-has-children {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;       /* Сдвигаем строго под родительский элемент */
    left: 0;
    min-width: 220px; /* Задаем комфортную ширину для подпунктов */
    background-color: #ffffff;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Легкая тень для эффекта глубины */
    border-radius: 6px;
    z-index: 100;    /* Чтобы меню перекрывало нижний контент сайта */
    
    /* Состояние по умолчанию: скрыто и немного опущено вниз для анимации */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

/* 3. Показываем меню при наведении на родительский пункт */
.menu-item-has-children:hover .sub-menu,
.menu-item-has-children:focus-within .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Возвращаем на место */
}

/* 4. Стили для ссылок внутри выпадающего меню */
.sub-menu .menu-item a, .sub-menu .menu-item span {
    display: block;
    padding: 10px 20px;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* 5. Эффект при наведении на ссылку в подменю */
.sub-menu .menu-item a:hover, .sub-menu .menu-item span:hover {
    background-color: #f5f5f7; /* Мягкий серый фон */
    color: #0071e3;            /* Акцентный цвет текста (например, синий) */
}


















.header-phone {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone-info {
  text-align: right;
}

.header-phone a {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
}

.header-phone a:hover {
  color: var(--accent);
}

.header-phone span {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  z-index: 1002;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 76px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('/wp-content/uploads/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroZoom 30s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 30% 20%, rgba(124,92,252,0.15) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 80% 80%, rgba(0,229,223,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 60% 50%, rgba(199,125,255,0.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(6,6,15,0.75) 0%, rgba(6,6,15,0.85) 50%, rgba(6,6,15,0.95) 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,92,252,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,92,252,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.hero-text h1 .gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text h1 .line {
  display: block;
  overflow: hidden;
}

.hero-text h1 .line-inner {
  display: block;
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform: translateY(100%);
}

.hero-text h1 .line-inner:nth-child(1) { animation-delay: 0.2s; }
.hero-text h1 .line-inner:nth-child(2) { animation-delay: 0.4s; }
.hero-text h1 .line-inner:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideUp {
  to { transform: translateY(0); }
}

.hero-text p {
  font-size: 1.15rem;
  color: var(--gray-400);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.8;
  animation: fadeIn 1s ease 0.8s forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeIn 1s ease 1s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  gap: 48px;
  gap: 25px;
  margin-top: 56px;
  animation: fadeIn 1s ease 1.2s forwards;
  opacity: 0;
}

.hero-stat {
  text-align: center;
  position: relative;
}

.hero-stat::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(124,92,252,0.3), transparent);
}

.hero-stat:last-child::after {
  display: none;
}

.hero-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.2s ease 0.6s forwards;
  opacity: 0;
  padding: 30px 50px 30px 60px;
}

.hero-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 44px;
  width: 100%;
  max-width: 440px;
  position: relative;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: var(--transition-slow);
}

.hero-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,92,252,0.4), transparent);
}

.hero-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(124,92,252,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,107,0.12);
  color: var(--danger);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(255,107,107,0.2);
  animation: badgePulse 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.hero-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.hero-card p {
  color: var(--gray-400);
  margin-bottom: 24px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.hero-card-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.hero-card-price .current {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-card-price .old {
  font-size: 1.2rem;
  color: var(--gray-600);
  text-decoration: line-through;
}

.hero-floating-element {
  position: absolute;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  padding: 12px 20px;
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}

.hero-floating-element.el-1 {
  top: -15px;
  right: -10px;
  animation-delay: 0s;
}

.hero-floating-element.el-2 {
  bottom: 30px;
  left: -15px;
  animation-delay: 2s;
}

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

/* ===================== breadcrumbs ===================== */

.breadcrumbs {
    display: flex;
	position: relative;
    padding: 30px 0;
}
.breadcrumbs .breadcrumbs-item{}
.breadcrumbs .breadcrumbs-item a,.breadcrumbs .breadcrumbs-item span{}
.breadcrumbs .breadcrumbs-item .is-current{}

/* ===================== MARQUEE ===================== */
.marquee-section {
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid rgba(124,92,252,0.08);
  border-bottom: 1px solid rgba(124,92,252,0.08);
  background: rgba(124,92,252,0.03);
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-400);
  white-space: nowrap;
}

.marquee-item .dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(124,92,252,0.5);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================== BENEFITS ===================== */
.benefits {
  position: relative;
  overflow: hidden;
}

.benefits .blob {
  opacity: 0.3;
}

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

.benefit-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,92,252,0.3), transparent);
  opacity: 0;
  transition: var(--transition);
}

.benefit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(124,92,252,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.benefit-card:hover {
  border-color: rgba(124,92,252,0.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(124,92,252,0.1);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card:hover::after {
  opacity: 1;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(124,92,252,0.3);
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 32px rgba(124,92,252,0.4);
}

.benefit-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.benefit-card p {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ===================== PROMOS ===================== */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.promo-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  overflow: hidden;
  transition: var(--transition);
}

.promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-card:hover::before {
  transform: scaleX(1);
}

.promo-card::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle at 30% 30%, rgba(124,92,252,0.06) 0%, transparent 50%);
  transition: var(--transition-slow);
}

.promo-card:hover {
  border-color: rgba(124,92,252,0.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), var(--shadow-glow-primary);
}

.promo-card .badge {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.promo-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.promo-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.promo-card .promo-discount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  line-height: 1;
}

.promo-card .btn {
  position: relative;
  z-index: 1;
}

/* ===================== CATALOG ===================== */
.catalog-section {
  position: relative;
  overflow: hidden;
}

.catalog-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(0,229,223,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 20%, rgba(124,92,252,0.05) 0%, transparent 60%);
  pointer-events: none;
}

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

.product-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,92,252,0.3), transparent);
  opacity: 0;
  transition: var(--transition);
}

.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 0;
  background: radial-gradient(ellipse, rgba(124,92,252,0.1) 0%, transparent 70%);
  transition: var(--transition-slow);
}

.product-card:hover {
  border-color: rgba(124,92,252,0.3);
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3), 0 0 40px rgba(124,92,252,0.1);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover::after {
  height: 100%;
}

.product-card-label {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(124,92,252,0.15);
  color: var(--primary-light);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  border: 1px solid rgba(124,92,252,0.2);
  z-index: 2;
}

.product-card-image {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.product-card-image img {
  max-height: 140px;
  object-fit: contain;
  transition: var(--transition);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
}

.product-card:hover .product-card-image img {
  transform: scale(1.08) translateY(-4px);
  filter: drop-shadow(0 16px 24px rgba(124,92,252,0.2));
}

.product-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.product-card-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.ui-corners-inner .product-card-prices {
	grid-template-columns: 1fr;
	}
.product-price-item {
  text-align: center;
  padding: 14px 8px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
}

.product-price-item.accent {
  background: rgba(0,229,223,0.08);
  border-color: rgba(0,229,223,0.15);
}

.product-price-item .price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.product-price-item.accent .price {
  color: var(--accent);
}

.product-price-item .label {
  font-size: 0.7rem;
  color: var(--gray-600);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card .btn {
  width: 100%;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

/* ===================== CTA ===================== */
.cta {
  position: relative;
  overflow: hidden;
}

.cta-box {
  background:
    linear-gradient(135deg, rgba(124,92,252,0.92) 0%, rgba(180,169,255,0.88) 50%, rgba(199,125,255,0.92) 100%),
    url('/wp-content/uploads/cta-bg.jpg') center/cover no-repeat;
  border-radius: var(--radius-xl);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-glow-primary);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100%;
  right: -30%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  animation: ctaFloat 15s ease-in-out infinite;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -80%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  animation: ctaFloat 20s ease-in-out infinite reverse;
}

@keyframes ctaFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.cta-box h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
}

.cta-box p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-box .btn {
  position: relative;
  z-index: 2;
}

.cta-phone {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-phone a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.cta-phone a:hover {
  text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

/* ===================== BUYOUT ===================== */
.buyout-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.buyout-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.buyout-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,229,223,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.buyout-card:hover {
  border-color: rgba(0,229,223,0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), var(--shadow-glow-accent);
}

.buyout-card:hover::before {
  opacity: 1;
}

.buyout-card-image {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.buyout-card-image img {
  max-height: 110px;
  object-fit: contain;
  transition: var(--transition);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.buyout-card:hover .buyout-card-image img {
  transform: scale(1.08);
}

.buyout-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.buyout-card .price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.buyout-card .btn {
  position: relative;
  z-index: 1;
}

/* ===================== DELIVERY ===================== */
.delivery {
  position: relative;
  overflow: hidden;
}

.delivery::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 10% 50%, rgba(124,92,252,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 50%, rgba(0,229,223,0.04) 0%, transparent 60%);
  pointer-events: none;
}

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

.delivery-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.delivery-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,223,0.3), transparent);
  opacity: 0;
  transition: var(--transition);
}

.delivery-card:hover {
  border-color: rgba(0,229,223,0.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(0,229,223,0.1);
}

.delivery-card:hover::before {
  opacity: 1;
}

.delivery-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: rgba(0,229,223,0.08);
  border: 1px solid rgba(0,229,223,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.delivery-card:hover .delivery-card-icon {
  background: rgba(0,229,223,0.15);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0,229,223,0.2);
}
.delivery-card .delivery-card-icon > p {font-size: 30px;}
.delivery-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.delivery-card .price-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.delivery-card p {
  font-size: 0.85rem;
  color: var(--gray-400);
  position: relative;
  z-index: 1;
}

/* ===================== ABOUT ===================== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-text p {
  color: var(--gray-400);
  line-height: 1.9;
  margin-bottom: 18px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
}

.about-feature:hover {
  border-color: rgba(124,92,252,0.25);
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.about-feature:hover::before {
  opacity: 1;
}

.about-feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(124,92,252,0.3);
}

.about-feature h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.6;
}
/* ===================== Contact ===================== */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.contact-text p {
  color: var(--gray-400);
  line-height: 1.9;
  margin-bottom: 18px;
}

.contact-features {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.contact-feature {
  display: flex;
  flex: 1;
  gap: 20px;
  align-items: flex-start;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-feature::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
  transform: scaleX(0);
}

.contact-feature:hover {
  border-color: rgba(124,92,252,0.25);
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.contact-feature:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.contact-feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(124,92,252,0.3);
}

.contact-feature h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.contact-feature p {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.6;
}
/* ===================== FAQ ===================== */
.faq {
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 0%, rgba(124,92,252,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(0,229,223,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(124,92,252,0.2);
}

.faq-item.active {
  border-color: rgba(124,92,252,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2), 0 0 20px rgba(124,92,252,0.05);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 28px;
  background: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.faq-question::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--primary-light);
  transition: var(--transition);
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(124,92,252,0.1);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
  background: rgba(124,92,252,0.2);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--gray-400);
  line-height: 1.8;
  font-size: 0.92rem;
}

/* ===================== REVIEWS ===================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(124,92,252,0.08);
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  border-color: rgba(124,92,252,0.25);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.review-stars span {
  color: var(--warning);
  font-size: 0.9rem;
  text-shadow: 0 0 8px rgba(255,212,59,0.3);
}

.review-card p {
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.review-avatar {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(124,92,252,0.3);
}

.review-author-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

/* ===================== SEO TEXT ===================== */
.seo-text {
  position: relative;
}

.seo-text::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(124,92,252,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.seo-text article {  
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  transition: var(--transition);
}

section.seo-text article {
  margin: 0 auto 30px;
  max-height: 280px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

section.seo-text article::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #000 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

section.seo-text.is-active article::after {
  opacity: 0;
}
section.seo-text.is-active article {
	max-height: none;
}



.seo-text h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.seo-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 40px;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.seo-text p {
  color: var(--gray-400);
  line-height: 1.9;
  margin-bottom: 18px;
}

.seo-text ul, .seo-text ol {
  margin: 20px 0;
  padding-left: 28px;
}

.seo-text ul {
  list-style: none;
}

.seo-text ul li {
  position: relative;
  padding-left: 20px;
}

.seo-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(124,92,252,0.4);
}

.seo-text ol {
  list-style: none;
  counter-reset: seo-counter;
}

.seo-text ol li {
  counter-increment: seo-counter;
  position: relative;
  padding-left: 32px;
}

.seo-text ol li::before {
  content: counter(seo-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: rgba(124,92,252,0.15);
  color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.seo-text li {
  color: var(--gray-400);
  line-height: 1.9;
  margin-bottom: 10px;
}

.seo-text strong {
  font-weight: bold;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--dark-1);
  border-top: 1px solid rgba(124,92,252,0.08);
  padding: 60px 0 36px;
  position: relative;
  z-index: 1;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,92,252,0.3), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col a, .footer-col span {
  display: block;
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-col a:hover, .footer-col span:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(124,92,252,0.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray-700);
}

.footer-age {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
  color: var(--gray-400);
}

.footer-age-badge {
  width: 40px;
  height: 40px;
  border: 2px solid var(--danger);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--danger);
  box-shadow: 0 0 12px rgba(255,107,107,0.2);
}

.footer .logo {
	margin-bottom: 20px;
	display: flex;
	font-size: 20px;
}

.footer .phone {font-weight:700; color: var(--white); font-size: 1.05rem;}




/* ===================== FLOATING BUTTONS ===================== */
.floating-buttons {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.floating-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  transition: var(--transition-spring);
  position: relative;
}

.floating-btn::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.3;
  filter: blur(8px);
  z-index: -1;
}

.floating-btn.phone {
  background: var(--gradient-primary);
  box-shadow: 0 4px 20px rgba(124,92,252,0.4);
}

.floating-btn.whatsapp {
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.floating-btn.telegram {
  background: #0088CC;
  box-shadow: 0 4px 20px rgba(0,136,204,0.3);
}

.floating-btn:hover {
  transform: scale(1.15) translateY(-4px);
  color: var(--white);
}

/* ===================== MODAL ===================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,6,15,0.85);
  backdrop-filter: blur(16px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 52px;
  max-width: 460px;
  width: 100%;
  position: relative;
  overflow: hidden;
  animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,92,252,0.4), transparent);
}

.modal::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(124,92,252,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 1.2rem;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.06);
}

.modal-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  transform: rotate(90deg);
}

.modal h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.modal p {
  color: var(--gray-400);
  margin-bottom: 32px;
  position: relative;
  z-index: 2;

}
.modal form p {
  text-align: center;
  margin-bottom: 10px;
}
.wpcf7-spinner {
	display: block;
	text-align: center;
	margin: auto;
}
.modal input[type="tel"] {
  width: 100%;
  padding: 18px 22px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(124,92,252,0.15);
  border-radius: var(--radius-md);
  color: var(--white);
  color: var(--gray-600);
  
  font-size: 1.05rem;
  margin-bottom: 20px;
  outline: none;
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.modal input[type="tel"]:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(124,92,252,0.15), 0 0 20px rgba(124,92,252,0.1);
  background: rgba(255,255,255,0.06);
}

.modal input[type="tel"]:placeholder {

}
.modal input:placeholder {

}

.phone-mask {
  color: yellow;
  opacity: 1;
}
.phone-mask:placeholder {
  color: #00E5DF  !important;
  opacity: 1;
  position: relative;
}



/* Принудительно показываем placeholder для полей с маской */
.phone-mask::placeholder {
    color: red !important; /* Укажите ваш цвет */
    opacity: 1 !important;
}

/* Если плагин добавляет какой-то класс после инициализации, например .mask-initialized */
.phone-mask.mask-initialized::placeholder {
    color: red !important;
}

.modal .btn {
  position: relative;
  z-index: 2;
}

.swiper {
  width: 100%;       /* Или любая нужная вам ширина, например 1200px */
  max-width: 100%;
  overflow: hidden;  /* ОБЯЗАТЕЛЬНО: обрезает всё, что не помещается в область видимости */
}
.swiper-wrapper {
	height: auto;
    align-content: normal;
    align-items: stretch;	
}
.swiper-slide {
  box-sizing: border-box; /* Чтобы паддинги не раздували слайд */
  height: auto;
  
}






/* ===================== SECTION DIVIDER ===================== */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,92,252,0.15), transparent);
  margin: 0;
  border: none;
}
/* Базовые стили для контейнера-строки (чтобы колонки встали в ряд) 
   Обычно у таких колонок есть родитель, например, <div class="ui-row"> */
.ui-row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}

/* Общие правила для всех колонок */
.ui-col {
  box-sizing: border-box;
  padding-left: 15px;  /* Стандартные отступы между колонками */
  padding-right: 15px;
  width: 100%;         /* По умолчанию на мобильных во всю ширину */
}
/* --- ui-corners --- */
article.ui-corners {
	padding: 20px 50px;
}
section.seo-text article.ui-corners::after {
	content:none;
}
.ui-corners.is-80 {
  border-radius: var(--radius-80);
}
.is-bg-80 {
  background-color: var(--bg-color-80);
}

/* --- ui-corners-inner --- */
.ui-corners-inner {
  padding-top: var(--space-50);
  padding-bottom: var(--space-30);
}
.ui-corners {
	background: var(--glass-bg);
	backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-lg);
	padding: 30px 20px;
	transition: var(--transition);
	margin-bottom: 50px;
}
/* --- ui-col (Grid System) --- */
.ui-col {
  box-sizing: border-box;
  width: 100%;
}

/* Настройки для десктопа (базовые) */
.ui-col-3 { width: 25%; }
.ui-col-5 { width: 41.666%; }

.ui-mx-auto-ph {
	margin: auto;
}
.ui-mx-auto-ph img{

  text-align: center;
}
.product__img{
	display: flex;
    align-items: center;
    justify-content: center;
}



/* --- Медиа-запросы --- */

/* Планшеты (pd) */
@media (max-width: 1024px) {
  .ui-col-9-pd { width: 75%; }
}

/* Мобильные (ph) */
@media (max-width: 767px) {
  .ui-col-6-ph { width: 50%; }
  .ui-col-11-ph { width: 91.666%; }
  
  .ui-mx-auto-ph {
    margin-left: auto;
    margin-right: auto;
  }
  
  .ui-pt-35-ph {
    padding-top: var(--space-35);
  }
}
/* --- Стили для десктопов и экранов побольше --- */
@media (min-width: 769px) {
  /* ui-col-5: занимает 5 колонок из 12 (5 / 12 * 100%) */
  .ui-col-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  /* ui-col-7: занимает 7 колонок из 12 (7 / 12 * 100%) */
  .ui-col-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
}

/* --- Стили для мобильных устройств (Phone-Down) --- */
@media (max-width: 768px) {
  /* ui-col-12-pd: на мобильном перестраивается в полную ширину (12 из 12) */
  .ui-col-12-pd {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* ui-pt-35-pd: Padding Top 35px только на мобильных (чтобы отделить схлопнувшиеся колонки) */
  .ui-pt-35-pd {
    padding-top: 35px !important;
  }
}
/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    display: none;
  }
  .hero-text h1 {
    font-size: 3rem;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .buyout-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  body {
    background-size: 416px 232px;
    background-attachment: scroll;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 36px;
    gap: 16px;
  }

  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 6, 15, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 1001;
    padding: 80px 24px;
  }

  .nav.open {
    display: flex;
  }

  .nav a, .nav span {
    font-size: 1.3rem;
    color: var(--white);
    padding: 8px 0;
  }

  .burger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .hero-text p {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 36px;
  }

  .hero-stat-value {
    font-size: 1.6rem;
  }

  .hero-stat-label {
    font-size: 0.7rem;
  }

  .hero-stat::after {
    right: -12px;
    height: 30px;
  }

  .promos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .promo-card {
    padding: 28px 24px;
  }

  .promo-card .promo-discount {
    font-size: 2.2rem;
  }

  .catalog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .product-card {
    padding: 20px 16px;
  }

  .product-card-image {
    height: 120px;
    margin-bottom: 16px;
  }

  .product-card-image img {
    max-height: 100px;
  }

  .product-card h3 {
    font-size: 0.95rem;
    margin-bottom: 14px;
  }

  .product-card-prices {
    gap: 6px;
    margin-bottom: 14px;
  }

  .product-price-item {
    padding: 10px 6px;
  }

  .product-price-item .price {
    font-size: 0.9rem;
  }

  .product-price-item .label {
    font-size: 0.65rem;
  }

  .product-card .btn {
    padding: 12px 16px;
    font-size: 0.85rem;
  }

  .delivery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .delivery-card {
    padding: 32px 24px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card {
    padding: 28px 22px;
  }

  .buyout-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .buyout-card {
    padding: 24px 16px;
  }

  .buyout-card-image {
    height: 90px;
    margin-bottom: 16px;
  }

  .buyout-card-image img {
    max-height: 80px;
  }

  .buyout-card .price {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .buyout-card .btn {
    padding: 12px 16px;
    font-size: 0.85rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .benefit-card {
    padding: 24px 18px;
  }

  .benefit-icon {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .benefit-card h4 {
    font-size: 0.95rem;
  }

  .benefit-card p {
    font-size: 0.8rem;
  }

  .about-content {
    gap: 36px;
  }

  .about-text h2 {
    font-size: 1.75rem;
  }

  .about-feature {
    padding: 20px;
    gap: 14px;
  }

  .about-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 1.1rem;
  }

  .about-feature h4 {
    font-size: 0.95rem;
  }

  .about-feature p {
    font-size: 0.8rem;
  }

  .cta-box {
    padding: 40px 24px;
    border-radius: var(--radius-lg);
  }

  .cta-box h2 {
    font-size: 1.6rem;
  }

  .cta-box p {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .cta-phone {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .header-phone {
    display: none;
  }

  .marquee-section {
    display: none;
  }

  .floating-buttons {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .modal {
    padding: 36px 24px;
    margin: 16px;
  }

  .modal h3 {
    font-size: 1.3rem;
  }

  .modal input[type="tel"] {
    padding: 16px 18px;
    font-size: 1rem;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 0.9rem;
  }

  .faq-answer-inner {
    padding: 0 20px 20px;
    font-size: 0.85rem;
  }

  .seo-text h1 {
    font-size: 1.6rem;
  }

  .seo-text h2 {
    font-size: 1.25rem;
    margin-top: 28px;
  }

  .seo-text p {
    font-size: 0.9rem;
  }

  .seo-text ul, .seo-text ol {
    padding-left: 20px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 16px 36px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .hero {
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .hero-stats {
    flex-direction: row;
    row-gap: 25px;
    align-items: flex-start;
  }
  .hero-stat {
    flex: 0 0 calc(50% - 25px);
  }
  .hero-stat::after {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .buyout-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .cta-phone {
    font-size: 1.4rem;
  }

  .cta-box h2 {
    font-size: 1.4rem;
  }

  .cta-box {
    padding: 32px 20px;
  }

  .promo-card {
    padding: 24px 20px;
  }

  .review-card {
    padding: 24px 18px;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

  .seo-text h1 {
    font-size: 1.4rem;
  }

  .seo-text h2 {
    font-size: 1.15rem;
  }

  .modal {
    padding: 28px 20px;
  }
}
