    :root {
      --bg: #131313;
      --card-bg: #111113;
      --accent: #ffffff;
      --text-gray: #a1a1aa;
      --border: rgba(255, 255, 255, 0.1);
      --header-h: 80px;
      scroll-behavior: smooth;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    body {
      background-color: var(--bg);
      color: white;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* === ХЕДЕР === */
    header {
      position: fixed;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: 95%;
      max-width: 1200px;
      height: 64px;
      margin-top: 20px;
      background: rgba(15, 15, 15, 0.7);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      border-radius: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 30px;
      z-index: 1000;
      transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    }

    header.visible { top: 0; }
    header.scrolled { width: 100%; top: -20px; border: 1px solid var(--border); border-radius: 20px; background: rgba(5, 5, 5, 0.9); }

    .logo { font-weight: 800; font-size: 20px; letter-spacing: -1px; }

    nav { display: flex; gap: 30px; }
    nav a {
      color: var(--text-gray);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: 0.3s;
    }
    nav a:hover { color: white; }

    /* === СЕКЦІЇ === */
    section {
      padding: 180px 20px;
      max-width: 1100px;
      margin: 0 auto;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease-out;
    }

    section.show { opacity: 1; transform: translateY(0); }

    .hero {
      text-align: center;
      padding-top: 250px;
      padding-bottom: 200px;
    }

.hero h1 {
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 30px;
  
  background: linear-gradient(to bottom, #fff 40%, #555);
  
  background-clip: text; /* Стандарт */
  -webkit-background-clip: text; /* Для Safari i Chrome */
  
  color: transparent; 
  -webkit-text-fill-color: transparent;
}

    .hero p {
      color: var(--text-gray);
      font-size: clamp(16px, 2vw, 20px);
      max-width: 600px;
      margin: 0 auto 40px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 50px;
    }

    .card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      padding: 40px;
      border-radius: 32px;
      transition: 0.4s;
      position: relative;
      overflow: hidden;
    }

    .card:hover {
      border-color: rgba(255,255,255,0.3);
      transform: translateY(-10px);
    }

    .card h3 { font-size: 24px; margin-bottom: 15px; }
    .card p { color: var(--text-gray); font-size: 15px; }

    .table-container {
      background: var(--card-bg);
      border-radius: 32px;
      padding: 40px;
      border: 1px solid var(--border);
      overflow-x: auto;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 500px;
    }

    th { text-align: left; color: var(--text-gray); padding: 20px; font-weight: 400; border-bottom: 1px solid var(--border); }
    td { padding: 20px; border-bottom: 1px solid var(--border); font-weight: 600; }

    .btn {
      background: white;
      color: black;
      padding: 16px 32px;
      border-radius: 100px;
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
      transition: 0.3s;
    }
    .btn:hover { transform: scale(1.05); background: #eee; }

    /* === ФУТЕР === */
    footer {
      padding: 100px 40px 60px;
      border-top: 1px solid var(--border);
      background: #080808;
      margin-top: 100px;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 60px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 60px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 50px;
      margin-bottom: 80px;
    }

    .footer-col h4 {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: white;
      margin-bottom: 25px;
    }

    .footer-col a, .footer-col p {
      color: var(--text-gray);
      text-decoration: none;
      font-size: 15px;
      margin-bottom: 15px;
      display: block;
      transition: 0.3s;
    }

    .footer-col a:hover { color: white; }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.05);
      color: #797979;
      font-size: 13px;
    }

    /* Стиль для посилання розробника (solix) */
    .developer-link {
      color: #797979; /* Колір як у всього тексту знизу */
      text-decoration: underline;
      transition: color 0.3s ease;
    }

    .developer-link:hover {
      color: var(--accent); /* Білий при наведенні */
    }

    /* Панель зв'язку */
    .horizontal-contact {
      position: fixed; top: 50%; right: 0; transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px);
      padding: 40px 12px; writing-mode: vertical-rl; text-align: center;
      border: 1px solid var(--border); border-right: none; border-radius: 20px 0 0 20px;
      cursor: pointer; z-index: 1000; font-weight: 600; letter-spacing: 2px; transition: 0.3s;
    }
    .contact-bar {
      position: fixed; top: 50%; right: -400px; transform: translateY(-50%);
      width: 350px; background: #111113; border: 1px solid var(--border);
      border-radius: 30px 0 0 30px; transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1);
      z-index: 1001; padding: 40px; box-shadow: -20px 0 50px rgba(0,0,0,0.5);
    }
    .contact-bar.active { right: 0; }
    .contact-overlay {
      position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
      z-index: 1000; display: none; opacity: 0; transition: 0.4s;
    }
    .contact-overlay.active { display: block; opacity: 1; }
    .contact-content input, .contact-content textarea {
      width: 100%; background: #1a1a1c; border: 1px solid var(--border); border-radius: 12px;
      padding: 14px; color: white; margin-bottom: 20px; outline: none;
    }
    .contact-content button {
      width: 100%; padding: 16px; background: white; color: black; border: none; border-radius: 12px;
      font-weight: 700; cursor: pointer;
    }

    @media (max-width: 768px) {
      nav { display: none; }
      .footer-header { flex-direction: column; gap: 30px; text-align: center; }
      .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    }

