/* ==========================================================================
   SPORT GROUPS - BOLD KINETIC DESIGN
   Aggressive sports energy with diagonal sections, particles, and animations
   Supports automatic light/dark theme switching via prefers-color-scheme
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & ROOT SETTINGS - DARK THEME (DEFAULT)
   -------------------------------------------------------------------------- */
:root {
  /* Primary - Electric Orange */
  --primary: #FF4500;
  --primary-dark: #E03D00;
  --primary-light: #FF6B3D;

  /* Accents */
  --accent-yellow: #FFE600;
  --accent-pink: #FF0080;
  --accent-cyan: #00D4FF;

  /* Backgrounds - Dark Theme */
  --bg-body: #0A0A0A;
  --bg-surface: #1A1A2E;
  --bg-surface-2: #12121F;
  --bg-card: rgba(255, 255, 255, 0.08);
  --bg-card-hover: rgba(255, 255, 255, 0.12);

  /* Text - Dark Theme */
  --text-primary: #FFFFFF;
  --text-secondary: #B0B0B0;
  --text-muted: #808080;
  --text-light: #FFFFFF;

  /* Borders - Dark Theme */
  --border-color: rgba(255, 255, 255, 0.1);
  --border-color-hover: rgba(255, 69, 0, 0.3);

  /* Header - Dark Theme */
  --header-bg: rgba(10, 10, 10, 0.8);
  --header-border: rgba(255, 69, 0, 0.2);

  /* Gradients */
  --gradient-fire: linear-gradient(135deg, #FF4500 0%, #FF0080 50%, #FFE600 100%);
  --gradient-cta: linear-gradient(90deg, #FF4500 0%, #FF0080 100%);
  --gradient-hero-bg: radial-gradient(ellipse 800px 600px at 30% 20%, rgba(255, 69, 0, 0.15), transparent 60%),
                      radial-gradient(ellipse 600px 500px at 70% 60%, rgba(255, 0, 128, 0.1), transparent 60%),
                      radial-gradient(ellipse 500px 400px at 50% 80%, rgba(255, 230, 0, 0.08), transparent 60%);
  --gradient-pricing-bg: linear-gradient(180deg, transparent, rgba(255, 69, 0, 0.03), transparent);
  --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  --gradient-card-highlight: linear-gradient(180deg, rgba(255, 69, 0, 0.15), rgba(255, 0, 128, 0.05));

  /* Shadows - Dark Theme */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 30px rgba(255, 69, 0, 0.4);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 69, 0, 0.1);
  --shadow-video: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 69, 0, 0.2);

  /* Cookie Banner - Dark Theme */
  --cookie-bg: var(--bg-surface);
  --cookie-border: rgba(255, 69, 0, 0.2);
  --cookie-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --cookie-btn-secondary-bg: rgba(255, 255, 255, 0.1);
  --cookie-btn-secondary-border: rgba(255, 255, 255, 0.2);

  /* Easing */
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* Spacing Scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 24px;
  --space-12: 32px;
  --space-16: 48px;
  --space-20: 56px;

  /* Border Radius Scale */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;

  /* Animation Timing */
  --duration-fast: 150ms;
  --duration-base: 300ms;
  --duration-slow: 400ms;
  --duration-slower: 600ms;

  /* Icon Sizes */
  --icon-sm: 18px;
  --icon-md: 32px;
  --icon-lg: 48px;

  /* Additional Colors */
  --color-telegram: #0088cc;
  --color-telegram-hover: #00a8e8;
  --color-success: #10B981;
  --color-success-dark: #059669;

  /* Alert Colors - Dark Theme */
  --alert-info-bg: rgba(0, 212, 255, 0.1);
  --alert-info-border: rgba(0, 212, 255, 0.3);
  --alert-info-text: #00D4FF;
  --alert-success-bg: rgba(16, 185, 129, 0.1);
  --alert-success-border: rgba(16, 185, 129, 0.3);
  --alert-success-text: #10B981;
  --alert-warning-bg: rgba(255, 230, 0, 0.1);
  --alert-warning-border: rgba(255, 230, 0, 0.3);
  --alert-warning-text: #FFE600;
  --alert-error-bg: rgba(255, 69, 0, 0.1);
  --alert-error-border: rgba(255, 69, 0, 0.3);
  --alert-error-text: #FF4500;

  /* Breakpoints */
  --breakpoint-sm: 480px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;

  /* Typography */
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Scrollbar */
  --scrollbar-track: #0A0A0A;
  --scrollbar-thumb: var(--primary);
}

/* --------------------------------------------------------------------------
   1.1 LIGHT THEME - Auto-switch based on system preference
   -------------------------------------------------------------------------- */
