body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: white;
}


.logo {
    position: fixed;
    top: 0; /* Переміщуємо логотип у самий верх */
    right: 10px; /* Відступ від лівого краю */
    z-index: 1000; /* Забезпечує видимість поверх інших елементів */
}

.logo a {
    display: inline-block;
    text-decoration: none; /* Прибирає підкреслення посилання */
}

.logo a img {
    width: 170px; /* Адаптуйте розмір логотипу */
    height: auto;
}


/* Стилі для завантажувального екрану */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;  /* Колір фону (можна змінити) */
    z-index: 9999;    /* Поверх усіх інших елементів */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Стилі для відео preloader */
#preloader video {
    max-width: 100%;
    max-height: 100%;
}

/* Клас для приховування preloader після завантаження */
#preloader.hidden {
    display: none;
}


.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.main-menu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: auto;
    overflow: hidden;
    border-radius: 20px;
    text-align: center;
    display: flex; /* Використання Flexbox */
    flex-direction: column; /* Елементи в стовпчик */
    justify-content: center; /* Центрування елементів по вертикалі */
    align-items: center; /* Центрування елементів по горизонталі */
    border: 2px solid black;
}

.main-menu p {
    position: relative;
    z-index: 1;
    margin-top: 100px; /* Відступ від останнього пункту меню */
    font-size: 14px;  /* Розмір тексту */
    color: white;     /* Колір тексту */
}

.main-menu video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.main-menu h1 {
    margin-bottom: 30%;
    font-size: 24px;
    position: relative;
    z-index: 1;
}


.menu-item {
    position: relative;
    z-index: 1;
}

.menu-item {
    display: block;
    width: 70%;
    margin: 10px 0;
    padding: 10px;
    font-size: 22px;
    background: rgba(6, 0, 0, 0.716);
    border: none;
    border-radius: 15px;
    cursor: pointer;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
}


.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: rgba(0, 0, 0, 0.618);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    color: #f0e68c;
    font-size: 24px;
    font-weight: bold;
    z-index: 1000;           /* Зберігаємо, щоб сайдбар був поверх */
    writing-mode: vertical-rl;       /* Якщо потрібне вертикальне написання */
    text-orientation: upright;
}



.sidebar-icons {
    display: flex; /* Вирівнювання в рядок */
    flex-direction: row; /* Розташування іконок горизонтально */
    justify-content: space-evenly; /* Рівномірний розподіл іконок */
    align-items: center; /* Вирівнювання іконок по центру */
    gap: 10px; /* Відстань між іконками */
    position: absolute;
    bottom: 10px; /* Розташування внизу блоку */
    left: 50%; /* Вирівнювання по центру */
    transform: translateX(-50%); /* Центрування по горизонталі */
    width: 90%; /* Ширина блоку іконок */
}

.sidebar-icons a img {
    width: 30px; /* Розмір іконок */
    height: 30px;
    filter: invert(100%); /* Для білих іконок */
    transition: transform 0.2s ease;
}

.sidebar-icons a img:hover {
    transform: scale(1.1); /* Анімація збільшення при наведенні */
}

.sidebar-icons-top {
    display: flex;
    flex-direction: row; /* Горизонтальне розташування іконок */
    justify-content: center; /* Центрування іконок */
    align-items: center; /* Вирівнювання іконок по вертикалі */
    gap: 25px; /* Відстань між іконками */
    position: absolute;
    top: 50px; /* Розташування близько до верху */
    left: 50%; /* Центрування блоку */
    transform: translateX(-50%);
}
.sidebar-icons-bottom {
    display: flex;
    flex-direction: row; /* Горизонтальне розташування іконок */
    justify-content: center; /* Центрування іконок */
    align-items: center; /* Вирівнювання іконок по вертикалі */
    gap: 25px; /* Відстань між іконками */
    position: absolute;
    bottom: 50px; /* Розташування близько до низу */
    left: 50%; /* Центрування блоку */
    transform: translateX(-50%);
}

.sidebar-icons-top a img,
.sidebar-icons-bottom a img {
    width: 50px; /* Розмір іконок */
    height: 50px;
    filter: invert(100%); /* Білий колір іконок */
    transition: transform 0.2s ease;
}

.sidebar-icons-top a img:hover,
.sidebar-icons-bottom a img:hover {
    transform: scale(1.1); /* Анімація збільшення при наведенні */
}

.sidebar-logo {
    text-decoration: none; /* Прибирає підкреслення посилання */
    color: #f0e68c; /* Колір тексту */
    font-weight: bold;
    writing-mode: vertical-rl; /* Вертикальне написання тексту */
    text-orientation: upright;
    padding-right: 30px;
    font-size: 29px;
}

.sidebar-logo:hover {
    color: white; /* Колір тексту при наведенні */
    transition: color 0.3s ease; /* Анімація кольору */
}
/*                                                    LANGUAGE-SWITCHER                                                */ 

.language-switcher {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}
.lang-icon {
    width: 30px;
    height: 30px;
    cursor: pointer;
    border: 2px solid white;
    border-radius: 50%;
    transition: transform 0.3s, border-color 0.3s;
}
.lang-icon:hover {
    transform: scale(1.1);
    border-color: #c1aa68;
}

.lang-btn {
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.lang-btn:hover {
    background-color: #c1aa68;
    color: black;
}
/* Виділення активної мови */
.lang-icon.active {
    border-color: #c1aa68;
    box-shadow: 0 0 10px #c1aa68;
    transform: scale(1.1); /* Легке збільшення */
}


/*                                                          SERVICES                                    */   


.hero-section {
  position: relative;
  text-align: center;
}

#hero-title {
  font-size: clamp(28px, 6vw, 66px);
  color: white;
}

.hero-title-mobile {
  display: none;
}


.hero-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(-100px);
  animation: drop 0.6s ease-out forwards;
}

@keyframes drop {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  80% {
    transform: translateY(10px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Нові затримки — кожна літера через 0.2 сек */
.hero-letter:nth-child(1) { animation-delay: 0.2s; }
.hero-letter:nth-child(2) { animation-delay: 0.4s; }
.hero-letter:nth-child(3) { animation-delay: 0.6s; }
.hero-letter:nth-child(4) { animation-delay: 0.8s; }
.hero-letter:nth-child(5) { animation-delay: 1s; }
.hero-letter:nth-child(6) { animation-delay: 1.2s; }
.hero-letter:nth-child(7) { animation-delay: 1.4s; }
.hero-letter:nth-child(8) { animation-delay: 1.6s; }
.hero-letter:nth-child(9) { animation-delay: 1.8s; }
.hero-letter:nth-child(10) { animation-delay: 2s; }
.hero-letter:nth-child(11) { animation-delay: 2.2s; }
.hero-letter:nth-child(12) { animation-delay: 2.4s; }
.hero-letter:nth-child(13) { animation-delay: 2.6s; }
.hero-letter:nth-child(14) { animation-delay: 2.8s; }
.hero-letter:nth-child(15) { animation-delay: 3s; }
.hero-letter:nth-child(16) { animation-delay: 3.2s; }
.hero-letter:nth-child(17) { animation-delay: 3.4s; }
.hero-letter:nth-child(18) { animation-delay: 3.6s; }
.hero-letter:nth-child(19) { animation-delay: 3.8s; }
.hero-letter:nth-child(20) { animation-delay: 4s; }
.hero-letter:nth-child(21) { animation-delay: 4.2s; }
.hero-letter:nth-child(22) { animation-delay: 4.4s; }
.hero-letter:nth-child(23) { animation-delay: 4.6s; }
.hero-letter:nth-child(24) { animation-delay: 4.8s; }


.hero-section h1 {
    font-size: 66px;
    margin-bottom: 30px;
    text-transform: uppercase;
    margin-top: 15%;
    margin-left: 10%;
    margin-right: 10%;

}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 5%;
}



.hero-box {
  border-radius: 15px;
  perspective: 1000px; /* додаємо перспективу */
  width: 300px;
  height: 250px;
}

.hero-card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
  border-radius: 15px;
}

.hero-box:hover .hero-card {
  transform: rotateY(180deg);
}

.hero-front, .hero-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  overflow: hidden;
  top: 0;
  left: 0;
}

