/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
  }
  
  /* Обновлены стили Cookie Popup под новый дизайн */
  /* Cookie Popup */
  .cookie-popup {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: rgba(17, 24, 39, 0.98);
    color: white;
    padding: 20px;
    z-index: 9999;
    transition: bottom 0.5s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
  }
  
  .cookie-popup.show {
    bottom: 0;
  }
  
  .cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  @media (max-width: 768px) {
    .cookie-content {
      flex-direction: column;
      text-align: center;
    }
  }
  
  /* Обновлены стили Mobile Menu под новый дизайн */
  /* Mobile Menu */
  .mobile-menu {
    display: none;
    background: white;
    margin-top: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .mobile-menu.active {
    display: block;
  }
  
  @media (min-width: 1024px) {
    .mobile-menu {
      display: none !important;
    }
  }
  
  /* Добавлены анимации для floating badges */
  /* Floating Badge Animations */
  @keyframes float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  @keyframes floatDelayed {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }
  
  .floating-badge {
    animation: float 3s ease-in-out infinite;
  }
  
  .floating-badge-delayed {
    animation: floatDelayed 3.5s ease-in-out infinite;
    animation-delay: 0.5s;
  }
  
  /* Добавлены стили для интерактивных карточек */
  /* Interactive Cards */
  .value-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
  }
  
  .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  
  .service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
  }
  
  .service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  
  .portfolio-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
  }
  
  .portfolio-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  
  .team-card {
    transition: all 0.3s ease;
  }
  
  .testimonial-card {
    transition: all 0.4s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
  }
  
  /* Добавлены стили для статистики */
  /* Stats Items Animation */
  .stats-item {
    transition: transform 0.3s ease;
  }
  
  /* Добавлены стили для timeline */
  /* Timeline Styles */
  .timeline-item {
    position: relative;
  }
  
  /* Анимации */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .fade-in {
    animation: fadeIn 0.6s ease forwards;
  }
  
  /* Кастомные стили для форм */
  input:focus,
  textarea:focus {
    outline: none;
  }
  
  input.border-red-500,
  textarea.border-red-500 {
    border-color: #ef4444 !important;
  }
  
  /* Плавные переходы */
  a,
  button {
    transition: all 0.3s ease;
  }
  
  /* Image hover effects */
  img {
    transition: transform 0.3s ease;
  }
  
  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 12px;
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f5f9;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #a3e635;
    border-radius: 6px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #84cc16;
  }
  
  /* Loading state для формы */
  button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  
  /* Responsive typography */
  @media (max-width: 640px) {
    h1 {
      font-size: 2rem;
    }
  
    h2 {
      font-size: 1.75rem;
    }
  
    h3 {
      font-size: 1.25rem;
    }
  }
  
  /* Accessibility improvements */
  a:focus,
  button:focus {
    outline: 2px solid #a3e635;
    outline-offset: 2px;
  }
  
  /* Print styles */
  @media print {
    header,
    footer,
    .cookie-popup {
      display: none;
    }
  }
  
  /* Добавлены градиентные overlay эффекты */
  /* Gradient Overlays */
  .gradient-overlay {
    position: relative;
  }
  
  .gradient-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .gradient-overlay:hover::before {
    opacity: 1;
  }
  
  /* Добавлены стили для теней карточек */
  /* Card Shadow Effects */
  .shadow-soft {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
  
  .shadow-soft:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  
  /* Добавлены стили для текстовых эффектов */
  /* Text Effects */
  .text-gradient {
    background: linear-gradient(to right, #0f766e, #84cc16);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  /* Smooth Animations */
  @keyframes scaleIn {
    from {
      transform: scale(0.9);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  .scale-in {
    animation: scaleIn 0.5s ease forwards;
  }
  
  /* Backdrop Blur Effects */
  .backdrop-blur-sm {
    backdrop-filter: blur(4px);
  }
  
  .backdrop-blur-md {
    backdrop-filter: blur(8px);
  }
  
  /* Glass Morphism Effect */
  .glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  /* Hover Glow Effect */
  .hover-glow {
    transition: box-shadow 0.3s ease;
  }
  
  .hover-glow:hover {
    box-shadow: 0 0 20px rgba(163, 230, 53, 0.5);
  }
  