@media (prefers-color-scheme: light) {
  :root {
    /* Primary colors stay the same for brand consistency */
    --primary: #E03D00;
    --primary-dark: #C53500;
    --primary-light: #FF5722;

    /* Backgrounds - Light Theme */
    --bg-body: #FAFAFA;
    --bg-surface: #FFFFFF;
    --bg-surface-2: #F5F5F5;
    --bg-card: rgba(255, 255, 255, 0.9);
    --bg-card-hover: rgba(255, 255, 255, 1);

    /* Text - Light Theme */
    --text-primary: #1A1A2E;
    --text-secondary: #4A4A5A;
    --text-muted: #6B6B7B;
    --text-light: #FFFFFF;

    /* Borders - Light Theme */
    --border-color: rgba(0, 0, 0, 0.08);
    --border-color-hover: rgba(255, 69, 0, 0.4);

    /* Header - Light Theme */
    --header-bg: rgba(255, 255, 255, 0.9);
    --header-border: rgba(255, 69, 0, 0.15);

    /* Gradients - Light Theme */
    --gradient-hero-bg: radial-gradient(ellipse 800px 600px at 30% 20%, rgba(255, 69, 0, 0.08), transparent 60%),
                        radial-gradient(ellipse 600px 500px at 70% 60%, rgba(255, 0, 128, 0.06), transparent 60%),
                        radial-gradient(ellipse 500px 400px at 50% 80%, rgba(255, 230, 0, 0.05), transparent 60%);
    --gradient-pricing-bg: linear-gradient(180deg, transparent, rgba(255, 69, 0, 0.02), transparent);
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    --gradient-card-highlight: linear-gradient(180deg, rgba(255, 69, 0, 0.08), rgba(255, 0, 128, 0.03));

    /* Shadows - Light Theme */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 30px rgba(255, 69, 0, 0.2);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 30px rgba(255, 69, 0, 0.08);
    --shadow-video: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 40px rgba(255, 69, 0, 0.1);

    /* Cookie Banner - Light Theme */
    --cookie-bg: #FFFFFF;
    --cookie-border: rgba(255, 69, 0, 0.15);
    --cookie-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    --cookie-btn-secondary-bg: #F5F5F5;
    --cookie-btn-secondary-border: rgba(0, 0, 0, 0.1);

    /* Scrollbar - Light Theme */
    --scrollbar-track: #F0F0F0;
    --scrollbar-thumb: var(--primary);

    /* Alert Colors - Light Theme */
    --alert-info-bg: rgba(0, 136, 204, 0.08);
    --alert-info-border: rgba(0, 136, 204, 0.25);
    --alert-info-text: #0077B6;
    --alert-success-bg: rgba(5, 150, 105, 0.08);
    --alert-success-border: rgba(5, 150, 105, 0.25);
    --alert-success-text: #059669;
    --alert-warning-bg: rgba(217, 119, 6, 0.08);
    --alert-warning-border: rgba(217, 119, 6, 0.25);
    --alert-warning-text: #D97706;
    --alert-error-bg: rgba(220, 38, 38, 0.08);
    --alert-error-border: rgba(220, 38, 38, 0.25);
    --alert-error-text: #DC2626;
  }
}

/* --------------------------------------------------------------------------
   1.2 MANUAL LIGHT THEME - Applied via data-theme="light"
   -------------------------------------------------------------------------- */
[data-theme="light"] {
  --primary: #E03D00;
  --primary-dark: #C53500;
  --primary-light: #FF5722;
  --bg-body: #FAFAFA;
  --bg-surface: #FFFFFF;
  --bg-surface-2: #F5F5F5;
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-card-hover: rgba(255, 255, 255, 1);
  --text-primary: #1A1A2E;
  --text-secondary: #4A4A5A;
  --text-muted: #6B6B7B;
  --text-light: #FFFFFF;
  --border-color: rgba(0, 0, 0, 0.08);
  --border-color-hover: rgba(255, 69, 0, 0.4);
  --header-bg: rgba(255, 255, 255, 0.9);
  --header-border: rgba(255, 69, 0, 0.15);
  --gradient-hero-bg: radial-gradient(ellipse 800px 600px at 30% 20%, rgba(255, 69, 0, 0.08), transparent 60%),
                      radial-gradient(ellipse 600px 500px at 70% 60%, rgba(255, 0, 128, 0.06), transparent 60%),
                      radial-gradient(ellipse 500px 400px at 50% 80%, rgba(255, 230, 0, 0.05), transparent 60%);
  --gradient-pricing-bg: linear-gradient(180deg, transparent, rgba(255, 69, 0, 0.02), transparent);
  --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
  --gradient-card-highlight: linear-gradient(180deg, rgba(255, 69, 0, 0.08), rgba(255, 0, 128, 0.03));
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 30px rgba(255, 69, 0, 0.2);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 30px rgba(255, 69, 0, 0.08);
  --shadow-video: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 40px rgba(255, 69, 0, 0.1);
  --cookie-bg: #FFFFFF;
  --cookie-border: rgba(255, 69, 0, 0.15);
  --cookie-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  --cookie-btn-secondary-bg: #F5F5F5;
  --cookie-btn-secondary-border: rgba(0, 0, 0, 0.1);
  --scrollbar-track: #F0F0F0;
}