.hero-front {
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 15px;
  z-index: 2;
}

.hero-back {
  background: #000;
  transform: rotateY(180deg);
  z-index: 1;
}

.hero-back iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.hero-front h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #00f0ff;
  text-shadow: 0 0 10px rgba(0,240,255,0.8);
padding-bottom: 25px;}

.hero-front p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.5em;
}



/* Загальний reset (за бажанням) */
* {
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Шапка */
  .header {
    position: fixed;         /* фіксуємо її зверху */
    top: 2%;
    left: 0%;
    width: 100%;
    height: 70px;            /* або auto, під свій дизайн */
    display: flex;
    align-items: center;     /* вирівнювання по вертикалі */
    justify-content: space-between; /* простір між лого, меню і кнопкою */
    padding: 0 20px;         /* внутрішні відступи ліворуч/праворуч */
    z-index: 9999;           /* поверх контенту */
  }
  
  /* Логотип */
  .header__logo img {
    height: 150px; /* змініть під свій розмір */
    width: auto;
    margin-left: 50%;

  }
  
  /* Меню */
  .header__nav ul {
    list-style: none;
    display: flex;
    gap: 30px;  /* відстань між пунктами */
    border: 1px solid white;
    border-radius: 25px;
    padding: 18px;
    background-color: rgba(0, 0, 0, 0.763);
  }
  .header__nav {
    margin-left: 15%;
  }
  
  .header__nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 12px;            /* відступи всередині посилання */  


  /* Прозора рамка за замовчуванням */
  border: 1px solid transparent;

}
  
  .header__nav ul li a:hover {
     /* При наведенні – біла рамка */
  border-color: #fff;
  border-radius: 25px;

    
  }


  
  /* Кнопка */
  .header__btn a {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.763);
    color: white;
    border: 1px solid white;

    text-decoration: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  .header__btn a:hover {
    background-color: #ff7700;
  }
  
  /* Контейнер перемикання мови */
.header__lang {
    position: relative;
  }
  
  /* Кнопка перемикання мови */
  .lang-toggle {
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
    border-radius: 25px;
  }
  
  
  
  /* Випадаюче меню */
  .lang-dropdown {
    position: absolute;
    top: 110%;
    right: 0;
    background-color: #222;
    border: 1px solid #444;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  /* Приховування меню */
  .hidden {
    display: none;
  }
  
  /* Стилі для кнопок мов */
  .lang-option {
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 5px;
    transition: background-color 0.2s;
  }
  
  .lang-option:hover {
    background-color: #444;
  }
  
  /* Підсвічування активної мови */
  .lang-option.active {
    background-color: #666;
  }
  


.fixed-request-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff6600;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.2s;
}

.fixed-request-button:hover {
    background-color: #cc5500;
    transform: scale(1.05);
}


.tariffs-section {
  padding: 50px 5%;
  text-align: center;
}
.services-section {
    text-align: center;

}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
}



.cards-container {
  display: grid;
  gap: 20px;
  align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Окремо для тарифів і послуг */
.tariffs-section .cards-container {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}


/* Єдина стилізація карток */
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 165, 0, 0.6);
  border-radius: 10px;
  padding: 20px;
  color: #fff;
  min-height: 320px; /* однакова висота */
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card h2 {
  color: orange;
  margin-bottom: 10px;
}

.card .details {
  flex-grow: 1; /* вирівнює текст */
  margin-bottom: 10px;
    margin-top: 10px;
    list-style: none;   /* Прибирає маркери */

}
.details li {
padding-top: 7px;
font-size: 16px;

}

.price, .time {
  font-weight: bold;
  margin-bottom: 10px;
}

.btn {
  padding: 10px 15px;
  background: orange;
  border-radius: 5px;
  text-decoration: none;
  color: #000;
  text-align: center;
  margin-top: auto;
}

.btn:hover {
  background: gold;
}




        .services-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 10%;
        }
        
        .service-box {
            background: rgba(0, 0, 0, 0.7);
            border: 1px solid white;
            border-radius: 10px;
            width: 240px;
            height: 350px; 
            padding: 20px;
            display: flex; /* Включаємо Flexbox для управління вмістом */
            flex-direction: column; /* Елементи розташовуються вертикально */
            justify-content: space-between; /* Розподіл простору між елементами */
            text-align: center;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
            margin-right: 40px;
        }
        
        .service-box h2 {
            font-size: 24px;
            margin-bottom: 35px; /* Відступ після заголовка */
            text-transform: uppercase;
        }
        
        .service-box p {
            font-size: 16px;
            line-height: 1.5; /* Для кращої читабельності тексту */
            flex-grow: 1; /* Забезпечує динамічне вирівнювання, щоб кнопка була внизу */
        }
        
        .service-box a {
            display: inline-block;
            margin-top: 20px; /* Відступ від тексту до кнопки */
            padding: 10px 20px;
            background: #c1aa68;
            color: black;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s;
            align-self: center; /* Центрує кнопку горизонтально */
        }
        
        .service-box a:hover {
            background: #a87c4f;
        }

        /* Базові стилі секції причин (як для steps-cards-section) */







.reasons-cards-section  li span {
  margin-right: 8px;
}






  






   /*                                       ЧОМУ  WEB-HUB                                      */


.masterpiece {
  position: relative;
  padding: 20px 60px 60px;
  background: radial-gradient(circle at top, rgba(0,240,255,0.15), rgba(10,15,35,0.9));
  border-radius: 25px;
  max-width: 1100px;
  margin: 100px auto;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0,240,255,0.4);
  border: none;
  height: auto;       /* гнучка висота */
  min-height: 600px;  /* зберігаємо мінімальну висоту */
}


.masterpiece {
  box-shadow: none !important; /* прибирає glow */
  border: none !important; /* прибирає залишки рамки */
  background: transparent; /* або якщо фон задається градієнтом */
}


.why-title {
  text-align: center;
  font-size: 52px;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #00f0ff;
  text-shadow: 0 0 15px rgba(0,240,255,0.8);
}

.why-content {
  font-size: 18px;
  line-height: 1.7;
  color: #ddd;
  position: relative;
  z-index: 2;
  margin-top: 100px;
}
.why-content p {
  margin-bottom: 20px;
}
.why-content strong {
  color: #ffd700;
}
.why-content em {
  color: #ff9900;

}

.why-content p {
  background: rgba(0, 0, 0, 0.45);
  padding: 12px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px); /* ефект скла */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}



   /*                                                    ТЕСТ                                     */




#webhub-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.why-title, .why-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}

.why-title {
  font-size: 52px;
  margin-bottom: 40px;
  text-shadow: 0 0 15px rgba(0,240,255,0.8);
}

.why-content p {
  transition: filter 0.5s ease, opacity 0.5s ease;
}

#dust-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.why-title, .why-content {
  position: relative;
  z-index: 3;
}





   /*                                                    ТЕСТ                                     */








     


   /* Анімація застосовується тільки при переході з кнопки */
body.fade-in {
    opacity: 0;
    transform: scale(0.98);
    animation: fadeIn 1s ease-out forwards;
}

body.fade-out {
    opacity: 1;
    transform: scale(1);
    animation: fadeOut 0.7s ease-in forwards;
}


/* Анімація для зникнення */
@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
    to {
        opacity: 0;
        transform: scale(1.05);
        filter: blur(10px);
    }
}
/* Кінематографічний перехід */
.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: opacity 1s ease-in-out, transform 1.2s ease-in-out;
    z-index: 9999;
}

.transition-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}






.advantages {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0b0f29, #1d2342);
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  max-width: 1200px;
  margin: 40px auto;
}

