/* CSS Variables */
:root {
    /* AI/Neural Colors */
    --primary-gradient: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    --accent-gradient: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 50%, #3b82f6 100%);
    --neural-gradient: linear-gradient(135deg, #ec4899 0%, #f97316 50%, #eab308 100%);
    --dark-gradient: linear-gradient(135deg, #0f0f23 0%, #1e1b4b 50%, #312e81 100%);
    --surface-gradient: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  
    /* Dark Theme Colors */
    --bg-primary: #0f0f23;
    --bg-secondary: #1e1b4b;
    --bg-tertiary: #312e81;
    --bg-card: rgba(139, 92, 246, 0.1);
    --bg-glass: rgba(30, 27, 75, 0.8);
  
    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-accent: #a855f7;
    --text-muted: #64748b;
  
    /* AI Glow Effects */
    --glow-purple: 0 0 20px rgba(139, 92, 246, 0.3);
    --glow-cyan: 0 0 20px rgba(6, 182, 212, 0.3);
    --glow-pink: 0 0 20px rgba(236, 72, 153, 0.3);
  
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --header-height: 80px;
  
    /* Border Radius */
    --border-radius: 12px;
    --border-radius-large: 20px;
  
    /* Shadows */
    --shadow-small: 0 4px 20px rgba(139, 92, 246, 0.15);
    --shadow-medium: 0 8px 40px rgba(139, 92, 246, 0.2);
    --shadow-large: 0 20px 60px rgba(139, 92, 246, 0.25);
  
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
  }
  
  /* Hero Title Animation */
.hero-title {
  position: relative;
  display: block;
  color: var(--text-primary);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.hero-title .typing-text {
  display: inline-block;
  
  opacity: 1;
  animation: none;
  color: inherit;
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

/* Простая анимация появления */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-title .typing-text {
  animation: fadeIn 1s ease-out forwards;
}

/* Header and Container Fix */
.header {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.container {
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Default Scrollbar */

/* Reset and Base Styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Фикс для iOS */
@supports (-webkit-touch-callout: none) {
  body {
    height: -webkit-fill-available;
  }
}

body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  overscroll-behavior-y: contain;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: linear-gradient(to bottom, #0a0618 0%, #1a1038 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

  
  body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(to bottom, #0a0618 0%, #1a1038 100%);
    min-height: 100vh;
    overflow-x: hidden;
  }
  
  /* Container */
  .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
  }
  
/* Neural Network Background */
  .neural-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Изменено с -1 на 1 */
    opacity: 0.5;
    background: 
      radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 25%),
      radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 30%),
      radial-gradient(circle at 30% 80%, rgba(199, 160, 255, 0.1) 0%, transparent 25%),
      radial-gradient(circle at 70% 70%, rgba(124, 58, 237, 0.1) 0%, transparent 30%);
    pointer-events: none;
  }
  
  #neuralCanvas {
    width: 100%;
    height: 100%;
  }
  
  /* Header */
  header.header {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: var(--header-height) !important;
    background: linear-gradient(180deg, #0a0618 0%, #120a2e 100%) !important;
    
    border-bottom: 1px solid rgba(139, 92, 246, 0.2) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5) !important;
    z-index: 1000 !important;
    transition: var(--transition-medium) !important;
    border-image: none !important;
  }
  
  header.header.scrolled {
    background: rgba(10, 6, 24, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3) !important;
    height: calc(var(--header-height) - 10px) !important;
    backdrop-filter: blur(10px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(10px) saturate(180%) !important;
    transition: transform 0.3s ease, background 0.3s ease !important;
  }
  
  /* Улучшаем обработку касаний на мобильных устройствах */
  @media (hover: none) and (pointer: coarse) {
    /* Улучшаем отзывчивость при касаниях */
    * {
      -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
      -webkit-touch-callout: default;
    }
    
    /* Улучшаем скролл для мобильных */
    html, body {
      height: 100%;
      overflow-y: auto;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      overflow: visible !important;
    }
    
    body {
      -webkit-overflow-scrolling: touch;
      overflow-y: auto;
      overscroll-behavior-y: contain;
      position: relative;
    }
    
    /* Разрешаем выделение текста в полях ввода */
    input, textarea, [contenteditable] {
      -webkit-user-select: text !important;
      user-select: text !important;
    }
  }
  
  /* Убираем белый фон, если он появляется из-за body */
  body {
    background: linear-gradient(to bottom, #0a0618 0%, #1a1038 100%) !important;
  }
  
  

  .header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.6), transparent);
    animation: scanline 8s linear infinite;
  }
  
  @keyframes scanline {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }
  
  .header-content {
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
  
  .logo-text {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(167, 139, 250, 0.4);
    position: relative;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
  }
  
  .nav {
    display: flex;
    gap: 32px;
  }
  
  .nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 12px;
    border-radius: 6px;
    overflow: hidden;
  }
  
  .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.2), transparent);
    transition: 0.5s;
  }
  
  .nav-link:hover::before {
    left: 100%;
  }
  
  .nav-link:hover {
    color: #a78bfa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(167, 139, 250, 0.2);
  }
  
  .nav-link::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-fast);
    box-shadow: var(--glow-purple);
  }
  
  .header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .lang-switcher {
    display: flex;
    background: var(--bg-glass);
    border-radius: 8px;
    padding: 4px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: var(--shadow-small);
  }
  
  .lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 14px;
    font-weight: 500;
  }
  
  .lang-btn.active {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--glow-purple);
  }
  
  .lang-btn:not(.active):hover {
    background: rgba(139, 92, 246, 0.2);
  }
  
  .mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  
  .mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    font-size: 14px;
  }
  
  .btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-small);
    
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
  }
  
  .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }
  
  .btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(102, 126, 234, 0.3);
  }
  
  .btn-outline:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
  }
  
  .btn-large {
    padding: 16px 32px;
    font-size: 16px;
  }
  
  /* Ripple Effect */
  .ripple {
    position: relative;
    overflow: hidden;
  }
  
  .ripple::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
  }
  
  .ripple:active::before {
    width: 300px;
    height: 300px;
  }
  
  /* Hero Section */
  .hero {
    padding: 60px 0 80px;
    background: var(--dark-gradient);
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
  }
  
  .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238B5CF6' fill-opacity='0.3'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 20s ease-in-out infinite;
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .hero-title {
    font-size: 56px;
    font-weight: 800;
    
    margin-bottom: 24px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--glow-purple);
  }
  
  .typing-text {
    display: inline-block;
    animation: typing 3s steps(30) 1s 1 normal both, blink 1s infinite;
  }
  
  @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }
  
  @keyframes blink {
    50% {
      border-color: transparent;
    }
  }
  
  .hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
  }
  
  .hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
  }
  
  .hero-stats {
    display: flex;
    gap: 32px;
  }
  
  .stat {
    text-align: center;
  }
  
  .stat-value {
    font-size: 32px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 4px;
  }
  
  .hero-dashboard {
    position: relative;
    height: 400px;
  }
  
  .dashboard-card {
    position: absolute;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--border-radius-large);
    padding: 24px;
    box-shadow: var(--shadow-medium);
    min-width: 200px;
  }
  
  .dashboard-card:nth-child(1) {
    top: 0;
    right: 0;
  }
  
  .dashboard-card:nth-child(2) {
    top: 120px;
    left: 0;
  }
  
  .dashboard-card:nth-child(3) {
    bottom: 0;
    right: 40px;
  }
  
  .floating {
    animation: floating 3s ease-in-out infinite;
    animation-delay: var(--delay);
  }
  
  @keyframes floating {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }
  
  .card-title {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
  }
  
  .card-status {
    font-size: 12px;
  }
  
  .card-status.success {
    color: #10b981;
  }
  
  .card-trend {
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
  }
  
  .card-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: var(--glow-purple);
  }
  
  /* Section Styles */
  section {
    padding: var(--section-padding);
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Features Section */
  .features {
    background: var(--bg-secondary);
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
  }
  
  .feature-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--border-radius-large);
    padding: 32px;
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
  }
  
  .feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
  }
  
  .feature-card:hover::before {
    left: 100%;
  }
  
  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    border-color: rgba(139, 92, 246, 0.5);
  }
  
  .feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
  }
  
  .feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
  }
  
  .feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
  }
  
  /* Solutions Section */
  .solutions {
    background: var(--bg-primary);
  }
  
  .solutions-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  
  .solution-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--bg-glass);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--border-radius-large);
    padding: 48px;
    box-shadow: var(--shadow-small);
    transition: var(--transition-medium);
  }
  
  .solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(139, 92, 246, 0.4);
  }
  
  .solution-image {
    position: relative;
  }
  
  .solution-placeholder {
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  
  .ecommerce-bg {
    background: var(--accent-gradient);
  }
  
  .banking-bg {
    background: var(--primary-gradient);
  }
  
  .fintech-bg {
    background: var(--neural-gradient);
  }
  
  .solution-icon {
    font-size: 64px;
    opacity: 0.8;
  }
  
  .solution-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
  }
  
  .solution-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
  }
  
  .solution-features {
    list-style: none;
  }
  
  .solution-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 24px;
  }
  
  .solution-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
  }
  
  /* Stats Section */
  .stats {
    background: var(--dark-gradient);
    color: white;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-number {
    font-size: 64px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
  }
  
  .stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
  }
  
  /* More Countries Button */
  .more-countries-wrapper {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  
  .more-countries-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 500;
    color: #a78bfa;
    background: transparent;
    border: 1px solid #a78bfa;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
  }
  
  .more-countries-btn:hover {
    background: rgba(167, 139, 250, 0.1);
    color: #8b5cf6;
    border-color: #8b5cf6;
  }
  

  
  .more-countries-btn svg {
    transition: transform 0.2s ease;
    width: 18px;
    height: 18px;
  }
  
  .more-countries-btn:hover svg {
    transform: translateX(2px);
  }
  
  .more-countries-btn svg path {
    stroke: currentColor;
  }
  
  /* Pricing Section */
  .pricing {
    padding: var(--section-padding);
    position: relative;
    background: var(--bg-secondary);
    overflow: hidden;
  }
  
  .pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.3), transparent);
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 20px 0;
  }
  
  .pricing-card {
    background: rgba(30, 27, 75, 0.5);
    border-radius: 16px;
    padding: 35px 35px 80px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(139, 92, 246, 0.15);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
  }
  
  .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
  }
  
  .pricing-card:hover::before {
    opacity: 1;
  }
  
  .pricing-card.popular {
    border: 1px solid rgba(139, 92, 246, 0.3);
    background: rgba(30, 27, 75, 0.7);
    transform: scale(1.02);
  }
  
  .pricing-card.popular:hover {
    transform: scale(1.02) translateY(-5px);
  }
  
  .country-flag {
    text-align: center;
    margin: 0 auto 15px;
    width: 70px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
  }
  
  .pricing-card:hover .country-flag {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border-color: rgba(139, 92, 246, 0.2);
  }
  
  .country-flag img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
  }
  
  .pricing-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-gradient);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    z-index: 1;
  }
  
  .pricing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
  }
  
  .pricing-price {
    margin-bottom: 32px;
  }
  
  .currency {
    font-size: 24px;
    color: var(--text-secondary);
  }
  
  .amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    text-shadow: var(--glow-purple);
  }
  
  .period {
    font-size: 16px;
    color: var(--text-secondary);
  }
  
  .pricing-features {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .feature-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.03);
  }
  
  .pricing-card:hover .feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.1);
  }
  
  .feature-item.highlight {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.15);
    position: relative;
    overflow: hidden;
  }
  
  .feature-item.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-gradient);
  }
  
  .feature-item.important {
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.2);
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.2); }
    70% { box-shadow: 0 0 0 6px rgba(236, 72, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0); }
  }
  
  .feature-label {
    font-weight: 500;
    color: var(--text-primary);
    opacity: 0.9;
  }
  
  .feature-value {
    text-align: right;
    color: var(--text-primary);
    font-weight: 600;
  }
  
  .feature-item.highlight .feature-value,
  .feature-item.important .feature-value {
    color: #fff;
  }
  
  .pricing-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .pricing-features li:last-child {
    border-bottom: none;
  }
  
  .pricing-card .btn {
    width: 100%;
    margin-top: auto;
    display: block;
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    width: calc(100% - 60px);
  }
  
  /* Contact Section */
  .contact {
    background: var(--bg-primary);
  }
  
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  
  .contact-info {
    margin-top: 32px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
  }
  
  .contact-value {
    display: inline-block;
    transition: all 0.2s ease;
    position: relative;
  }
  
  .contact-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.2s ease;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
  }
  
  .contact-link:hover {
    color: var(--text-accent);
    border-bottom-color: var(--text-accent);
  }
  
  .contact-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: 50%;
  }
  
  .contact-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 4px;
  }
  
  .contact-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
  }
  
  .contact-form {
    background: var(--bg-glass);
    padding: 40px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-small);
    border: 1px solid rgba(139, 92, 246, 0.2);
  }
  
  .form-group {
    position: relative;
    margin-bottom: 24px;
  }
  
  .form-input {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition-fast);
    background: rgba(15, 15, 35, 0.5);
    color: var(--text-primary);
  }
  
  .form-input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: var(--glow-purple);
  }
  
  .form-label {
    position: absolute;
    top: 16px;
    left: 16px;
    color: var(--text-muted);
    transition: var(--transition-fast);
    pointer-events: none;
    transform-origin: left top;
  }
  
  .form-input:focus + .form-label,
  .form-input:not(:placeholder-shown) + .form-label {
    transform: translateY(-32px) scale(0.8);
    color: #8b5cf6;
  }
  
  .form-hint {
    display: block;
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 0.25rem;
    line-height: 1.4;
    opacity: 0.8;
    transition: all 0.2s ease;
  }
  
  .form-group:focus-within .form-hint {
    color: #4a6bff;
  }
  
  /* Анимация появления подсказки */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 0.8; transform: translateY(0); }
  }
  
  .form-group:focus-within .form-hint {
    animation: fadeIn 0.2s ease-out;
  }
  
  /* Стили для валидации */
  .form-input:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #ff4d4f;
  }
  
  .form-input:invalid:not(:focus):not(:placeholder-shown) + .form-label,
  .form-input:invalid:not(:focus):not(:placeholder-shown) ~ .form-hint {
    color: #ff4d4f;
  }
  
  .form-input:valid:not(:placeholder-shown) {
    border-color: #52c41a;
  }
  
  /* Кастомные сообщения об ошибках */
  .form-input:invalid:not(:focus):not(:placeholder-shown) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ff4d4f' viewBox='0 0 12 12'%3E%3Cpath d='M6 1a5 5 0 100 10A5 5 0 006 1zm0 9a4 4 0 110-8 4 4 0 010 8zM5.5 4h1v3h-1V4zm0 4h1v1h-1V8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px 12px;
    padding-right: 2.5rem;
  }
  
  .form-input:valid:not(:placeholder-shown) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2352c41a' viewBox='0 0 12 12'%3E%3Cpath d='M10.28 3.28a.75.75 0 00-1.06-1.06L4.5 6.94l-1.72-1.72a.75.75 0 00-1.06 1.06l2.25 2.25a.75.75 0 001.06 0l5.25-5.25z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px 12px;
    padding-right: 2.5rem;
  }
  
  /* Footer */
  .footer {
    background: var(--dark-gradient);
    color: white;
    padding: 30px 0;
    width: 100%;
    text-align: center;
  }
  
  .footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
  }
  
  .footer-legal {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.5;
  }
  
  .social-links {
    display: flex;
    gap: 16px;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition-fast);
  }
  
  .social-link:hover {
    background: var(--primary-gradient);
    transform: translateY(-2px);
  }
  
  .footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
  
  .footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
  }
  
  .footer-list {
    list-style: none;
  }
  
  .footer-list li {
    margin-bottom: 12px;
  }
  
  .footer-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
  }
  
  .footer-list a:hover {
    color: white;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
  }
  
  .footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
  }
  
  .footer-legal-links {
    display: flex;
    gap: 24px;
  }
  
  .footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-fast);
  }
  
  .footer-legal-links a:hover {
    color: rgba(255, 255, 255, 0.8);
  }
  
  /* Animations */
  [data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  [data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Pricing note */
  .pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    color: #9CA3AF;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    padding: 12px 20px;
    background-color: rgba(156, 163, 175, 0.1);
    border-radius: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .pricing-note svg {
    flex-shrink: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .pricing-grid {
      grid-template-columns: 1fr;
      max-width: 400px;
      margin: 30px auto 0;
      gap: 25px;
      padding: 0 15px;
    }
    
    .pricing-card:last-child {
      max-width: 100%;
    }
    
    .pricing-card:last-child {
      grid-column: 1 / -1;
      max-width: 400px;
      margin: 0 auto;
    }
    
    :root {
      --header-height: 70px;
      --section-padding: 60px 0;
    }
  
    .container {
      padding: 0 16px;
    }
  
    .hero-content {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }
  
    .hero-title {
      font-size: 48px;
    }
  
    .section-title {
      font-size: 40px;
    }
  
    .features-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }
  
    .solution-card {
      grid-template-columns: 1fr;
      gap: 32px;
      padding: 32px;
    }
  
    .contact-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .footer-main {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .footer-links {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }
  }
  
  /* Адаптация для планшетов и небольших ноутбуков (769px - 1024px) */
  @media (min-width: 769px) and (max-width: 1024px) {
    :root {
      --header-height: 75px;
      --section-padding: 80px 30px;
      --border-radius: 18px;
      --container-max-width: 960px;
      --section-gap: 60px;
    }
    
    .hero-stats {
      justify-content: center;
      margin: 0 auto;
    }
    
    /* Базовые стили */
    body {
      font-size: 15px;
      line-height: 1.6;
    }
    
    /* Контейнер */
    .container {
      max-width: var(--container-max-width);
      padding: 0 30px;
      margin: 0 auto;
    }
    
    /* Хедер */
    .header {
      padding: 15px 0;
    }
    
    .header-content {
      padding: 0 15px;
    }
    
    .logo-text {
      font-size: 24px;
    }
    
    .nav-links {
      gap: 20px;
    }
    
    

    .nav-link {
      font-size: 15px;
      padding: 8px 12px;
    }
    
    /* Переключатель языка */
    .language-switcher {
      margin-left: 15px;
    }
    
    .language-option {
      padding: 8px 12px;
      font-size: 14px;
    }
    
    /* Адаптация для узких экранов (949-1024px) */
    @media (min-width: 949px) and (max-width: 1024px) {
      .nav-links {
        gap: 12px;
      }
      
      .nav-link {
        padding: 8px 10px;
        font-size: 14px;
      }
      
      .language-switcher {
        margin-left: 10px;
      }
      
      .language-option {
        padding: 8px 10px;
        font-size: 13px;
      }
      
      .logo-text {
        font-size: 22px;
      }
    }
    
    /* Адаптация для экранов (769-800px) */
    @media (min-width: 769px) and (max-width: 800px) {
      .nav-links {
        gap: 3px;
      }
      
      .nav-link {
        padding: 7px 2px;
        font-size: 11.5px;
        white-space: nowrap;
      }
      
      .language-switcher {
        margin-left: 2px;
      }
      
      .language-option {
        padding: 5px 5px;
        font-size: 11px;
      }
      
      .logo-text {
        font-size: 17px;
      }
      
      .btn {
        padding: 7px 10px;
        font-size: 12px;
        min-width: 100px;
      }
      
      .header-actions {
        gap: 3px;
      }
      
      .header-actions .btn {
        min-width: 80px;
        padding: 7px 8px;
        font-size: 11.5px;
      }
      
      /* Уменьшаем отступы в хедере */
      .header-content {
        padding: 0 8px;
      }
      
      /* Уменьшаем иконки */
      .btn i {
        font-size: 14px;
      }
    }
    
    /* Адаптация для экранов (801-834px) */
    @media (min-width: 801px) and (max-width: 834px) {
      .nav-links {
        gap: 4px;
      }
      
      .nav-link {
        padding: 8px 3px;
        font-size: 12px;
        white-space: nowrap;
      }
      
      .language-switcher {
        margin-left: 3px;
      }
      
      .language-option {
        padding: 6px 6px;
        font-size: 11.5px;
      }
      
      .logo-text {
        font-size: 18px;
      }
      
      .btn {
        padding: 8px 12px;
        font-size: 12.5px;
        min-width: 110px;
      }
      
      .header-actions {
        gap: 4px;
      }
      
      .header-actions .btn {
        min-width: 90px;
        padding: 8px 10px;
      }
      
      /* Уменьшаем отступы в хедере */
      .header-content {
        padding: 0 10px;
      }
    }
    
    /* Адаптация для экранов (835-868px) */
    @media (min-width: 835px) and (max-width: 868px) {
      .nav-links {
        gap: 6px;
      }
      
      .nav-link {
        padding: 8px 4px;
        font-size: 12.5px;
      }
      
      .language-switcher {
        margin-left: 4px;
      }
      
      .language-option {
        padding: 6px 8px;
        font-size: 12px;
      }
      
      .logo-text {
        font-size: 19px;
      }
      
      .btn {
        padding: 9px 14px;
        font-size: 13px;
        min-width: 120px;
      }
      
      .header-actions {
        gap: 6px;
      }
      
      .header-actions .btn {
        min-width: 100px;
      }
    }
    
    /* Адаптация для экранов (869-902px) */
    @media (min-width: 869px) and (max-width: 902px) {
      .nav-links {
        gap: 8px;
      }
      
      .nav-link {
        padding: 8px 6px;
        font-size: 13px;
      }
      
      .language-switcher {
        margin-left: 6px;
      }
      
      .language-option {
        padding: 7px 8px;
        font-size: 12.5px;
      }
      
      .logo-text {
        font-size: 20px;
      }
      
      .btn {
        padding: 10px 16px;
        font-size: 13.5px;
        min-width: 130px;
      }
      
      .header-actions {
        gap: 8px;
      }
    }
    
    /* Адаптация для экранов (903-948px) */
    @media (min-width: 903px) and (max-width: 948px) {
      .nav-links {
        gap: 10px;
      }
      
      .nav-link {
        padding: 8px 8px;
        font-size: 13.5px;
      }
      
      .language-switcher {
        margin-left: 8px;
      }
      
      .language-option {
        padding: 8px 10px;
        font-size: 13px;
      }
      
      .logo-text {
        font-size: 21px;
      }
      
      .btn {
        padding: 12px 18px;
        font-size: 14px;
        min-width: 140px;
      }
    }
    
    /* Герой-секция */
    .hero {
      padding: 60px 0 80px;
    }
    
    .hero-content {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .hero-title {
      font-size: 2.8rem;
      line-height: 1.2;
      margin-bottom: 25px;
    }
    
    .hero-subtitle {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 40px;
    }
    
    /* Кнопки */
    .btn {
      padding: 14px 30px;
      font-size: 15px;
      min-width: 160px;
    }
    
    .hero-buttons {
      gap: 20px;
      justify-content: center;
    }
    
    /* Секции */
    section {
      padding: var(--section-padding) !important;
    }
    
    .section-title {
      font-size: 2.4rem;
      margin-bottom: 1.8rem;
    }
    
    .section-subtitle {
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto 50px;
    }
    
    /* Сетки */
    .features-grid,
    .solutions-grid,
    .pricing-cards,
    .testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
      max-width: 900px;
      margin: 0 auto;
    }
    
    /* Карточки */
    .card,
    .feature-card,
    .pricing-card,
    .testimonial-card {
      margin-bottom: 25px;
    }
    
    /* Футер */
    .footer {
      padding: 70px 0 40px;
    }
    
    .footer-content {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 30px;
    }
    
    .footer-links {
      gap: 25px;
      margin-bottom: 35px;
    }
    
    /* Формы */
    .form-group {
      margin-bottom: 20px;
    }
    
    input,
    textarea,
    select {
      padding: 14px 20px;
      font-size: 15px;
    }
  }
  
  /* Планшеты и небольшие устройства (от 480px до 768px) */
  @media (min-width: 480px) and (max-width: 768px) {
  /* Стили для кнопок героя на планшетах */
  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    gap: 15px;
  }
  
  .hero .btn {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
  }
  
  /* Общие стили для кнопок на планшетах */
  .btn {
    padding: 12px 20px;
    font-size: 15px;
  }
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #0a0618 0%, #120a2e 100%);
  padding: 40px 0 20px;
  position: relative;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  z-index: 100;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.6), transparent);
  animation: scanline 8s linear infinite;
}