[data-theme="light"] .site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .button:not(.button-primary) {
  background: rgba(0, 0, 0, 0.08);
  color: var(--text-primary);
  border: 2px solid rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .button:not(.button-primary):hover {
  background: rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   1.3 MANUAL DARK THEME - Applied via data-theme="dark"
   -------------------------------------------------------------------------- */
[data-theme="dark"] {
  --primary: #FF4500;
  --primary-dark: #E03D00;
  --primary-light: #FF6B3D;
  --bg-body: #0A0A0A;
  --bg-surface: #1A1A2E;
  --bg-surface-2: #12121F;
  --bg-card: rgba(255, 255, 255, 0.08);
  --bg-card-hover: rgba(255, 255, 255, 0.12);
  --text-primary: #FFFFFF;
  --text-secondary: #B0B0B0;
  --text-muted: #808080;
  --text-light: #FFFFFF;
  --border-color: rgba(255, 255, 255, 0.1);
  --border-color-hover: rgba(255, 69, 0, 0.3);
  --header-bg: rgba(10, 10, 10, 0.8);
  --header-border: rgba(255, 69, 0, 0.2);
  --gradient-hero-bg: radial-gradient(ellipse 800px 600px at 30% 20%, rgba(255, 69, 0, 0.15), transparent 60%),
                      radial-gradient(ellipse 600px 500px at 70% 60%, rgba(255, 0, 128, 0.1), transparent 60%),
                      radial-gradient(ellipse 500px 400px at 50% 80%, rgba(255, 230, 0, 0.08), transparent 60%);
  --gradient-pricing-bg: linear-gradient(180deg, transparent, rgba(255, 69, 0, 0.03), transparent);
  --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  --gradient-card-highlight: linear-gradient(180deg, rgba(255, 69, 0, 0.15), rgba(255, 0, 128, 0.05));
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 30px rgba(255, 69, 0, 0.4);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 69, 0, 0.1);
  --shadow-video: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 69, 0, 0.2);
  --cookie-bg: var(--bg-surface);
  --cookie-border: rgba(255, 69, 0, 0.2);
  --cookie-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --cookie-btn-secondary-bg: rgba(255, 255, 255, 0.1);
  --cookie-btn-secondary-border: rgba(255, 255, 255, 0.2);
  --scrollbar-track: #0A0A0A;
}

[data-theme="dark"] .site-header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 30px rgba(255, 69, 0, 0.15);
}

[data-theme="dark"] .button:not(.button-primary) {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .button:not(.button-primary):hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary);
  color: var(--text-light);
}

/* --------------------------------------------------------------------------
   2. BASE RESET & TYPOGRAPHY
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-body);
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--text-primary);
}

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
  margin: 0 0 16px;
  color: var(--text-muted);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-yellow);
}

/* --------------------------------------------------------------------------
   3. HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--header-border);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 30px rgba(255, 69, 0, 0.15);
}

@media (prefers-color-scheme: light) {
  .site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  }
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.5));
  transition: filter 0.3s ease;
}

.brand:hover .brand-logo {
  filter: drop-shadow(0 0 20px rgba(255, 69, 0, 0.8));
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.main-nav .nav-list {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  display: inline-block;
  padding: 10px 18px;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  transition: all 0.3s var(--ease-bounce);
}

.main-nav a:hover {
  background: rgba(255, 69, 0, 0.2);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 69, 0, 0.3);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Theme Toggle Button */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s var(--ease-bounce);
  position: relative;
}

.theme-toggle:hover {
  background: rgba(255, 69, 0, 0.2);
  border-color: var(--primary);
}

.theme-icon {
  width: 20px;
  height: 20px;
  color: var(--text-primary);
  position: absolute;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.5) rotate(-90deg);
}

/* Auto theme (default) - show monitor icon */
[data-theme="auto"] .theme-icon-auto,
:root:not([data-theme]) .theme-icon-auto {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Light theme - show sun icon */
[data-theme="light"] .theme-icon-light {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Dark theme - show moon icon */
[data-theme="dark"] .theme-icon-dark {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Burger Button */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s var(--ease-bounce);
  z-index: 110;
}

.burger-btn:hover {
  background: rgba(255, 69, 0, 0.2);
  border-color: var(--primary);
}

.burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
}

/* Burger animation to X */
.burger-btn.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.active .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger-btn.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   4. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  background: var(--bg-body);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
}

/* Hero background effects */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-bg);
  pointer-events: none;
}

/* Animated speed lines */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(90deg, transparent 0%, transparent 48%, rgba(255, 69, 0, 0.03) 50%, transparent 52%, transparent 100%),
    linear-gradient(0deg, transparent 0%, transparent 48%, rgba(255, 0, 128, 0.02) 50%, transparent 52%, transparent 100%);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
  opacity: 0.5;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: transparent;
  box-shadow:
    100px 100px 0 var(--primary),
    200px 200px 0 var(--accent-yellow),
    300px 150px 0 var(--accent-pink),
    400px 300px 0 var(--accent-cyan),
    500px 100px 0 var(--primary),
    600px 250px 0 var(--accent-yellow),
    150px 400px 0 var(--accent-pink),
    250px 500px 0 var(--primary),
    350px 350px 0 var(--accent-cyan),
    450px 450px 0 var(--accent-yellow),
    550px 200px 0 var(--accent-pink),
    650px 400px 0 var(--primary),
    750px 150px 0 var(--accent-yellow),
    850px 350px 0 var(--accent-cyan),
    950px 250px 0 var(--accent-pink),
    1050px 450px 0 var(--primary),
    1150px 100px 0 var(--accent-yellow),
    800px 500px 0 var(--accent-pink);
  animation: particleFloat 25s linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
  50% { opacity: 1; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0.6; }
}