.advantages h2 {
  text-align: center;
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.advantage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.08);
}

.advantage-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #ffd700;
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-content h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
  color: #fff;
}

.advantage-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ddd;
}

@media screen and (max-width: 768px) {
  .advantage-list {
    grid-template-columns: 1fr;
  }
}










      /*                                     LANDING                                           */   


          
    .main-title {
    text-align: center;
    z-index: 2;
    width: 100%;
    margin-bottom: 20px;  /* Відступ знизу – налаштуйте за потребою */
    min-height: 100vh;           /* Контейнер займає всю висоту екрану */
    display: flex;
    flex-direction: column;      /* Елементи розташовуються вертикально */
    justify-content: flex-end;   /* Вирівнювання вмісту до нижньої частини */
}

.main-title h1 {
    font-size: 72px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #00ffff;
    padding-bottom: 50px;
}


    .pricing-section {
  display: grid;
  grid-template-columns: 1fr repeat(3, 1fr);
  width: 100%;
  overflow-x: auto;
  background: #111;
  color: white;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
}

.plan-title, .feature-title, .plan-feature {
  padding: 12px;
  border-bottom: 1px solid #333;
  text-align: center;
  font-size: 15px;
}



.plan-feature {
  background-color: #222;
}

.plan-title:nth-child(2) {
  background-color: #222;
  font-weight: bold;
}

.pricing-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  overflow-x: auto;
  position: relative;
  margin-left: 6.5%;
}


.plan-title.sticky {
  position: sticky;
  top: 0;
  background-color: #0a0a0a; /* або інший колір фону секції */
  z-index: 5;
  text-align: center;
  padding: 10px;
  border-bottom: 1px solid #444;
  font-size: 18px;
}




@media (max-width: 768px) {
  .pricing-section {
    grid-template-columns: 1fr repeat(3, minmax(100px, 1fr));
    padding: 0;
   margin-right: 10%;
  }
  .pricing-section{
    margin: 0;
    overflow-x: auto;
  max-width: 100%;
  }
  .feature-title {
    text-align: left;
    font-size: 13px;
    padding-left: 10px;
  }
  .plan-feature {
    font-size: 13px;
  }
  .plan-title {
    padding: 6px 4px;
    font-size: 14px;
  }
  .plan-title.sticky {
      font-size: 16px;
  }


    .why-landing-section {
    padding: 40px 10px;
  }
  .why-landing-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .why-landing-card {
    padding: 20px;
  }
  .why-landing-card h2 {
    font-size: 1.1rem;
  }
  .why-landing-card p {
    font-size: 0.9rem;
  }

   .landing-stats-section {
    padding: 40px 10px;
  }
  .landing-stats-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
  .landing-stat-circle {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
  }
  .landing-stat-number {
    font-size: 1.3rem;
  }
  .landing-stat-label {
    font-size: 0.9rem;
  }

    .landing-benefits-section {
    padding: 60px 10px;
  }
  .landing-benefits-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .landing-benefit-inner {
    height: 300px;
  }
  .landing-benefit-img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }
  .landing-benefit-front-title {
    font-size: 1.1rem;
  }
  .landing-benefit-list li {
    font-size: 0.9rem;
  }
}

    
   /*                                                 Чому   лендінг                                               */
    

/* ==== NEW STYLES FOR WHY LANDING ==== */
.why-landing-section {
  background: linear-gradient(135deg, #0a0f1d 0%, #1f2a4b 100%);
  color: #fff;
  padding: 60px 20px;
  margin-top: 10%;
}
.why-landing-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.why-landing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.why-landing-card {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-landing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255,215,0,0.6);
}
.why-landing-card h2 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: #00c6ff;
}
.why-landing-card p {
  font-size: 1rem;
  line-height: 1.6;
}
.why-landing-card--highlight {
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  color: #111;
  border: 1px solid #ffd700;
}
.why-landing-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 1rem;
  color: #ccc;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}


    
    
 /* ==== LANDING STATS SECTION ==== */
.landing-stats-section {
  padding: 60px 20px;
  background: #141a2b;
  color: #eef2f5;
  margin-top: 10%;
}
.landing-stats-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #fcbf49;
}
.landing-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.landing-stat-item {
  position: relative;
  text-align: center;
}
.landing-stat-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: conic-gradient(#fcbf49 0deg, #2e374f 0deg);
  transition: background 0.3s;
}
.landing-stat-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: bold;
  color: #eef2f5;
}
.landing-stat-label {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #cbd6e1;
}


/* ==== LANDING BENEFITS FLIP CARDS ==== */
.landing-benefits-section {
  background: #0d1b2a;
  color: #eef2f5;
  padding: 80px 20px;
  text-align: center;
}
.landing-benefits-title {
  font-size: 2.5rem;
  color: #ffd166;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.landing-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.landing-benefit-card {
  perspective: 1000px;
}
.landing-benefit-inner {
  position: relative;
  width: 100%;
  height: 360px;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}
