:root {
    /* 🎨 Основна кольорова схема в стилі AI / Tech */
    --primary-color: #780ca3;        /* Яскравий неоново-фіолетовий — основний акцент */
    --secondary-color: #4361ee;      /* Електричний синій — глибина та енергія */
    --accent-color: #4cc9f0;         /* Бірюзово-блакитний акцент — технологічність */
    --gradient-ai: linear-gradient(135deg, #3a0ca3, #4361ee, #4cc9f0);
    
    --text-dark: #1a1a2e;            /* Темно-графітовий, технологічно строгий */
    --text-light: #ffffff;
    --background-light: #d1e4fd;     /* М’який світло-сірий з блакитним відтінком */
  }
  
  /* 🌐 Базова стилізація */
  body {
    font-family: 'Inter', 'Helvetica', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    padding-top: 56px;
    background-color: var(--background-light);
  }
  
  /* 🔝 Навігація */
  .navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(8px);
  }
  
  /* 🧭 Секції */
  section {
    scroll-margin-top: 56px;
    padding: 6rem 0;
  }
  
  /* 💳 Карточки */
  .card {
    border: none;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(10, 15, 35, 0.1);
    transition: all 0.35s ease;
    overflow: hidden;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(10, 15, 35, 0.15);
  }
  
  /* 🧠 Іконки з анімацією */
  .feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-right: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--accent-color);
  }
  
  /* 💎 Заголовки секцій */
  section h2 {
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    margin-bottom: 3rem;
  }
  
  section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-ai);
    border-radius: 2px;
  }
  
  /* 👨‍💻 Зображення команди */
  img.rounded-circle {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    box-shadow: 0 0 25px rgba(76, 201, 240, 0.3);
  }
  
  /* 💰 Карточки цін */
  .pricing-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }
  
  .pricing-card:hover {
    transform: scale(1.04);
    box-shadow: 0 20px 45px rgba(67,97,238,0.2);
  }
  
  /* 📩 Контактна секція */
  #contact {
    background: var(--gradient-ai);
    color: var(--text-light);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  }
  
  /* ⚙️ Елементи особливостей */
  .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    opacity: 0.9;
    transition: all 0.3s ease;
  }
  
  .feature-item:hover {
    opacity: 1;
    transform: translateX(10px);
  }
  
  /* 📱 Адаптивність */
  @media (max-width: 768px) {
    section {
      padding: 3rem 0;
    }
  
    img.rounded-circle {
      width: 180px;
      height: 180px;
    }
  }
  