/* Speed lines */
.hero-speed-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-speed-lines::before,
.hero-speed-lines::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 200%;
  left: -50%;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  animation: speedLine 3s linear infinite;
}

.hero-speed-lines::before {
  top: 12%;
  animation-delay: 0s;
}

.hero-speed-lines::after {
  top: 88%;
  animation-delay: 1.5s;
  background: linear-gradient(90deg, transparent, var(--accent-pink), transparent);
}

@keyframes speedLine {
  0% { transform: translateX(-50%); opacity: 0; }
  20% { opacity: 0.8; }
  80% { opacity: 0.8; }
  100% { transform: translateX(50%); opacity: 0; }
}

/* Floating shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  animation: float 8s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
  top: 20%;
  left: 10%;
  width: 60px;
  height: 60px;
  background: var(--gradient-fire);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  animation-delay: 0s;
}

.floating-shape:nth-child(2) {
  top: 60%;
  right: 15%;
  width: 40px;
  height: 40px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation-delay: -2s;
}

.floating-shape:nth-child(3) {
  bottom: 25%;
  left: 20%;
  width: 50px;
  height: 50px;
  background: var(--accent-yellow);
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(5deg); }
  50% { transform: translateY(-25px) rotate(0deg); }
  75% { transform: translateY(-10px) rotate(-5deg); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 7rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 20px;
  animation: textExplode 1s var(--ease-out) forwards;
}

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

@keyframes textExplode {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(50px);
    filter: blur(10px);
  }
  60% {
    transform: scale(1.02) translateY(-5px);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 24px;
  animation: fadeInUp 0.8s var(--ease-out) 0.3s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-out) 0.5s forwards;
  opacity: 0;
}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-bounce);
  position: relative;
  overflow: hidden;
}

.button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.button-primary {
  background: var(--gradient-cta);
  color: var(--text-light);
  box-shadow: 0 8px 30px rgba(255, 69, 0, 0.4);
  animation: pulseGlow 2s ease-in-out infinite;
}

.button-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 69, 0, 0.6);
  color: var(--text-light);
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(255, 69, 0, 0.4);
  }
  50% {
    box-shadow: 0 8px 40px rgba(255, 69, 0, 0.6), 0 0 60px rgba(255, 0, 128, 0.3);
  }
}

.button:not(.button-primary) {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
  animation: none;
}

.button:not(.button-primary):hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary);
  transform: translateY(-4px);
  color: var(--text-light);
}

@media (prefers-color-scheme: light) {
  .button:not(.button-primary) {
    background: rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
    border: 2px solid rgba(0, 0, 0, 0.15);
  }

  .button:not(.button-primary):hover {
    background: rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
    color: var(--primary);
  }
}

/* --------------------------------------------------------------------------
   6. CONTENT & SECTIONS
   -------------------------------------------------------------------------- */
main {
  position: relative;
}

.content {
  background: var(--bg-surface);
  border-radius: 24px;
  padding: 48px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}

/* Page title - h1 inside content on inner pages */
.content > h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: var(--space-8);
  position: relative;
  padding-bottom: var(--space-4);
}

.content > h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-fire);
  border-radius: 2px;
}

/* Section headings inside content */
.content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-transform: uppercase;
  margin-top: var(--space-12);
  margin-bottom: var(--space-6);
  color: var(--text-primary);
}

/* First h2 after h1 doesn't need extra top margin */
.content > h1 + * h2:first-child,
.content > h1 + h2 {
  margin-top: 0;
}

/* Sub-section headings */
.content h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
  color: var(--primary);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-12);
  position: relative;
}

.section-title h2 {
  display: inline-block;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-fire);
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   7. FEATURE GRID
   -------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.feature-card {
  background: var(--gradient-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}

.feature-card.animate-in {
  animation: slideInUp 0.6s var(--ease-out) forwards;
}

/* Stagger delays */
.feature-card:nth-child(1) { animation-delay: 0ms; }
.feature-card:nth-child(2) { animation-delay: 80ms; }
.feature-card:nth-child(3) { animation-delay: 160ms; }
.feature-card:nth-child(4) { animation-delay: 240ms; }
.feature-card:nth-child(5) { animation-delay: 320ms; }
.feature-card:nth-child(6) { animation-delay: 400ms; }
.feature-card:nth-child(7) { animation-delay: 480ms; }
.feature-card:nth-child(8) { animation-delay: 560ms; }
.feature-card:nth-child(9) { animation-delay: 640ms; }
.feature-card:nth-child(10) { animation-delay: 720ms; }

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(40px) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-fire);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-8px) perspective(1000px) rotateX(2deg);
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-card-hover);
}

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

/* Feature Icon */
.feature-icon {
  width: var(--icon-lg);
  height: var(--icon-lg);
  color: var(--primary);
  margin-bottom: var(--space-4);
  stroke-width: 1.5;
  transition: all var(--duration-base) ease;
}

.feature-card:hover .feature-icon {
  color: var(--accent-yellow);
  transform: scale(1.1);
}