.landing-benefit-card:hover .landing-benefit-inner {
  transform: rotateY(180deg);
}
/* Front face */
.landing-benefit-front,
.landing-benefit-back {
  position: absolute;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
/* Front styling */
.landing-benefit-front {
  background: rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.landing-benefit-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}
.landing-benefit-front-title {
  font-size: 1.25rem;
  margin: 0;
  color: #06d6a0;
}
/* Back styling */
.landing-benefit-back {
  background: #1f2a4b;
  transform: rotateY(180deg);
  padding: 30px 20px;
}
.landing-benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.landing-benefit-list li {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 10px;
}



        /*                                     BUSINESS-WEBSITE                                           */   

        .business-title {
            font-size: 56px;
            font-weight: bold;
            text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #00ffff;

        }

        .business-title {
    text-align: center;
    z-index: 2;
    width: 100%;
    margin-bottom: 20px;  /* Відступ знизу – налаштуйте за потребою */
    
}

.business-title h1 {
    font-weight: bold;
    text-transform: uppercase;
    color: white;
}

.business-title {
    min-height: 100vh;           /* Контейнер займає всю висоту екрану */
    display: flex;
    flex-direction: column;      /* Елементи розташовуються вертикально */
    justify-content: flex-end;   /* Вирівнювання вмісту до нижньої частини */
}


        .business-card-section {
  background-color: #1a1a26;
  color: #f1f1f1;
  margin-left: 6.5%;
  margin-top: 10%;
}

.business-card-title {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.business-card-subtitle {
  text-align: center;
  font-size: 22px;
  margin-bottom: 40px;
  color: #ccc;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.business-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.business-card-box {
 background-color: #2e374f;
 border-radius: 16px;
  padding: 30px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-card-box:hover {
 transform: translateY(-5px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.business-card-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #ff7f50;}

.business-card-box p {
  font-size: 18px;
  line-height: 1.6;
  color: #f1f1f1;
}

.business-card-box.highlight {
 background-color: #2e374f;
  border-left: 10px solid #007bff;
}

.business-card-footer {
  text-align: center;
  margin-top: 50px;
  font-size: 22px;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #f1f1f1;
}



.business-stats-section {
  background-color: #1a1a26;
  padding: 80px 0;
  color: #f1f1f1;
  text-align: center;
  margin-top: 10%;
  margin-left: 6.5%;
}

.business-stats-title {
  font-size: 42px;
  color: #fcbf49;
  margin-bottom: 50px;
}

.business-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 6.5%;
}

.business-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.business-stat-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(#fcbf49 0deg, #2e374f 0deg);
  margin-bottom: 15px;
}

.business-stat-number {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.business-stat-label {
  font-size: 16px;
  color: #ccc;
}








        /* Стиль для секції site-info-section */
.site-info-section {
    padding: 40px 20px;
    background-color: #0a163bb3; /* Темно-синій фон */
    color: white;
    font-family: Arial, sans-serif;
    line-height: 1.2;
    margin-left: 6%;
}

.site-info-title h1,
.site-suitable-title h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    color: white;
}

.site-info-content, 
.site-suitable-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

.site-info-content ul,
.site-suitable-content ol {
    margin: 20px 0;
    padding-left: 20px;
    list-style: none;
}

.site-info-content ul li::before,
.site-suitable-content ol li {
    content: "• ";
    color: white;
    font-weight: bold;
    margin-right: 10px;
}



.site-suitable-content ol li {
    margin-bottom: 15px;
    font-weight: 500;
}

.site-suitable-content ol li b {
    color: white;
}

.site-info-content p {
    margin-bottom: 15px;
    text-indent: 20px; /* Відступ першого рядка для акуратності */
}

.site-info-section h1, h2 {
    text-transform: uppercase;
    letter-spacing: 1px;
}



/*                                     CORPORATE                                           */


/* ---- CORPORATE CARDS SECTION ---- */
.corporate-cards-section {
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}

.corporate-cards-title {
  font-size: 42px;
  margin-bottom: 70px;
  font-weight: 700;
}

.corporate-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.corporate-card {
  width: 280px;
  height: 380px;
  perspective: 1000px;
}

.corporate-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.corporate-card:hover .corporate-card-inner {
  transform: rotateY(180deg);
}

.corporate-card-front, .corporate-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 20px;
  backface-visibility: hidden;
  border-radius: 20px;
  background-color: #0d193f;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  overflow-y: auto;
}

.corporate-card-front h3 {
  font-size: 22px;
  margin-bottom: 25px;
  color: #ffcb05;
}

.corporate-card-front ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.corporate-card-front li {
  margin-bottom: 10px;
  font-size: 15px;
}

.corporate-card-back {
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.corporate-card-back iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}






.main-title-corporate {
    text-align: center;
    z-index: 2;
    width: 100%;
    margin-bottom: 20px;  /* Відступ знизу – налаштуйте за потребою */
}

.main-title-corporate h1 {
    font-size: 72px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #00ffff;
}

.corporate-section {
    min-height: 100vh;           /* Контейнер займає всю висоту екрану */
    display: flex;
    flex-direction: column;      /* Елементи розташовуються вертикально */
    justify-content: flex-end;   /* Вирівнювання вмісту до нижньої частини */
}

.sub-title-corporate {
    text-align: left;
    z-index: 2;
    width: 100%;
    font-size: 92px;
    margin-left: 7%;
}



.corporate-showcase {
  display: flex;
  justify-content: center; 
  align-items: flex-start;
  perspective: 1200px;
  gap: 40px;
  margin-top: 5%;
  margin-bottom: 5%;
}

.show-card {
  width: 280px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateY360 12s infinite linear;
}

@keyframes rotateY360 {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}

.show-card:hover {
  animation: none !important;
  transform: rotateY(0deg)  !important;
}

.card-inner {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  overflow: hidden;
  gap: 40px;
  
}

.card-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.card-footer {
  margin-top: 12px;
  text-align: center;
}

.card-footer img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
}

/* Адаптивність */
@media screen and (max-width: 768px) {
  .corporate-showcase {
    flex-direction: column;
    align-items: center;
      gap: 5px;
      

  }
  .show-card {
    width: 300px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  .show-card {
    width: 200px;
  }
  .card-footer img {
    width: 50px;
    height: 50px;
  }
}





.results-animated {
  background-color: rgba(0, 0, 0, 0.69);
  padding: 60px 20px;
  color: #fff;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  margin: 40px auto;
}

.results-animated h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 2fr);
  gap: 30px;
}

.result-item {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 30px 20px;
  transition: transform 0.3s ease;
}

.result-item:hover {
  transform: translateY(-5px) scale(1.03);
}

.result-number {
  font-size: 2rem;
  font-weight: bold;
  color: #ffd700;
  display: block;
  margin: 15px 0;
}

.progress-circle {
  --size: 80px;
  --color: #ffd700;
  --track: rgba(255,255,255,0.1);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background:
    conic-gradient(var(--color) calc(var(--value) * 1%), var(--track) 0%);
  margin: 0 auto 10px;
  transition: background 1s ease;
}

.result-item p {
  font-size: 1rem;
  color: #ddd;
}

@media screen and (max-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
}










/*                                     SHOP                                           */

.webhub-advantages {
  background: linear-gradient(135deg, #0f0f1a, #1b1b2f);
  color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  margin-top: 5%;
  margin-left: 6.5%;
}

/* Неоновий ефект для заголовка */
.neon-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #00f0ff;
  text-shadow: 0 0 10px #00f0ff, 0 0 20px #00c0ff, 0 0 40px #0090ff;
  animation: neonPulse 2s infinite alternate;
}

.neon-subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.3rem;
  color: #ccc;
  text-shadow: 0 0 5px rgba(0,240,255,0.7);
}

@keyframes neonPulse {
  from { text-shadow: 0 0 5px #00f0ff, 0 0 10px #00c0ff; }
  to { text-shadow: 0 0 15px #00f0ff, 0 0 30px #00c0ff; }
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 колонки на десктопі */
  gap: 25px;
  padding-left: 8%;
}

@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 колонки на планшеті */
  }
  
}

@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr; /* 1 колонка на телефоні */
  }
}

.adv-card {
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adv-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.adv-card.glow:hover {
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 20px #00f0ff, 0 0 40px #00c0ff;
}

.adv-title {
  color: #00d9ff;
  margin-bottom: 14px;
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 5px;
}

.adv-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.adv-list li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #fff;
}

.adv-list li span {
  margin-right: 10px;
  font-size: 1.1rem;
}