.footer-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-description {
  color: var(--text-secondary);
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-links-column h4 {
  color: var(--text-primary);
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
}

.footer-link {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--text-accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(139, 92, 246, 0.1);
}

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

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.1);
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-gradient);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 0 20px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
  
  /* Медиа-запросы для мобильных устройств */
@media (max-width: 768px) {
    :root {
      --header-height: 56px;
      --section-padding: 40px 16px;
      --border-radius: 12px;
    }
    
    /* Предотвращаем горизонтальный скролл */
    .container {
      padding-left: 16px;
      padding-right: 16px;
      max-width: 100%;
      width: 100%;
    }
    
    /* Исправляем ширину контента */
    section, 
    footer {
      padding-left: 16px !important;
      padding-right: 16px !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      width: 100% !important;
      max-width: 100% !important;
    }
    
    /* Исправляем изображения */
    img {
      max-width: 100%;
      height: auto;
    }
    
    /* Убираем горизонтальный скролл у таблиц */
    table {
      display: block;
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    
    /* Исправляем отступы и ширину контейнеров */
    .container {
      padding-left: 16px !important;
      padding-right: 16px !important;
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 !important;
    }
    
    /* Фиксим проблемные элементы */
    .hero-content,
    .features-grid,
    .solutions-grid,
    .pricing-cards,
    .testimonials-grid,
    .stats-grid,
    .cta-content,
    .footer-content {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
      padding-left: 0;
      padding-right: 0;
      max-width: 100% !important;
      overflow: hidden !important;
    }
    
    /* Исправляем ширину и отступы секций */
    section {
      padding: var(--section-padding) !important;
      margin: 0 !important;
      width: 100% !important;
      max-width: 100% !important;
      box-sizing: border-box !important;
    }
    
    /* Исправляем кнопки и интерактивные элементы */
    .btn {
      width: auto;
      min-width: 160px;
      max-width: 100%;
      margin: 8px auto;
      padding: 12px 24px;
      box-sizing: border-box;
      display: inline-flex;
      justify-content: center;
    }
    
    /* Стили для контейнера кнопок в герое */
    .hero-buttons {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      width: 100%;
      max-width: 300px;
      margin: 0 auto;
    }
    
    /* Стили для кнопок в герое */
    .hero .btn {
      width: 100%;
      max-width: 100%;
      margin: 0;
    }
    
    /* Исправляем навигацию */
    .nav-links {
      flex-direction: column;
      align-items: flex-start;
      padding: 16px;
    }
    
    .nav-link {
      display: block;
      text-align: center;
      padding: 8px 30px;
      width: auto;
    }
    
    /* Исправляем карточки и гриды */
    .card,
    .feature-card,
    .pricing-card,
    .testimonial-card {
      width: 100% !important;
      margin: 8px 0 !important;
      max-width: 100% !important;
    }
    
    /* Скрываем горизонтальный скролл для таблиц */
    .table-container {
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    
    /* Предотвращаем масштабирование input и textarea */
    input,
    textarea {
      max-width: 100%;
      box-sizing: border-box;
    }
  
    .header-content {
      padding: 7px 12px; /* Уменьшаем отступы */
    }
  
    .logo-text {
      font-size: 22px; /* Уменьшаем размер логотипа */
    }
  
    .nav {
      display: none !important;
      flex-direction: column;
      position: fixed;
      top: var(--header-height, 60px);
      left: 0;
      right: 0;
      background-color: var(--bg-secondary, #111);
      z-index: 1000;
      padding: 20px;
      align-items: center;
      gap: 20px;
    }
  
    .nav.active {
      display: flex !important;
    }
  
    .mobile-menu-btn {
      display: flex;
    }
  
    .header-actions {
      gap: 12px; /* Уменьшаем расстояние между элементами */
    }
  
    .lang-switcher {
      padding: 2px; /* Уменьшаем padding переключателя */
    }
  
    .lang-btn {
      padding: 6px 8px; /* Уменьшаем padding кнопок языка */
      font-size: 12px;
    }
  
    .lang-btn .lang-text {
      display: none; /* Скрываем текст RU/EN */
    }
  
    .lang-btn .flag {
      font-size: 16px; /* Немного уменьшаем размер флагов */
    }
  
    /* Скрываем кнопку "Начать" только в header на мобильных */
    .header .btn-primary {
      display: none;
    }
  
    .mobile-menu-btn {
      padding: 6px; /* Уменьшаем padding гамбургера */
    }
  
    .mobile-menu-btn span {
      width: 20px; /* Уменьшаем размер полосок гамбургера */
      height: 2px;
    }
  
    .hero {
      padding: calc(var(--header-height) + 40px) 0 60px;
    }
  
    .hero-title {
      font-size: 36px;
    }
  
    .hero-subtitle {
      font-size: 18px;
    }
  
    .hero-buttons {
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
  
    .hero-stats {
      justify-content: center;
      gap: 24px;
      margin-top: 20px;
    }
  
    .section-title {
      font-size: 32px;
    }
  
    .section-subtitle {
      font-size: 18px;
    }
  
    .features-grid {
      grid-template-columns: 1fr;
    }
  
    .feature-card {
      padding: 24px;
    }
  
    .solution-card {
      padding: 24px;
    }
  
    .solution-title {
      font-size: 24px;
    }
  
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }
  
    .stat-number {
      font-size: 48px;
    }
  
    .pricing-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  
    .pricing-card.popular {
      transform: none;
    }
  
    .pricing-card.popular:hover {
      transform: translateY(-5px);
    }
  
    .contact-form {
      padding: 24px;
    }
  
    .footer-links {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  
    .footer-legal {
      flex-direction: column;
      gap: 16px;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    :root {
      --header-height: 52px; /* Еще больше уменьшаем */
    }
  
    .header-content {
      padding: 7px 8px; /* Минимальные отступы */
    }
  
    .logo-text {
      font-size: 20px; /* Еще меньше логотип */
    }
  
    .header-actions {
      gap: 8px; /* Минимальный gap */
    }
  
    .lang-btn {
      padding: 4px 6px; /* Минимальный padding */
    }
  
    .lang-btn .flag {
      width: 18px;
      height: 13px;
    }
  
    .mobile-menu-btn {
      padding: 4px;
    }
  
    .mobile-menu-btn span {
      width: 18px;
    }
  
    .container {
      padding: 0 12px;
    }
  
    .header-actions {
      gap: 8px;
    }
  
    .lang-btn .lang-text {
      display: none;
    }
  
    .btn-text {
      display: none;
    }
  
    .btn-icon {
      display: block;
    }
  
    .hero-title {
      font-size: 28px;
    }
  
    .hero-subtitle {
      font-size: 16px;
    }
  
    .hero-stats {
      flex-direction: column;
      gap: 16px;
    }
  
    .section-title {
      font-size: 28px;
    }
  
    .feature-card {
      padding: 20px;
    }
  
    .feature-title {
      font-size: 20px;
    }
  
    .solution-card {
      padding: 20px;
    }
  
    .stats-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  
    .contact-form {
      padding: 20px;
    }
  }
  
  @media (max-width: 360px) {
    :root {
      --header-height: 52px;
    }
  
    .container {
      padding: 0 8px;
    }
  
    .hero-title {
      font-size: 24px;
    }
  
    .section-title {
      font-size: 24px;
    }
  
    .feature-card,
    .solution-card,
    .contact-form {
      padding: 16px;
    }
  }
  
  /* Loading spinner */
  .btn-loader {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s ease-in-out infinite;
    margin-right: 8px;
    vertical-align: middle;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  
  /* Form states */
  .form-group {
    position: relative;
    margin-bottom: 1.5rem;
  }
  
  .form-label {
    position: absolute;
    left: 16px;
    top: 16px;
    color: var(--text-muted);
    padding: 0 4px;
    pointer-events: none;
  }
  
  .form-input:focus ~ .form-label,
  .form-input:not(:placeholder-shown) ~ .form-label {
    display: none;
  }
  
  .form-input:focus {
    border-color: var(--text-accent);
    box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.2);
    outline: none;
  }
  
  /* Form container */
  .form-container {
    position: relative;
    width: 100%;
  }
  
  /* Success message */
  .form-success-message {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(16, 16, 16, 0.95);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }
  
  .form-success-message.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  .success-icon {
    width: 80px;
    height: 80px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #4ade80;
    margin: 0 auto 20px;
    border: 2px solid rgba(74, 222, 128, 0.2);
  }
  
  .success-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
  }
  
  .success-text {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.5;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .footer-main {
    display: flex !important;
    justify-content: space-between !important;
  }
  
  .footer-links {
    display: flex !important;
    gap: 40px !important;
    flex-wrap: wrap !important;
  }
  
  .footer-column {
    min-width: 160px !important;
  }
  
  /* Планшеты (до 992px) */
  @media (max-width: 992px) {
    .footer-main {
      flex-direction: column !important;
    }
    
    .footer-links {
      margin-top: 30px !important;
      gap: 30px !important;
    }
  }
  
  /* Мобильные (до 768px) */
  @media (max-width: 768px) {
    .footer-links {
      gap: 30px 20px !important;
    }
    
    .footer-column {
      min-width: calc(50% - 20px) !important;
      flex: 1 1 calc(50% - 20px) !important;
    }
  }
  
  /* Маленькие мобильные (до 480px) */
  @media (max-width: 480px) {
    .footer-links {
      flex-direction: column !important;
      gap: 20px !important;
    }
    
    .footer-column {
      width: 100% !important;
      min-width: 100% !important;
    }
  }

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 15px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  border-top: 1px solid var(--text-accent);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.cookie-policy-link {
  color: var(--text-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cookie-policy-link:hover {
  text-decoration: underline;
}

.cookie-btn {
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.cookie-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  
  .cookie-btn {
    width: 100%;
    margin-top: 10px;
  }
}