.feature-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  color: var(--accent-yellow);
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------------
   8. WEB DEMO SECTION
   -------------------------------------------------------------------------- */
.web-demo-section {
  text-align: center;
  margin: var(--space-20) 0;
  padding: var(--space-16) 0;
  position: relative;
}

.web-demo-section h2 {
  margin-bottom: 16px;
}

.web-demo-section > p {
  font-size: 1.1rem;
  margin-bottom: var(--space-12);
  color: var(--text-muted);
}

.web-demo-showcase {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.web-demo-desktop {
  flex: 0 1 auto;
  max-width: 700px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-video);
  border: 2px solid var(--border-color-hover);
  transition: all 0.4s ease;
}

.web-demo-desktop:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
}

.web-demo-desktop img {
  width: 100%;
  height: auto;
  display: block;
}

.web-demo-mobile {
  flex: 0 0 auto;
  width: 220px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-video);
  border: 2px solid var(--border-color-hover);
  transition: all 0.4s ease;
}

.web-demo-mobile:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
}

.web-demo-mobile img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .web-demo-showcase {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .web-demo-desktop {
    max-width: 100%;
  }

  .web-demo-mobile {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .web-demo-mobile {
    width: 240px;
  }
}

/* --------------------------------------------------------------------------
   8.1 ADMIN DEMO SECTION
   -------------------------------------------------------------------------- */
.admin-demo-section {
  text-align: center;
  margin: var(--space-20) 0;
  padding: var(--space-16) 0;
  position: relative;
}

.admin-demo-section h2 {
  margin-bottom: 16px;
}

.admin-demo-section > p {
  font-size: 1.1rem;
  margin-bottom: var(--space-12);
  color: var(--text-muted);
}

.admin-features {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.admin-feature {
  display: flex;
  align-items: center;
  gap: 32px;
  text-align: left;
}

.admin-feature-reverse {
  flex-direction: row-reverse;
}

.admin-feature-content {
  flex: 0 0 320px;
}

.admin-feature-content h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.admin-feature-icon {
  width: var(--icon-md);
  height: var(--icon-md);
  color: var(--primary);
  stroke-width: 1.5;
}

.admin-feature-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.admin-feature-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-video);
  border: 2px solid var(--border-color-hover);
  transition: all 0.4s ease;
}

.admin-feature-image:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
}

.admin-feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .admin-feature,
  .admin-feature-reverse {
    flex-direction: column;
    text-align: center;
  }

  .admin-feature-content {
    flex: none;
    max-width: 100%;
  }

  .admin-feature-content h3 {
    justify-content: center;
  }

  .admin-features {
    gap: 40px;
  }
}

/* Admin feature cards grid */
.admin-feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.admin-feature-cards .feature-card {
  text-align: left;
}

@media (max-width: 900px) {
  .admin-feature-cards .feature-card {
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   8.2 TELEGRAM DEMO VIDEO SECTION
   -------------------------------------------------------------------------- */
.demo-video-section {
  text-align: center;
  margin: var(--space-20) 0;
  padding: var(--space-16) 0;
  position: relative;
}

.demo-video-section h2 {
  margin-bottom: 16px;
}

.demo-video-section > p {
  font-size: 1.1rem;
  margin-bottom: var(--space-12);
}

.video-container {
  max-width: 400px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-video);
  background: var(--bg-body);
  aspect-ratio: 9 / 19.5;
  border: 2px solid var(--border-color-hover);
  transition: all 0.4s ease;
}

.video-container:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-5px);
}

.demo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --------------------------------------------------------------------------
   9. PRICING SECTION
   -------------------------------------------------------------------------- */
.pricing-section {
  text-align: center;
  margin: 48px 0;
  padding: 48px 0;
  background: linear-gradient(180deg, transparent, rgba(255, 69, 0, 0.03), transparent);
  position: relative;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.3), transparent);
}

.pricing-section h2 {
  margin-bottom: 12px;
}

.pricing-section > p {
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--gradient-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card-hover);
}

.pricing-highlight {
  border-color: var(--primary);
  background: var(--gradient-card-highlight);
  transform: scale(1.02);
}

.pricing-highlight:hover {
  transform: scale(1.02) translateY(-10px);
}

.pricing-badge {
  display: inline-block;
  background: var(--gradient-fire);
  color: var(--text-light);
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.pricing-amount {
  margin: 24px 0;
}

.pricing-amount .price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--primary);
  line-height: 1;
}

.pricing-amount .period {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing-condition {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin: 16px 0;
}

.pricing-trial {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #10B981, #059669);
  color: var(--text-light);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  margin: 20px 0;
  animation: pulseGlow 2s ease-in-out infinite;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  text-align: left;
}

.pricing-features li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
  padding-left: 32px;
  position: relative;
  font-size: 0.95rem;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10B981;
  font-weight: bold;
  font-size: 1.1rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-button {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 32px;
  background: var(--gradient-cta);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s var(--ease-bounce);
}

.pricing-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
  color: var(--text-light);
}