.call-to-action {
  text-align: center;
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.cta-btn {
  background: linear-gradient(135deg, #00f0ff, #00c0ff);
  color: #0f0f1a;
  padding: 14px 32px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0,240,255,0.6);
}

.cta-btn:hover {
  background: linear-gradient(135deg, #00c0ff, #00f0ff);
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0,240,255,0.9);
}













/*                                     CONTACTS                                           */





/* contacts.css */

/* Header */
.custom-contacts-header {
    background-color: #000;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  
  .custom-contacts-logo a {
    font-size: 1.8em;
    font-weight: bold;
    text-decoration: none;
    color: white;
  }
  
  .custom-contacts-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  .custom-contacts-nav ul li {
    margin: 0 15px;
  }
  
  .custom-contacts-nav ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
  }
  
  .custom-contacts-nav ul li a.active,
  .custom-contacts-nav ul li a:hover {
    color: #fff;
  }
  
  .custom-contacts-lang {
    font-size: 0.9em;
  }
  
  /* Hero Section */
  .custom-contacts-hero {
    position: relative;
    height: 50vh;
    background: url('img/handshake_converted.jpg') no-repeat center center;
    background-size: auto; /* Зображення буде масштабуватись до 90% ширини контейнера */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .custom-contacts-hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
  }
  
  .custom-contacts-hero-overlay h1 {
    font-size: 3em;
    margin: 0;
    color: white;
  }
  
  .custom-contacts-hero-overlay p {
    font-size: 1.2em;
    color: white;
  }
  
  /* Main Section */
  .custom-contacts-main {
    padding: 30px 20px;
    background-color: #111;
    color: white;
  }
  
  .custom-contacts-main section {
    margin-bottom: 40px;
  }

  .custom-contacts-form-section,
  .custom-contacts-map {
    margin-left: 6%;
  }
  
  .custom-contacts-info h2,
  .custom-contacts-form-section h2,
  .custom-contacts-map h2 {
    border-bottom: 2px solid white;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  
  /* Contact Info Section */
  .custom-contacts-info {
    text-align: center;
    font-size: 1.2em; /* Збільшуємо розмір шрифту */
    line-height: 1.6;
  }
  
  .custom-contacts-info h2 {
    font-size: 2em;
    margin-bottom: 20px;
  }
  
  .custom-contacts-info p {
    margin: 10px 0;
  }
  
  .custom-contacts-info a.custom-link {
    color: #00aced;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .custom-contacts-info a.custom-link:hover {
    color: #008cb3;
  }
  
  .custom-contacts-social a {
    margin-right: 50px;
  }
  
  .custom-contacts-social a img {
    width: 40px;
    height: 40px;
    filter: invert(100%);
    transition: transform 0.2s ease;
    margin-top: 30px;

  }
  
  .custom-contacts-social a img:hover {
    transform: scale(1.1);
  }
  
  /* Contact Form */
  .custom-contacts-form {
    background-color: #222;
    padding: 20px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
  }
  
  .custom-contacts-form label {
    margin-top: 15px;
    font-size: 0.9em;
  }
  
  .custom-contacts-form input,
  .custom-contacts-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: none;
    border-radius: 3px;
  }
  
  .custom-contacts-form button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #00aced;
    border: none;
    border-radius: 3px;
    color: white;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .custom-contacts-form button:hover {
    background-color: #008cb3;
  }
  
  /* Map Section */
  .custom-contacts-map iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 5px;
  }
  
  /* Footer */
  .custom-contacts-footer {
    background-color: #000;
    padding: 20px;
    text-align: center;
  }
  
  .custom-contacts-footer p {
    margin: 0 0 10px 0;
    color: #ccc;
  }
  
  .custom-contacts-social-footer a {
    margin: 0 10px;
  }
  
  .custom-contacts-social-footer a img {
    width: 24px;
    height: 24px;
    filter: invert(100%);
    transition: transform 0.2s ease;
  }
  
  .custom-contacts-social-footer a img:hover {
    transform: scale(1.1);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .custom-contacts-nav ul {
      flex-direction: column;
      align-items: center;
    }
    .custom-contacts-nav ul li {
      margin: 10px 0;
    }
    .custom-contacts-info,
    .custom-contacts-form-section {
      margin-bottom: 20px;
    }
  }
  




  /*                         about.css                                                        */


  
  .custom-about-logo a {
    font-size: 1.8em;
    font-weight: bold;
    text-decoration: none;
    color: white;
  }
  
  .custom-about-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  .custom-about-nav ul li {
    margin: 0 15px;
  }
  
  .custom-about-nav ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
  }
  
  .custom-about-nav ul li a.active,
  .custom-about-nav ul li a:hover {
    color: #fff;
  }
  
  .custom-about-lang {
    font-size: 0.9em;
  }
  
  /* Hero Section */
  .custom-about-hero {
    position: relative;
    height: 50vh;
    background: url('img/fon-about.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  
  .custom-about-hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
  }
  
  .custom-about-hero-overlay h1 {
    font-size: 3em;
    margin: 0;
    color: white;
  }
  
  .custom-about-hero-overlay p {
    font-size: 1.2em;
    color: white;
  }
  
 
/* ===== WEB‑HUB Intro Presentation ===== */
.about-intro-presentation{ --ai-bg:#090d1a; --ai-ink:#eaf1ff; --ai-muted:#a8b3c7; --ai-accent:#00e5ff; --ai-warm:#ffd76b; --ai-card:rgba(255,255,255,.06); --ai-stroke:rgba(255,255,255,.12); --ai-grid:rgba(255,255,255,.035); position:relative; isolation:isolate; overflow:hidden; color:var(--ai-ink); background:var(--ai-bg); border-radius:24px; padding:clamp(24px,4vw,48px); box-shadow:0 0 30px rgba(0,229,255,.18); }

/* декоративний фон */
.about-intro-presentation .ai-bg{ position:absolute; inset:0; pointer-events:none; background:
radial-gradient(120% 80% at 10% -10%, rgba(0,229,255,.18), transparent 60%),
radial-gradient(120% 80% at 110% 0%, rgba(255,215,107,.12), transparent 55%);
}
.about-intro-presentation::before{ content:""; position:absolute; inset:0; background:
linear-gradient(transparent 31px, var(--ai-grid) 32px),
linear-gradient(90deg, transparent 31px, var(--ai-grid) 32px);
background-size:32px 32px; mask-image: radial-gradient(120% 100% at 50% -20%, black 55%, transparent 70%);
}




.ai-container{ max-width:1160px; margin:0 auto; position:relative; z-index:1; }

/* заголовок */
.ai-head{ text-align:center; margin-bottom:clamp(18px,4vw,32px); }
.ai-kicker{ display:inline-block; font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:#0a0e18; background:linear-gradient(90deg, var(--ai-warm), #ffa600); padding:6px 10px; border-radius:999px; }
.ai-head h2{ margin:10px 0 6px; font-size:clamp(28px,4.6vw,48px); line-height:1.1; -webkit-background-clip:text; background-clip:text; color:#f5f9ff; text-shadow:0 0 14px rgba(0,229,255,.35); }
.ai-lead{ max-width:920px; margin:10px auto 0; font-size:clamp(14px,1.6vw,18px); line-height:1.75; color:var(--ai-ink); opacity:.92; }
.ai-badges{ margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; justify-content:center; }
.pill{ display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius:999px; background:rgba(255,255,255,.08); border:1px solid var(--ai-stroke); font-size:12px; }

/* сітка цінностей */
.ai-values{ display:grid; gap:clamp(14px,2.4vw,22px); grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); margin-top:clamp(14px,3vw,24px);margin-left: 6.5%; }
.ai-card{ background:var(--ai-card); border:1px solid var(--ai-stroke); border-radius:20px; padding:clamp(16px,2.6vw,24px); box-shadow:inset 0 0 0 1px rgba(255,255,255,.03), 0 10px 24px rgba(0,0,0,.25); transition:transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s; }
.ai-card:hover{ transform:translateY(-4px); box-shadow:0 16px 36px rgba(0,0,0,.38); }
.ai-card h3{ margin:0 0 8px; font-size:clamp(18px,2vw,22px); color:#fff; }
.ai-card p{ margin:0 0 10px; color:var(--ai-ink); opacity:.9; }

/* чек‑лісти без іконок */
.ai-list-checked{ list-style:none; padding:0; margin:0; }
.ai-list-checked li{ position:relative; padding-left:22px; margin:8px 0; font-size:14px; }
.ai-list-checked li::before{ content:""; position:absolute; left:0; top:.4em; width:12px; height:12px; border-radius:50%; background:radial-gradient(circle, var(--ai-accent), #00a6bd 65%, transparent 66%); box-shadow:0 0 10px rgba(0,229,255,.7); }

/* процес */
.ai-process {margin-left: 6.5%;}
.ai-process{ margin-top:clamp(18px,4vw,32px); }
.ai-process__title{ text-align:center; margin-bottom:12px; font-size:clamp(18px,2.2vw,22px); color:#fff; }
.ai-steps { list-style: none; counter-reset:aiStep; display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); gap:12px; position:relative; }
.ai-steps .step{ background:rgba(255,255,255,.05); border:1px dashed rgba(255,255,255,.18); border-radius:14px; padding:12px; min-height:120px; transition:transform .3s; }
.ai-steps .step:hover{ transform:translateY(-3px); }
.step-badge{ display:inline-flex; align-items:center; justify-content:center; width:28px; height:28px; border-radius:50%; background:var(--ai-accent); color:white; font-weight:700; font-size:18px; box-shadow:0 0 0 6px rgba(0,229,255,.2), 0 0 18px var(--ai-accent); }
.ai-steps h4{ margin:8px 0 6px; font-size:14px; color:#fff; }


/* оплата */
.ai-payments{ display:grid; grid-template-columns:2fr 1fr; gap:clamp(14px,2.4vw,22px); margin-top:clamp(18px,4vw,32px); margin-left: 6.5%; }
.ai-pay-card, .ai-assurance{ background:var(--ai-card); border:1px solid var(--ai-stroke); border-radius:20px; padding:clamp(16px,2.6vw,24px); box-shadow:inset 0 0 0 1px rgba(255,255,255,.03), 0 10px 24px rgba(0,0,0,.25); }
.ai-pay-card h3, .ai-assurance h3{ margin:0 0 8px; font-size:clamp(18px,2vw,22px); color:#fff; }
.iban-box{ margin-top:10px; font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; letter-spacing:.06em; background:rgba(0,0,0,.35); border:1px solid rgba(255,255,255,.15); border-radius:12px; padding:10px 12px; display:inline-block; box-shadow:inset 0 0 0 1px rgba(255,255,255,.03); }
.ai-note{ margin-top:8px; font-size:12px; color:var(--ai-muted); }

/* CTA */
.ai-cta{ display:flex; gap:12px; justify-content:center; align-items:center; margin-top:clamp(18px,4vw,32px); }
.ai-btn{ display:inline-block; padding:12px 18px; border-radius:14px; color:white; font-weight:800; text-decoration:none; background:linear-gradient(90deg, var(--ai-warm), #ffa600); box-shadow:0 6px 22px rgba(255,166,0,.25); }
.ai-btn:hover{ transform:translateY(-1px); box-shadow:0 10px 28px rgba(255,166,0,.35); }
.ai-link{ color:var(--ai-ink); opacity:.85; text-decoration:underline; text-underline-offset:4px; }

/* плавні появи (можна тригерити вашим observer) */
.ai-reveal{ opacity:0; transform:translateY(18px); animation:ai-in .7s cubic-bezier(.2,.8,.2,1) forwards; }
.ai-reveal:nth-child(1){ animation-delay:.05s; } .ai-reveal:nth-child(2){ animation-delay:.12s; } .ai-reveal:nth-child(3){ animation-delay:.18s; }
@keyframes ai-in{ to{ opacity:1; transform:none; } 






}

/* респонсив */
@media (max-width: 980px){ .ai-payments{ grid-template-columns:1fr; } }
@media (max-width: 720px){ .ai-steps{ grid-template-columns:repeat(2,1fr); } }
@media (max-width: 520px){ .ai-steps{ grid-template-columns:1fr; } .ai-badges{ justify-content:flex-start; } }____



  
 
 
  
  

  /* Загальний контейнер секції */
.custom-how-we-work {
    width: 100%;
    background: #fff;
    padding: 40px 20px;
    box-sizing: border-box;
  }
  
  /* Заголовок секції */
  .custom-how-we-work h2 {
    font-family: "Times New Roman", Times, serif;
    font-size: 2.5em;
    color: #000;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }
  
  /* Контейнер таймлайну */
  .workflow-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0;
  }
  
  /* Центральна вертикальна лінія – тонка */
  .workflow-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: #000;
    transform: translateX(-50%);
  }
  
  /* Кожен крок таймлайну */
  .workflow-step {
    position: relative;
    width: 50%;
    padding: 10px 20px;
    box-sizing: border-box;
    margin-bottom: 10px;
    opacity: 0;
    transition: opacity 0.8s ease-out;
  }
  .workflow-step.visible {
    opacity: 1;
  }
  
  /* Непарні кроки (зліва), парні (справа) */
  .workflow-step:nth-child(odd) {
    left: 0;
    text-align: right;
  }
  .workflow-step:nth-child(even) {
    left: 50%;
    text-align: left;
  }
  
  /* Контейнер для динамічної анімації "плавання" */
  .drift {
    /* Збільшуємо тривалість і амплітуду плавання */
    animation: drift 10s ease-in-out infinite;
    transform-origin: center center; /* Масштабування по центру */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  /* Ефект при наведенні:
     1) Зупиняємо анімацію (pause)
     2) Збільшуємо блок (scale)
     3) Додаємо більш помітну тінь
     4) Змінюємо фон та колір рамки для виразнішого виділення */
  .workflow-step:hover .drift {
    animation-play-state: paused;
    transform: scale(1.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  }
  .workflow-step:hover .step-content {
    background: #f2f2f2;
    border-color: #666;
  }
  
  /* Ключові кадри для плавання з більшими зміщеннями */
  @keyframes drift {
    0%   { transform: translate( 0,   0 ); }
    20%  { transform: translate( 6px, -6px); }
    40%  { transform: translate(-6px,  6px); }
    60%  { transform: translate( 6px,  6px); }
    80%  { transform: translate(-6px, -6px); }
    100% { transform: translate( 0,   0 ); }
  }
  
  /* Стилізація іконки кроку */
  .step-icon {
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
    font-size: 1.3em;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    margin-right: 5px;
  }
  
  
  
  
  
  
  
  
  .custom-about-content {
    padding: 50px 20px;
    background-color: #111;
    color: white;
  }
  
  .custom-about-content section {
    margin-bottom: 40px;
  }
  
  .custom-about-content h2 {
    border-bottom: 2px solid #00aced;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  
  .partners-section {
  padding: 50px 0;
  background: #000;
  color: #fff;
  overflow: hidden;
  margin-top: 5%;
   position: relative;
  z-index: 2;
}

.partners-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  text-transform: uppercase;
  color: #00f0ff;
}

.partners-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.partners-track {
  display: flex;
  gap: 50px;
  animation: scrollPartners 30s linear infinite;
}

.partner-logo {
  flex: 0 0 auto;
  width: 140px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* Glow-ефект при наведенні */
.partner-logo:hover img {
  filter: drop-shadow(0 0 10px #00f0ff) drop-shadow(0 0 20px #00f0ff);
  transform: scale(1.1);
}
/* Анімація нескінченного руху */
@keyframes scrollPartners {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Адаптив */
@media (max-width: 768px) {
  .partner-logo {
    width: 100px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .partner-logo {
    width: 80px;
    height: 50px;
  }
  .partner-logo:hover img {
    filter: drop-shadow(0 0 5px #00f0ff) drop-shadow(0 0 10px #00f0ff);
    transform: scale(1.05);
  }
}


  /* Загальний стиль секції */
.contact-form-section {
    background: #000; /* Чорний фон */
    color: #fff;      /* Білий текст */
    padding: 80px 20px;
    box-sizing: border-box;
    margin-top: 50px;
  }
  
  /* Контейнер форми, розтягнута по ширині */
  .contact-form-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #111; /* Темно-сірий фон для контенту форми */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  }
  
  /* Заголовок форми */
  .contact-form-container h2 {
    font-family: "Times New Roman", Times, serif;
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
  }
  
  /* Стилізація груп форми */
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 1.2em;
    color: #fff;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 15px;
    background: #222;
    border: 1px solid #333;
    border-radius: 5px;
    font-size: 1em;
    color: #fff;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: #888;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #fff;
    outline: none;
  }
  
  /* Кнопка відправлення */
  button[type="submit"] {
    width: 100%;
    padding: 20px;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
  }
  
  button[type="submit"]:hover {
    background: #444;
    transform: translateY(-3px);
  }
  
  
  
  /* Footer */
  .custom-about-footer {
    background-color: #000;
    padding: 20px;
    text-align: center;
  }
  
  .custom-about-footer p {
    margin: 0 0 10px 0;
    color: #ccc;
  }
  
  .custom-about-social a {
    margin: 0 10px;
  }
  
  .custom-about-social a img {
    width: 24px;
    height: 24px;
    filter: invert(100%);
    transition: transform 0.2s ease;
  }
  
  .custom-about-social a img:hover {
    transform: scale(1.1);
  }
  




/* ===== Загальні стилі для заголовка ===== */
.steps-title {
  text-align: center;
  font-size: clamp(28px, 5vw, 42px);
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: bold;
  color: #00f0ff;
  text-shadow: 0 0 12px rgba(0,240,255,0.7);
}

/* ======== Десктопна секція ======== */
.steps-cards-desktop {
  max-width: 1200px;
  margin: 80px auto;
  padding: 20px;
}

.steps-cards-desktop .steps-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-items: center;
}

.steps-cards-desktop .step-card {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 15px;
  padding: 20px;
  width: 100%;
  max-width: 300px;
  min-height: 250px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.steps-cards-desktop .step-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 0 20px rgba(0,240,255,0.6);
}

/* ======== Mobile секція ======== */
.steps-cards-mobile {
  max-width: 100%;
  margin: 50px auto;
  padding: 15px;
}

.steps-cards-mobile .steps-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.steps-cards-mobile .step-card {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 15px;
  padding: 20px;
  width: 90%;
  max-width: 350px;
  min-height: 220px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.steps-cards-mobile .step-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 20px rgba(0,240,255,0.6);
}

/* ======== Загальні стилі карток ======== */
.step-title {
  color: #ff6600;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-list li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #ddd;
  display: flex;
  align-items: center;
}

.step-list li span {
  margin-right: 8px;
}



/* ===== Media-запити для адаптивності ===== */
@media (max-width: 1024px) {
  .steps-cards-desktop .steps-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-cards-desktop .steps-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .steps-cards-desktop {
    display: none;
  }

}

@media (min-width: 769px) {
  .steps-cards-mobile {
    display: none;
  }

  .landing-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}



 

  
  
  /*                                                      АДАПТИВНІ СТИЛІ                                                      */
  
  
  


  @media screen and (max-width: 1024px) {
    
      .results-grid {
    grid-template-columns: repeat(2, 1fr); /* Планшет і мобільні: 2 блоки */
  }
      
      
  .sidebar { display: none; }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0,0,0,0.7);
  }

  .header__btn { order: 1; display: block; }
  .header__btn a {
    background-color: #ff6600;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 20px;
    display: inline-block;
  }

  .logo { order: 2; flex-shrink: 0; }
  .header__lang { order: 3; margin-left: auto; }
  .logo a img { width: 120px; }

  .main-menu { width: 60%; }
  .main-menu h1 { font-size: 32px; margin-bottom: 20px; }
  .menu-item { font-size: 20px; margin: 8px 0; padding: 12px; }
  .main-menu p { font-size: 16px; margin-top: 30px; }

  /* Сервіси і блоки */
  .hero-section h1,
  .reasons-section h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .hero-details,
  .tariffs-container,
  .services-container,
 


  .step-box { width: 90%; margin: 0 auto 16px; }
  .partners-section { padding: 20px 0; }
  .partner-circle { width: 50px; height: 50px; margin: 8px; }








}



@media screen and (max-width: 768px) {
   .corporate-cards-container {
    flex-direction: column;
    align-items: center;
  }

  .corporate-card {
    width: 80%;
    height: 350px;
  }

  .corporate-cards-title {
    font-size: 36px;
  }

.partners-section {
  position: relative;
  z-index: 10;
}
.partner-logo {
    height: 40px;
    width: auto;
  }

  .partners-track {
    min-width: max-content;
  }



  /* Приховуємо десктопні елементи */
  .header__nav, .sidebar, .header__logo, .header__btn, .header__lang {
    display: none !important;
  }

  /* Хедер мобільної версії */
  .mobile-header-webhub {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 15px;
    z-index: 10000;
    background: transparent !important;
    box-shadow: none !important;
  }

  .mobile-header-webhub a,
  .mobile-header-webhub button {
    background: none;
  }

  .header,
  .header__nav,
  .header__btn,
  .header__lang {
    background: transparent !important;
    box-shadow: none !important;
  }

  /* Лого зліва — вся зона клікабельна */
  .mobile-left-webhub a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: auto;
  }

  .mobile-left-webhub img {
    height: 90px;
  }

  .mobile-right-webhub {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-shrink: 0;
  }

  /* Кнопка "Залишити запит" */
  .mobile-cta-webhub {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    background: #ff6600;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    pointer-events: auto;
    z-index: 1001;
    position: relative;
    cursor: pointer;
  }
  .mobile-cta-webhub {
  background: #ff6600 !important;
  color: #fff !important;
}

  .mobile-cta-webhub:hover {
     background: #e55a00 !important;
  color: #fff !important;
  }

  /* Бургер меню */
  .burger-webhub {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background: #000;
    border: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    
  }

  /* Мобільне меню */
  .mobile-menu-webhub {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    padding: 80px 24px 40px;
    display: none;
    flex-direction: column;
    gap: 20px;
    z-index: 10001;
  }

  .mobile-menu-webhub.active-webhub {
    display: flex;
  }

  /* Кнопка закриття меню */
  .close-webhub {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
  }

  /* Список меню */
  .mobile-menu-webhub ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-menu-webhub ul li {
    margin: 16px 0;
  }

  .mobile-menu-webhub ul li a {
    font-size: 20px;
    color: white;
    text-decoration: none;
  }


.main-title  h1 {
    font-size: 56px;
    margin-bottom: 20%;
    margin-left: 25px;
    margin-right: 25px;
    }
  .main-title-corporate h1 {
    font-size: 46px;
    margin-bottom: 20%;
  }

  .business-title h2 {
     font-size: 56px;
    margin-bottom: 20%;
  }

  

  .services-section {
    padding: 0 25px; /* Відступи від боків */
  }
  .services-section .cards-container {
    gap: 20px; /* Трохи менший проміжок між картками */
  }
  


.step-title {
  font-size: 22px;
}

  .step-list li {

    font-size: 18px;
  }
  



 /*                        СЕРВІСИ основний заголовок в мобільній версії                               */

  .hero-title-desktop {
    display: none;
  }
  .steps-cards-section-desktop {
    display: none;
  }
  .steps-cards-section-mobile {
    display: block;
  }

  .hero-details {
      margin-top: 10%;
  }


  .hero-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 0 10px;
  }

  .hero-box {
    width: 100%;
    max-width: 350px; /* обмеження для великих телефонів */
    height: auto;
  }
  .hero-box p {
   font-size: 16px;
  }

  .hero-card {
    width: 100%;
    height: auto;
    min-height: 220px; /* приблизна висота */
  }

  .hero-front, .hero-back {
    height: 100%;
    overflow: hidden; /* щоб контент не вилазив */
  }

  .hero-back iframe {
    width: 100%;
    height: 100%;
  }


  .hero-title-mobile {
  display: block;
  text-align: center;
  font-size: clamp(32px, 9vw, 56px);
  margin-top: 35%; /* тепер працює */
  line-height: 1.1;
}


  .hero-word {
    display: block;
    opacity: 0;
    transform: translateY(-50px);
  }

  .hero-word {
    display: block;
    margin: 2px 0; /* мінімальний відступ між словами */
    padding: 0;    /* прибираємо внутрішні відступи */
    line-height: 1; /* щільніше вертикально */
  }

  .hero-title-desktop {
    display: none ;
  }

  .why-title {
    font-size: clamp(42px, 12vw, 68px);  /* Збільшений розмір */
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;

    /* Преміум неон */
    color: #00f0ff;
    text-shadow: 
      0 0 8px rgba(0,240,255,0.9),
      0 0 18px rgba(0,240,255,1),
      0 0 28px rgba(255,255,255,0.8);

    /* Легка пульсація */
    animation: mobileGlow 2.5s infinite ease-in-out;
  }

  @keyframes mobileGlow {
    0%, 100% {
      text-shadow: 
        0 0 8px rgba(0,240,255,0.9),
        0 0 18px rgba(0,240,255,1),
        0 0 28px rgba(255,255,255,0.8);
    }
    50% {
      text-shadow: 
        0 0 14px rgba(0,240,255,1),
        0 0 28px rgba(0,240,255,1),
        0 0 38px rgba(255,255,255,0.9);
    }
  }


/*                                                ВІЗИТКА                          */



  .business-card-section, .business-stats-section, .webhub-advantages {
    margin:0
  }
  .business-card-section, .business-card-title, .business-stats-section, .webhub-advantages {
    margin-top: 10%;
  }


  .business-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  html, body {
  overflow-x: hidden;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}
  

}



/* Ховаємо повністю на великих екранах */
@media screen and (min-width: 769px) {
  .mobile-header-webhub,
  .mobile-menu-webhub {
    display: none !important;
  }
 .steps-cards-desktop {display: block;}
.steps-cards-mobile {display: none;}
  
  html, body {
  overflow-x: hidden;
  max-width: 100%;
}

.tariffs-section {
  margin-left: 5%;
  margin-top: 5%;
}
.services-section {
    margin-left: 15%;
        margin-right: 10%;
        margin-top: 10%;
        margin-bottom: 10%;
}


}



@media screen and (max-width: 480px) {
  .logo a img { width: 90px; }
  .main-menu { width: 70%; border-radius: 25px; }
  .main-menu h1 { font-size: 24px; margin: 0 0 12px; }
  .menu-item { font-size: 18px; padding: 10px; }
  .main-menu p { font-size: 12px; margin-top: 16px; }
  .header__btn a { padding: 8px 16px; font-size: 14px; }

  .hero-section h1 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .tariff-box h2,
  .service-box h2 { font-size: 18px; }
  .tariff-box p,
  .service-box p,
  .reason-box p { font-size: 14px; }




   .business-card-title {
    font-size: 36px;
  }

  .business-card-subtitle,
  .business-card-footer {
    font-size: 16px;
  }
}






/*                                               FAQ                                                     */


/* ===========================
   УНІКАЛЬНИЙ ФОНОВИЙ ВІДЕО-БЛОК
   (працює тільки на FAQ, не впливає на інші сторінки)
=========================== */

.faq-bg-video{
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 0;              /* відео нижче за контент */
  pointer-events: none;    /* кліки проходять крізь відео */
  background: #000;        /* колір фону на випадок, якщо відео не завантажиться */
}

.faq-bg-video__media{
  width: 100%;
  height: 100%;
  object-fit: cover;       /* заповнити весь екран без спотворення */
  display: block;
}

/* ===========================
   ІЗОЛЬОВАНИЙ FAQ НЕЙМСПЕЙС
=========================== */

.wh-faq-page .wh-faq *{ box-sizing: border-box; }
.wh-faq{
  position: relative;
  z-index: 1;               /* контент знаходиться над відео */
  color: #e6edf3;
}

/* Контейнер */
.wh-faq__container{
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 16px;
}

/* HERO */
.wh-faq__hero{
  padding-top: 10%;        /* запас під вашу фіксовану шапку */
}

.wh-faq__title{
  margin: 0 0 6px;
  font-size: 36px;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.wh-faq__lead{
  margin: 0;
  color: white;
  font-size: 16px;
  text-align: center;
  
}

/* Пошук */
.wh-faq__search{
  margin: 18px auto 10px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  max-width: 820px;
}

.wh-faq__input-wrap{
  position: relative;
  flex: 1;
  min-width: 240px;
}

.wh-faq__input{
  width: 100%;
  height: 46px;
  padding: 0 14px 0 42px;                  /* місце під іконку */
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(13,17,23,0.78);
  color: #e6edf3;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.wh-faq__input::placeholder{ color: #aab3bf; }

/* Іконка пошуку через псевдоелемент (без додаткового HTML) */
.wh-faq__input-wrap::before{
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  opacity: 0.85;
  /* простий SVG-лупа */
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='7' stroke='white' stroke-width='2'/%3E%3Cline x1='16.5' y1='16.5' x2='22' y2='22' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.wh-faq__btn{
  height: 46px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(15,20,27,0.85);
  color: #e6edf3;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.wh-faq__btn:hover{
  border-color: rgba(255,255,255,0.28);
}

.wh-faq__btn--ghost{
  background: transparent;
}

.wh-faq__meta{
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}

.wh-faq__count{
  opacity: 0.9;
  font-size: 14px;
}

.wh-faq__hint{
  opacity: 0.75;
  font-size: 13px;
}

.wh-faq__empty{
  max-width: 980px;
  margin: 8px auto 0;
  padding: 10px 12px;
  border: 1px dashed rgba(255,255,255,0.22);
  border-radius: 10px;
  color: #9aa4b2;
  background: rgba(13,17,23,0.6);
}

/* Список питань */
.wh-faq__list{ margin-top: 2px; }

.wh-faq__item{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(20,27,36,0.8);
  border-radius: 12px;
  margin: 10px 0;
  overflow: hidden;
  backdrop-filter: blur(2px);
}

.wh-faq__item:hover{
  border-color: rgba(255,255,255,0.26);
}

.wh-faq__q{
  list-style: none;
  cursor: pointer;
  padding: 16px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.wh-faq__q::-webkit-details-marker{ display: none; }

.wh-faq__a{
  padding: 0 16px 16px;
  color: #e6edf3;
  font-size: 16px;
  line-height: 1.55;
}

.wh-faq p{ margin: 8px 0 0; }
.wh-faq ul{ margin: 8px 0 0 22px; }
.wh-faq li{ margin: 2px 0; }
.wh-faq mark{
  background: rgba(88,166,255,0.25);
  color: inherit;
  border-radius: 3px;
  padding: 0 2px;
}

/* Прихований текст для читачів екрану */
.wh-faq__sr{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== МОБІЛЬНА ВЕРСІЯ: сучасний вигляд пошуку ===== */
@media (max-width: 768px){
  .wh-faq__hero{ padding-top: 84px; }

  /* робимо блок пошуку sticky, з блюром — виглядає сучасно й зручно */
  .wh-faq__search{
    position: sticky;
    top: 64px;                 /* нижче вашої мобільної шапки */
    z-index: 2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(10,14,19,0.6);
    padding: 10px;
    margin: 12px 8px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 26px rgba(0,0,0,0.35);
    flex-wrap: wrap;
  }

  .wh-faq__lead{
  margin-top: 15%;
  
}

  .wh-faq__input-wrap{
    flex: 1 1 100%;
    min-width: 100%;
    margin-bottom: 8px;
  }

  .wh-faq__input{
    height: 48px;
    border-radius: 14px;
    background: rgba(13,17,23,0.9);
  }

  .wh-faq__btn,
  .wh-faq__btn--ghost{
    flex: 1 1 calc(50% - 6px);
    min-width: 140px;
    height: 48px;
    border-radius: 14px;
  }

  .wh-faq__meta{
    padding: 0 12px;
    font-size: 14px;
  }

  .wh-faq__title{ font-size: 26px; }
  .wh-faq__q{ font-size: 17px; padding: 14px; }
  .wh-faq__a{ font-size: 15px; }
}







                      /* ==== MOBILE FIX: WEB-HUB AI Partner ==== */
@media (max-width: 768px){

  /* якщо тема десь ховає — примусово увімкнути */
  .wh-chat,
  .webhub-ai,
  #webhub-ai,
  .ai-chat,
  .chat-widget,
  .chatbot,
  .ai-partner { 
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* саме вікно чату — на весь екран, поверх усього */
  .wh-chat,
  .webhub-ai,
  #webhub-ai,
  .ai-chat,
  .chat-widget,
  .ai-partner {
    position: fixed !important;
    left: 0; right: 0; top: 0; bottom: 0;
    width: 100vw; height: 100dvh;            /* full screen, враховує моб. клавіатуру */
    max-height: none !important;
    border-radius: 0 !important;
    z-index: 2147483646 !important;           /* дуже високо */
  }

  /* кнопка-ланчер (якщо є окремим елементом) */
  .wh-launcher,
  .ai-launcher,
  #ai-launcher {
    position: fixed !important;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0));
    z-index: 2147483647 !important;
    display: flex !important;
  }

  /* прокрутка контенту всередині (не обов’язково, але корисно) */
  .wh-chat__body,
  .chat-widget__body,
  .ai-chat__body {
    height: calc(100dvh - var(--wh-header, 56px) - var(--wh-input, 64px));
    overflow: auto;
  }
}