/* === КНОПКА ДЗВІНКА (Зліва) === */
.call-button {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #fff; /* Біла кнопка, щоб виділялася на фоні */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: bottom 0.6s cubic-bezier(0.19, 1, 0.22, 1), transform 0.3s;
}

.call-button svg {
  width: 28px;
  height: 28px;
  fill: #000; /* Чорна іконка для контрасту */
}

.call-button:hover {
  transform: scale(1.1) rotate(15deg);
  background: #eee;
}

/* Робимо так, щоб кнопка зміщувалася ТІЛЬКИ на екранах менше 768px (планшети та телефони) */
@media (max-width: 660px) {
  .call-button.shifted {
    bottom: 160px; /* Позиція над банером на мобільних */
  }
}

/* На дуже маленьких телефонах піднімаємо ще вище, якщо банер стає у два рядки */
@media (max-width: 480px) {
  .call-button.shifted {
    bottom: 210px;
  }
}

/* === КУКІ-БАНЕР === */
.cookie-banner {
  position: fixed;
  bottom: -150px; /* Схований глибше для надійності */
  left: 50%;
  transform: translateX(-50%);
  width: 92%; /* Трохи більше місця на екрані */
  max-width: 450px;
  background: rgba(18, 18, 20, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  padding: 16px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  z-index: 9999; /* Максимальний пріоритет */
  transition: bottom 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.cookie-banner.active {
  /* Враховуємо безпечну зону знизу для нових смартфонів */
  bottom: calc(20px + env(safe-area-inset-bottom)); 
}

.cookie-banner p {
  font-size: 13px;
  color: #ccc;
  line-height: 1.3;
  margin: 0;
  text-align: left;
}

.cookie-close {
  background: white;
  color: black;
  border: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  flex-shrink: 0; /* Щоб кнопка не стискалася */
}

/* Мобільна адаптація */
@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    padding: 20px;
    text-align: center;
    gap: 12px;
  }
  .cookie-banner p {
    text-align: center;
    font-size: 12px;
  }
  .cookie-close {
    width: 100%; /* На весь екран на мобільних */
  }
}

.cookie-banner a {
  color: #ffffff;
  text-decoration: underline;
}

/* Стиль для порожнього поля з помилкою */
.contact-content textarea.pomylka {
    border: 1px solid #ff4d4d !important;
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.2);
    animation: traska 0.3s ease-in-out;
}

/* Анімація трясіння */
@keyframes traska {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Колір тексту підказки при помилці */
.contact-content textarea.pomylka::placeholder {
    color: #ff4d4d;
}