/* --------------------------------------------------------------------------
   10. CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
  text-align: center;
  padding: 48px 24px;
  background: var(--gradient-fire);
  border-radius: 20px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 12px;
  color: var(--text-light);
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .button {
  padding: 16px 32px;
  font-size: 1rem;
}

.cta-buttons .button-primary {
  background: var(--text-light);
  color: var(--primary);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  animation: none;
}

.cta-buttons .button-primary:hover {
  background: var(--text-light);
  color: var(--primary-dark);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.cta-buttons .button:not(.button-primary) {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.cta-buttons .button:not(.button-primary):hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-light);
}

/* --------------------------------------------------------------------------
   10.5. INTEGRATIONS SECTION
   -------------------------------------------------------------------------- */
.integrations-section {
  text-align: center;
  margin: 48px 0;
  padding: 40px 0;
}

.integrations-section h2 {
  margin-bottom: 16px;
}

.integrations-section > p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  color: var(--text-muted);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.integration-card {
  background: var(--gradient-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.integration-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 69, 0, 0.15);
  border-color: var(--primary);
}

.integration-logo {
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 20px;
  border-radius: 10px;
  min-width: 160px;
}

.integration-logo img,
.integration-logo svg {
  height: 100%;
  width: auto;
  max-width: 180px;
}

.integration-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text-light);
}

.integration-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* --------------------------------------------------------------------------
   11. EXAMPLES SECTION
   -------------------------------------------------------------------------- */
.examples-section {
  text-align: center;
  margin: 48px 0;
}

.examples-section h2 {
  margin-bottom: 12px;
}

.examples-section > p {
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.bot-examples {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Example Card */
.example-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: var(--space-8);
  background: var(--gradient-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: all 0.3s var(--ease-bounce);
  min-width: 220px;
}

.example-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.example-icon {
  width: var(--icon-lg);
  height: var(--icon-lg);
  color: var(--primary);
  stroke-width: 1.5;
  transition: all var(--duration-base) ease;
}

.example-card:hover .example-icon {
  color: var(--accent-yellow);
  transform: scale(1.1);
}

.example-logo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  transition: all var(--duration-base) ease;
}

.example-card:hover .example-logo {
  transform: scale(1.1);
}

.link-icon {
  width: var(--icon-sm);
  height: var(--icon-sm);
  stroke-width: 1.5;
  flex-shrink: 0;
}

.example-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.example-bot-username {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.example-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.example-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s var(--ease-bounce);
}

.example-link.telegram {
  background: linear-gradient(135deg, #0088cc, #00a8e8);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.example-link.telegram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.example-link.web {
  background: var(--gradient-cta);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.example-link.web:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
}

/* Legacy bot-link styles (for backwards compatibility) */
.bot-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  background: var(--gradient-card);
  border: 2px solid var(--border-color);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s var(--ease-bounce);
}

.bot-link:hover {
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.15), rgba(255, 0, 128, 0.1));
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  color: var(--text-primary);
}

.bot-icon {
  font-size: 1.8rem;
}

.bot-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   12. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  padding: 32px 0 24px;
  margin-top: 48px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand img {
  align-self: flex-start;
  filter: drop-shadow(0 0 8px rgba(255, 69, 0, 0.3));
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   13. COOKIE CONSENT
   -------------------------------------------------------------------------- */
#cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 420px;
  background: var(--cookie-bg);
  border: 1px solid var(--cookie-border);
  box-shadow: var(--cookie-shadow);
  border-radius: 20px;
  padding: 28px;
  z-index: 9999;
  display: none;
  animation: slideInUp 0.5s var(--ease-out);
}

#cookie-consent-banner.show {
  display: block;
}

.cookie-consent-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-consent-text p {
  margin: 0 0 8px;
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-consent-text p:first-child {
  font-weight: 700;
  font-size: 1.1rem;
}

.cookie-consent-text a {
  color: var(--primary);
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.cookie-btn {
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s var(--ease-bounce);
}

.cookie-btn-accept {
  background: var(--gradient-cta);
  color: var(--text-light);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
}

.cookie-btn-decline {
  background: var(--cookie-btn-secondary-bg);
  color: var(--text-primary);
  border: 1px solid var(--cookie-btn-secondary-border);
}

.cookie-btn-decline:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-color-hover);
}

/* --------------------------------------------------------------------------
   14. UTILITY CLASSES
   -------------------------------------------------------------------------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
}

.animate-on-scroll.animate-in {
  animation: fadeInUp 0.6s var(--ease-out) forwards;
}

.glow-text {
  text-shadow:
    0 0 10px rgba(255, 69, 0, 0.8),
    0 0 20px rgba(255, 69, 0, 0.6),
    0 0 30px rgba(255, 69, 0, 0.4);
}

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

/* --------------------------------------------------------------------------
   14.1 ALERTS
   -------------------------------------------------------------------------- */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin: 20px 0;
  border: 1px solid;
  border-left: 4px solid;
}

.alert-info {
  background: var(--alert-info-bg);
  border-color: var(--alert-info-border);
  color: var(--alert-info-text);
}

.alert-success {
  background: var(--alert-success-bg);
  border-color: var(--alert-success-border);
  color: var(--alert-success-text);
}

.alert-warning {
  background: var(--alert-warning-bg);
  border-color: var(--alert-warning-border);
  color: var(--alert-warning-text);
}

.alert-error {
  background: var(--alert-error-bg);
  border-color: var(--alert-error-border);
  color: var(--alert-error-text);
}

/* --------------------------------------------------------------------------
   14.2 TELEGRAM SETUP PAGE
   -------------------------------------------------------------------------- */
.setup-guide {
  max-width: 800px;
  margin: 0 auto;
}

.step-content {
  margin: 24px 0 48px;
}

.step-content ol {
  line-height: 1.8;
  color: var(--text-secondary);
}

.step-content ol li {
  margin-bottom: 8px;
}

.code-block {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 20px 0;
  position: relative;
}

.code-block pre {
  margin: 0;
  font-family: 'JetBrains Mono', 'Monaco', 'Courier New', monospace;
  font-size: 14px;
  color: var(--text-primary);
  overflow-x: auto;
}

.code-block code {
  background: none;
  padding: 0;
  color: var(--text-primary);
}

.code-block .button-small {
  margin-top: 16px;
}

.commands-description {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.command-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.3s var(--ease-smooth);
}

.command-card:hover {
  border-color: var(--border-color-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.command-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}

.command-card p {
  margin-bottom: 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   14.3 CLIENT REQUEST FORM
   -------------------------------------------------------------------------- */
.request-form {
  max-width: 700px;
  margin: 32px auto;
}

.form-section {
  margin-bottom: 32px;
  padding: 24px;
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.form-section h3 {
  margin-top: 0;
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}

.form-group {
  margin-bottom: 24px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label,
.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  background: var(--bg-surface);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.15);
}

.form-control::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-help {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-error {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--alert-error-text);
}

.form-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.button-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--radius-md);
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s var(--ease-bounce);
}

.button-secondary:hover {
  transform: translateY(-2px);
  background: var(--bg-card-hover);
  border-color: var(--border-color-hover);
  color: var(--text-primary);
}

.messages {
  margin: 16px 0 32px;
}

/* Policies Section */
.policies-section {
  background: linear-gradient(180deg, rgba(255, 69, 0, 0.06), rgba(255, 69, 0, 0.02));
  border-color: rgba(255, 69, 0, 0.15);
}

.form-group-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-group-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--primary);
}

.checkbox-label {
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  cursor: pointer;
  color: var(--text-secondary);
}

.policy-link {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.policy-link:hover {
  color: var(--accent-yellow);
}

/* --------------------------------------------------------------------------
   15. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .site-header {
    padding: 0 16px;
  }

  .header-inner {
    min-height: 64px;
    position: relative;
  }

  .brand-title {
    font-size: 1.2rem;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  /* Burger button visible on mobile */
  .burger-btn {
    display: flex;
  }

  /* Mobile navigation */
  .main-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--header-border);
    padding: 16px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-smooth);
    z-index: 99;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav .nav-list {
    flex-direction: column;
    gap: 8px;
  }

  .main-nav a {
    display: block;
    padding: 14px 20px;
    font-size: 1rem;
    text-align: center;
    border-radius: 12px;
  }

  .main-nav a:hover {
    transform: none;
  }

  .hero {
    min-height: auto;
    padding: 80px 20px 60px;
    clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }

  .hero-buttons {
    flex-direction: column;
    padding: 0 20px;
  }

  .button {
    width: 100%;
    padding: 16px 24px;
  }

  .content {
    padding: 32px 20px;
    margin-top: -40px;
    border-radius: 16px;
  }

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

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

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-highlight {
    transform: none;
  }

  .pricing-highlight:hover {
    transform: translateY(-10px);
  }

  .pricing-amount .price {
    font-size: 2.8rem;
  }

  .cta-section {
    padding: 40px 20px;
    border-radius: 16px;
    margin: 32px 16px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .button {
    width: 100%;
  }

  .bot-examples {
    flex-direction: column;
    padding: 0 16px;
  }

  .bot-link {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    align-items: flex-start;
    width: 100%;
  }

  #cookie-consent-banner {
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    padding: 24px 20px;
  }

  .demo-video-section {
    margin: 40px 0;
    padding: 32px 16px;
  }

  .video-container {
    max-width: 320px;
  }

  .examples-section {
    margin: 40px 0;
  }

  .pricing-section {
    margin: 40px 0;
    padding: 40px 16px;
  }
}

/* --------------------------------------------------------------------------
   16. CMS TOOLBAR COMPATIBILITY
   -------------------------------------------------------------------------- */
.cms-toolbar-expanded .cms-placeholder {
  min-height: 100px;
  border: 2px dashed rgba(255, 69, 0, 0.5);
  border-radius: 12px;
  padding: 16px;
}

/* --------------------------------------------------------------------------
   17. SCROLLBAR STYLING
   -------------------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

/* --------------------------------------------------------------------------
   18. SELECTION STYLING
   -------------------------------------------------------------------------- */
::selection {
  background: var(--primary);
  color: #FFFFFF;
}

::-moz-selection {
  background: var(--primary);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   19. LIVE STATS SECTION
   -------------------------------------------------------------------------- */
.live-stats-section {
  padding: 50px 0 60px;
  margin-bottom: 60px;
  background: linear-gradient(180deg, var(--bg-surface-2) 0%, var(--bg-body) 100%);
  position: relative;
  overflow: hidden;
}

.live-stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(255, 69, 0, 0.1), transparent 70%);
  pointer-events: none;
}

.live-stats-section h2 {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: 2px;
  margin-bottom: 32px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.stat-card {
  text-align: center;
  padding: 24px 20px;
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease-smooth);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-glow);
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 56px);
  line-height: 1;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .live-stats-section {
    padding: 40px 16px;
  }

  .stat-card {
    padding: 16px 12px;
  }

  .stat-number {
    font-size: clamp(28px, 6vw, 40px);
  }

  .stat-label {
    font-size: 11px;
    letter-spacing: 1px;
  }
}

/* --------------------------------------------------------------------------
   20. CLIENTS SECTION
   -------------------------------------------------------------------------- */
.clients-section {
  padding: 48px 0;
  background: var(--bg-body);
}

.clients-section h2 {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.clients-section > p {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.client-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: all 0.3s var(--ease-smooth);
}

.client-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-card-hover);
}

.client-card img {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
}

.client-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

.client-links {
  display: flex;
  gap: 8px;
}

.client-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bg-surface-2);
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.client-link:hover {
  background: var(--primary);
  color: white;
}

.client-link i {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .clients-section {
    padding: 40px 20px;
  }
}

/* --------------------------------------------------------------------------
   21. TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: 48px 0;
  background: var(--bg-body);
}

.testimonials-section h2 {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.testimonials-section > p {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 24px;
  transition: all 0.3s var(--ease-smooth);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-color-hover);
  box-shadow: var(--shadow-card-hover);
}

.testimonial-content {
  position: relative;
  margin-bottom: 16px;
}

.testimonial-quote-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
  opacity: 0.5;
  margin-bottom: 12px;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-section {
    padding: 40px 20px;
  }
}

/* --------------------------------------------------------------------------
   21. SUPPORT SECTION
   -------------------------------------------------------------------------- */
.support-section {
  padding: 48px 0;
  background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-surface-2) 100%);
  text-align: center;
}

.support-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.support-section > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.support-contacts {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.support-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s var(--ease-smooth);
}

.support-link:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  color: var(--primary);
}

.support-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

@media (max-width: 768px) {
  .support-contacts {
    flex-direction: column;
    align-items: center;
  }

  .support-link {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .support-section {
    padding: 40px 20px;
  }
}

/* --------------------------------------------------------------------------
   22. COMPANY SECTION
   -------------------------------------------------------------------------- */
.company-section {
  padding: 48px 0;
  background: var(--bg-surface-2);
  text-align: center;
}

.company-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.company-info {
  max-width: 500px;
  margin: 0 auto;
}

.company-details {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 24px;
}

.company-details h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.company-details p {
  color: var(--text-secondary);
  line-height: 1.8;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}

.company-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .company-section {
    padding: 40px 20px;
  }
}

/* --------------------------------------------------------------------------
   23. FOOTER CONTACTS
   -------------------------------------------------------------------------- */
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: var(--primary);
}

.footer-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .footer-contacts {
    margin-bottom: 16px;
  }
}

/* --------------------------------------------------------------------------
   24. LIVE STATS SECTION
   -------------------------------------------------------------------------- */
.live-stats-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-body) 100%);
  text-align: center;
}

.live-stats-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: 2px;
  margin-bottom: 40px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  transition: all 0.3s var(--ease-smooth);
}

.stat-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

@media (max-width: 768px) {
  .live-stats-section {
    padding: 40px 16px;
  }

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

/* --------------------------------------------------------------------------
   25. CLIENTS SECTION
   -------------------------------------------------------------------------- */
.clients-section {
  padding: 60px 0;
  text-align: center;
}

.clients-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.clients-section > p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.client-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: all 0.3s var(--ease-smooth);
}

.client-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.client-card img {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.1);
}

.client-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1rem;
}

.client-links {
  display: flex;
  gap: 8px;
}

.client-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.client-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.client-link i {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 16px;
  }

  .client-card {
    padding: 16px;
  }

  .client-card img {
    width: 60px;
    height: 60px;
  }
}

/* --------------------------------------------------------------------------
   26. TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: 60px 0;
  text-align: center;
}

.testimonials-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.testimonials-section > p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 28px;
  text-align: left;
  transition: all 0.3s var(--ease-smooth);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: var(--border-color-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.testimonial-content {
  flex: 1;
  position: relative;
}

.testimonial-quote-icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
  opacity: 0.5;
  margin-bottom: 12px;
}

.testimonial-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    padding: 20px;
  }
}

/* --------------------------------------------------------------------------
   27. SUPPORT SECTION
   -------------------------------------------------------------------------- */
.support-section {
  padding: 60px 0;
  text-align: center;
}

.support-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.support-section > p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.support-contacts {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.support-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s var(--ease-smooth);
}

.support-link:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  color: var(--primary);
}

.support-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

@media (max-width: 768px) {
  .support-contacts {
    flex-direction: column;
    padding: 0 16px;
  }

  .support-link {
    justify-content: center;
  }
}
