@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
	--family: 'Open Sans', sans-serif;
	--transition: 0.35s;
	--head: #0f1420;
	--head2: #00d9ff15;
	--bg: #0a0e27;
	--bg-green: #00d9ff;
	--bg-green2: #a855f7;
	--bg-orange: var(--color);
	--color: #ffffff;
	--color-placeholder: #94a3b8;
	--color-white: #fff;
	--footer: #0a0e27;
	--grey: #64748b;
	--wrap:  1100px;
}
::placeholder {
	color: var(--color-placeholder);
}
:focus::placeholder {
	color: transparent;
}
input, button, textarea {
	background: 0;
	border: 0;
	outline: 0;
	box-sizing: border-box;
	font-size: 15px;
	color: var(--color);
	font-family: var(--family);
}
textarea {
	resize: none;
}
input[type="submit"], button[type="submit"] {
	cursor: pointer;
}
a, input[type="submit"], button[type="submit"] {
	transition: var(--transition);
}
* {
	padding: 0;
	margin: 0;
	outline: 0;
}
html * {
	max-height: 1000000px;
}
html, body {
	background: var(--bg);
	font-size: 14px;
	color: var(--color);
	-webkit-text-size-adjust: 100%;
	font-family: var(--family);
}
a {
	color: var(--color);
	text-decoration: none;
}
.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow: hidden;
}
.wrap {
	max-width: var(--wrap);
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	padding-left: 20px;
	padding-right: 20px;
}
.header {
    background: linear-gradient(135deg, #0f1420 0%, #1a1f3a 50%, #0f1420 100%);
    background-size: 200% 100%;
    animation: gradient-animation 5s linear infinite;
    position: relative;
    z-index: 1;
    margin-top: 0px;
    margin-bottom: 30px;
    box-sizing: border-box;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.1);
}
@keyframes gradient-animation {
	0% {
		background-position: 0% 0%;
	}
	50% {
		background-position: 100% 0%;
	}
	100% {
		background-position: 0% 0%;
	}
}
.header .wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative; /* Для absolute позиціювання lang */
}

/* Новий логотип LikeCity */
.likecity-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.logo-animation {
    position: relative;
    width: 50px;
    height: 50px;
}

.logo-heart {
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 2;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
}

.logo-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    font-size: 8px;
    opacity: 0;
    animation: float-up 3s ease-in-out infinite;
}

.particle-1 {
    left: 10%;
    animation-delay: 0s;
    color: #00d9ff;
}

.particle-2 {
    left: 70%;
    animation-delay: 0.5s;
    color: #a855f7;
}

.particle-3 {
    left: 30%;
    animation-delay: 1s;
    color: #ec4899;
}

.particle-4 {
    left: 50%;
    animation-delay: 1.5s;
    color: #00d9ff;
}

@keyframes float-up {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-50px) scale(1.5);
        opacity: 0;
    }
}

.logo-text h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-like {
    background: linear-gradient(135deg, #00d9ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-city {
    color: #ffffff;
}

.logo-text em {
    font-size: 12px;
    color: #94a3b8;
    font-style: normal;
    opacity: 0.8;
}

.header-logo:before {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	content: '';
	background: linear-gradient(135deg, #00d9ff, #a855f7);
	border-radius: 50%;
	animation: speed 5s linear infinite;
	animation-delay: 0.25s;
	box-shadow: 0 0 30px rgba(0, 217, 255, 0.5), 0 0 60px rgba(168, 85, 247, 0.3);
}
.header-logo {
	width: 60px;
	height: 60px;
	position: relative;
	z-index: 1;
}
.header-logo:after {
	background-image: url(../img/logo2.svg);
	background-repeat: no-repeat;
	background-size: cover;
	width: 55px;
	height: 55px;
	content: '';
	position: absolute;
	top: -30px;
	bottom: 0;
	left: -10px;
	right: 0;
	margin: auto;
	animation: speed 4s linear infinite;
	animation-delay: 0.25s;
	z-index: 2;
	filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.8));
}
.header-logo .ln {
	z-index: 1;
	position: absolute;
	display: flex;
	justify-content: space-between;
	bottom: -10px;
	left: 10px;
	right: 10px;
}
.header-logo .line {
	position: relative;
  width: 1px;
  height: 10px;
  background: linear-gradient(to bottom, #00d9ff, transparent);
  animation: line 0.60s linear infinite;
  border-radius: 100px;
  opacity: 0;
  box-shadow: 0 0 5px #00d9ff;
}
.header-logo .line.line1 {
	animation-delay: 0.05s;
}
.header-logo .line.line2 {
	animation-delay: 0.1s;
}
.header-logo .line.line3 {
	animation-delay: 0.5s;
}
.header-logo .line.line4 {
	animation-delay: 0.20s;
}
.header-logo .line.line5 {
	animation-delay: 0.25s;
}
@keyframes line {
  from {
   top: -60px;
   opacity: 1;
  }
  to {
    top: 20px;
    opacity: 0;
  }
}

@keyframes speed {
   0% {
    transform: translate(2px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -3px) rotate(-1deg);
  }
  20% {
    transform: translate(-2px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 3px) rotate(-1deg);
  }
  60% {
    transform: translate(-1px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-2px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(2px, 1px) rotate(0deg);
  }
}

.header-logo_text {
	margin-left: 15px;
}

.header-logo_flex {
	display: flex;
	flex-direction: column;
	text-align: right;
	line-height: 18px;
}

.header-logo_text em {
	opacity: 0.7;
    font-size: 12px;
    font-style: normal;
    color: #94a3b8;
}

.header-logo_text b {
	font-size: 30px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--color);
	margin-top: 20px;
}

.header-logo_text b span {
	background: linear-gradient(135deg, #00d9ff, #a855f7);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.header-buttons {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

/* МОБІЛЬНА ВЕРСІЯ */
@media (max-width: 768px) {
    .header .wrap {
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 15px;
        padding-bottom: 10px;
        position: relative;
    }
	
	    .likecity-logo {
        order: 1;
        margin: 0 auto;
    }
	
	    /* Кнопки в один ряд */
    .header-buttons {
        order: 2;
        display: flex;
        flex-direction: row !important; /* Горизонтально */
        gap: 10px;
        justify-content: center;
        margin-top: 15px;
        margin-left: 0 !important;
        width: auto;
    }
    
    /* Мовний перемикач зверху по центру */
    .lang {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Логотип по центру на новому рядку */
    .likecity-logo {
        order: 1;
        margin: 0 auto;
    }
    
    /* Кнопки під логотипом */
    .header-buttons {
        order: 2;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        margin-left: 0;
    }
}

/* Для дуже маленьких екранів */
@media (max-width: 400px) {
    .header .wrap {
        padding-top: 45px;
    }
    
    .lang {
        gap: 10px;
        font-size: 13px;
    }
    
    .header-buttons {
        flex-direction: column;
        width: 90%;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Тільки на дуже маленьких екранах (<350px) можна зробити вертикально */
@media (max-width: 350px) {
    .header-buttons {
        flex-direction: column !important;
        width: 90%;
    }
    
    .header-buttons_link.btn {
        width: 100% !important;
    }
}

/* Оновлені кнопки в header */
.header-buttons_link {
    margin-left: 12px;
    position: relative;
    overflow: hidden;
}

.btn {
	height: 40px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	padding: 0 15px;
	font-size: 14px;
	font-weight: 600;
	position: relative;
	z-index: 1;
	text-transform: uppercase;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.btn-type_1 {
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-bottom: none;
    color: #00d9ff;
}

.btn-type_1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-type_1:hover::before {
    left: 100%;
}

.btn-type_1:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: #00d9ff;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    transform: translateY(-2px);
}

.btn-type_2 {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-bottom: none;
    color: #a855f7;
}

.btn-type_2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-type_2:hover::before {
    left: 100%;
}

/* Мовний перемикач - по центру */
.lang {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 600;
}

/* Мобільний випадаючий список - ховаємо на десктопі */
.lang-mobile {
    display: none;
}

/* МОБІЛЬНА ВЕРСІЯ */
@media (max-width: 768px) {
    /* Ховаємо десктопну версію */
    .lang {
        display: none !important;
    }
    
    /* Показуємо мобільний випадаючий список */
    .lang-mobile {
        display: block;
        position: absolute;
        top: 10px;
        right: 20px;
        z-index: 100;
    }
    
    .lang-select {
        background: rgba(26, 31, 58, 0.9);
        border: 1px solid rgba(0, 217, 255, 0.3);
        border-radius: 8px;
        color: #00d9ff;
        font-size: 14px;
        font-weight: 600;
        padding: 8px 35px 8px 15px;
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2300d9ff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 10px center;
        font-family: 'Open Sans', sans-serif;
    }
    
    .lang-select option {
        background: #0a0e27;
        color: #00d9ff;
        padding: 10px;
    }
    
    .header .wrap {
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 15px;
        padding-bottom: 10px;
    }
    
    .likecity-logo {
        margin: 0 auto;
    }
    
    .header-buttons {
        display: flex;
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        margin-top: 15px;
        margin-left: 0;
    }
}

@media (max-width: 400px) {
    .lang-mobile {
        right: 10px;
        top: 8px;
    }
    
    .lang-select {
        font-size: 13px;
        padding: 6px 30px 6px 12px;
    }
}

.lang li:not(.lang-line):hover {
    color: #00d9ff;
}

.lang li:not(.lang-line).act {
    color: #00d9ff;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 6px;
}

.lang li:not(.lang-line).act::after {
    display: none;
}

/* Адаптивність для навігації */
@media(max-width: 1100px) {
    .nav {
        position: absolute;
        left: 0;
        right: 0;
        bottom: -50px;
        height: 50px;
        background: rgba(0, 217, 255, 0.03);
        backdrop-filter: blur(10px);
        box-sizing: border-box;
        justify-content: center;
        border-top: 1px solid rgba(0, 217, 255, 0.1);
        border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    }
    
    .header {
        margin-bottom: 70px;
    }
}

/* Спеціальні ефекти для різних соцмереж */
.nav-item:hover .nav-item_img[data-social="TikTok"] {
    box-shadow: 0 0 15px rgba(229, 41, 92, 0.5);
}

.nav-item:hover .nav-item_img[data-social="Instagram"] {
    box-shadow: 0 0 15px rgba(225, 48, 108, 0.5);
}

.nav-item:hover .nav-item_img[data-social="Telegram"] {
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.5);
}

.nav-item:hover .nav-item_img[data-social="YouTube"] {
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.btn-type_2:hover {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: white;
    border-color: #a855f7;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
    transform: translateY(-2px);
}


.btn-type_1:hover {
	background: linear-gradient(135deg, #00d9ff, #a855f7);
	color: var(--color-white);
	box-shadow: 0 0 20px rgba(0, 217, 255, 0.4), 0 0 40px rgba(168, 85, 247, 0.2);
	transform: translateY(-2px);
}

.btn-type_2 {
	background: rgba(168, 85, 247, 0.1);
	border: 1px solid rgba(168, 85, 247, 0.3);
	color: #a855f7;
}

.btn-type_2:hover {
	background: linear-gradient(135deg, #a855f7, #ec4899);
	color: var(--color-white);
	box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
	transform: translateY(-2px);
}

.footer {
	margin-top: auto;
	background: #0a0e27;
	color: #fff;
	border-top: 1px solid rgba(0, 217, 255, 0.2);
}

.footer .wrap {
	padding: 20px;
}

.title {
	text-align: center;
	font-size: 32px;
	text-transform: uppercase;
	color: var(--color);
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 40px;
	position: relative;
	font-weight: 700;
	padding-bottom: 15px;
	margin-left: auto;
	margin-right: auto;
}

.title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, #00d9ff, #a855f7);
	box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.title:not(.title-orange) {
	background: linear-gradient(135deg, #00d9ff, #a855f7);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.block {
	padding: 60px 0;
}

.block-promotion_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 25px;
}

.block-promotion_item {
	background: rgba(26, 31, 58, 0.6);
	backdrop-filter: blur(10px);
    box-shadow: 0 0 0 1px rgba(0, 217, 255, 0.2), inset 0 20px 30px rgba(0, 217, 255, 0.05);
	padding: 25px;
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: 12px;
	transition: all 0.4s ease;
}

.block-promotion_item:hover {
	box-shadow: 0 0 20px rgba(0, 217, 255, 0.3), 0 0 40px rgba(168, 85, 247, 0.2);
	transform: translateY(-5px);
	background: rgba(26, 31, 58, 0.8);
}

.about {
	padding: 30px;
	background: rgba(26, 31, 58, 0.4);
	border-radius: 12px;
	border: 1px solid rgba(0, 217, 255, 0.2);
}

.container {
	display: flex;
	flex-direction: column;
}

.block-promotion_item:hover .promotion_item-image {
	transform: scale(1.15) rotate(5deg);
}

.promotion_item-image {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.4s ease;
	position: absolute;
	top: -25px;
	left: -25px;
	box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.promotion_item-image img {
	max-width: 35px;
}

.promotion_item-title {
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	background: linear-gradient(135deg, #00d9ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.promotion_item-link {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	border-radius: 12px;
}

/* Обновленные градиенты для соцсетей с неоновыми эффектами */
[data-social="Instagram"] {
	background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
	box-shadow: 0 0 20px rgba(253, 29, 29, 0.3);
}

[data-social="Telegram"] {
	background: linear-gradient(135deg, #1c92d2, #00d9ff);
	box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

[data-social="YouTube"] {
	background: linear-gradient(135deg, #e52d27, #b31217);
	box-shadow: 0 0 20px rgba(229, 45, 39, 0.3);
}

[data-social="TikTok"] {
	background: linear-gradient(135deg, #e5295c, #00d9ff);
	box-shadow: 0 0 20px rgba(229, 41, 92, 0.3);
}

[data-social="FaceBook"] {
	background: linear-gradient(135deg, #00c6ff, #0072ff);
	box-shadow: 0 0 20px rgba(0, 198, 255, 0.3);
}

[data-social="Twitter"] {
	background: linear-gradient(135deg, #1DA1F2, #00d9ff);
	box-shadow: 0 0 20px rgba(29, 161, 242, 0.3);
}

[data-social="Twitch"] {
	background: linear-gradient(135deg, #6441A5, #a855f7);
	box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

[data-social="Soundcloud"] {
	background: linear-gradient(135deg, #fe8c00, #f83600);
	box-shadow: 0 0 20px rgba(254, 140, 0, 0.3);
}

[data-social="Spotify"] {
	background: linear-gradient(135deg, #1dbc55, #22c55e);
	box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

[data-social="LinkedIn"] {
	background: linear-gradient(135deg, #0172ac, #00d9ff);
	box-shadow: 0 0 20px rgba(1, 114, 172, 0.3);
}

[data-social="Snapchat"] {
	background: linear-gradient(135deg, #ffc800, #FFFC00);
	box-shadow: 0 0 20px rgba(255, 200, 0, 0.3);
}

[data-social="Threads"] {
	background: linear-gradient(135deg, #111111, #666666);
	box-shadow: 0 0 20px rgba(102, 102, 102, 0.3);
}

.whyus {
	list-style: none;
	counter-reset: item;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.whyus-title:before {
	content: counter(item) '.';
	counter-increment: item;
	color: #00d9ff;
}

.whyus li:after {
	border-left: 2px solid transparent;
	left: 0;
	right: calc(100% - 30px);
}

.whyus li:before {
	border-right: 2px solid transparent;
	right: 0;
	left: calc(100% - 30px);
}

.whyus li:after,
.whyus li:before {
	border-top: 2px solid transparent;
	border-bottom: 2px solid transparent;
	border-color: #00d9ff;
	position: absolute;
	top: 0;
	bottom: 0;
	content: '';
	transition: all 0.5s ease;
}

.whyus li:hover:after,
.whyus li:hover:before {
	left: 0;
	right: 0;
	box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.whyus-ico {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #00d9ff, #a855f7);
    position: absolute;
    top: -25px;
    left: -25px;
    border-radius: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.nav-item:hover .nav-icon-glow::before {
    opacity: 1;
}

.nav-item:hover .nav-item_img {
    background: rgba(0, 217, 255, 0.15);
    transform: translateY(-2px);
}

/* Текст навігації */
.nav-item_text {
    position: relative;
}

.nav-item:hover .nav-item_text {
    background: linear-gradient(135deg, #00d9ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.whyus-ico img {
	width: 60%;
	height: 60%;
	filter: brightness(0) invert(1);
}

/* Ефект свічення для іконок */
.nav-icon-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.3), rgba(168, 85, 247, 0.3));
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.whyus li {
	position: relative;
	padding: 25px;
	background: rgba(26, 31, 58, 0.5);
	border-radius: 12px;
	border: 1px solid rgba(0, 217, 255, 0.2);
	transition: all 0.3s ease;
}

.whyus li:hover {
	background: rgba(26, 31, 58, 0.8);
	box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
	transform: translateY(-3px);
}

.whyus-title {
	font-size: 18px;
	margin-bottom: 12px;
	font-weight: 600;
	background: linear-gradient(135deg, #00d9ff, #a855f7);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.whyus-description {
	color: #94a3b8;
	line-height: 1.6;
}

.about-description {
	font-size: 16px;
	color: #94a3b8;
	line-height: 1.8;
}

.about-title {
	background: linear-gradient(135deg, #00d9ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-list {
	padding-left: 40px;
	color: #94a3b8;
	line-height: 1.8;
}

.about-list li {
	margin-bottom: 10px;
}

.footer .wrap {
	display: flex;
	align-items: center;
	height: 100%;
	justify-content: space-between;
	font-size: 14px;
}

.footer_url {
	padding: 3px;
	color: #00d9ff;
	transition: all 0.3s ease;
}

.footer_url:hover {
	text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.faq-item {
	border: 1px solid rgba(0, 217, 255, 0.3);
	transition: all 0.3s ease;
	background: rgba(26, 31, 58, 0.5);
	border-radius: 12px;
	margin-bottom: 15px;
}

.faq-item.active {
	box-shadow: 0 0 20px rgba(0, 217, 255, 0.3), 0 0 40px rgba(168, 85, 247, 0.1);
	border-color: #00d9ff;
}

.faq-item_title:before {
	content: counter(item) '.';
    counter-increment: item;
    margin-right: 8px;
    color: #00d9ff;
}

.faq-item_title {
	padding: 15px 20px;
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
	z-index: 1;
	font-size: 18px;
	font-weight: 600;
	background: linear-gradient(135deg, #00d9ff, #a855f7);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.faq-item_description {
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	font-size: 15px;
	color: #94a3b8;
	line-height: 1.8;
	box-sizing: border-box;
}

.faq {
	display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
    align-items: baseline;
    counter-reset: item;
}

.speedbar a:hover {
	text-decoration: none;
	color: #00d9ff;
	text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.speedbar a {
	text-decoration: underline;
	color: #a855f7;
	transition: all 0.3s ease;
}

.speedbar span {
	color: #64748b;
	font-weight: 500;
}

.block-promotion_item.short_item:not(.short-no_white) .promotion_item-image {
	background: linear-gradient(135deg, #00d9ff, #a855f7);
	box-shadow: 0 0 25px rgba(0, 217, 255, 0.5);
	border: 2px solid #00d9ff;
}

.block-promotion_item.short_item:not(.short-no_white) .promotion_item-image img {
	width: 50px;
	max-height: 50px;
	max-width: 50px;
}

.promotion_item-price {
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	margin-top: 15px;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #00d9ff, #a855f7);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.promotion_item-btn {
	text-align: center;
	justify-content: center;
	margin-top: 5px;
}

.block-promotion_item.short_item .promotion_item-title {
	margin-bottom: 15px;
	color: #00d9ff;
}

.block-promotion_item.short_item .promotion_item-btn:after {
	background: linear-gradient(135deg, #00d9ff, #a855f7);
}

.promotion_item-des {
	padding: 12px;
	background: rgba(0, 217, 255, 0.1);
	text-align: center;
	margin-bottom: 20px;
	font-size: 14px;
	color: #94a3b8;
	border-radius: 8px;
	border: 1px solid rgba(0, 217, 255, 0.2);
}

.page-txt {
	white-space: pre-line;
	font-size: 15px;
	line-height: 1.8;
	font-weight: 400;
	color: #94a3b8;
	background: rgba(26, 31, 58, 0.4);
	padding: 25px;
	border-radius: 12px;
	border: 1px solid rgba(0, 217, 255, 0.2);
}

input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button {
    display: none
}

/** Custom Select **/
.custom-select-wrapper {
  position: relative;
  display: block;
  user-select: none;
}
  .custom-select-wrapper select {
    display: none;
  }
  .custom-select {
    position: relative;
    display: block;
  }
    .custom-select-trigger {
      position: relative;
      display: block;
      width: 100%;
      padding-right: 85px;
      padding-left: 15px;
      padding-top: 12px;
      padding-bottom: 12px;
      box-sizing: border-box;
      font-size: 16px;
      font-weight: 500;
      color: #ffffff;
     	background: rgba(26, 31, 58, 0.6);
      border-radius: 10px;
      cursor: pointer;
      border: 1px solid rgba(0, 217, 255, 0.3);
      transition: all 0.3s ease;
    }
    .custom-select-trigger:hover {
      border-color: #00d9ff;
      box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
    }
      .custom-select-trigger:after {
        position: absolute;
        display: block;
        content: '';
        width: 10px; height: 10px;
        top: 50%; right: 15px;
        margin-top: -3px;
        border-bottom: 2px solid #00d9ff;
        border-right: 2px solid #00d9ff;
        transform: rotate(45deg) translateY(-50%);
        transition: all .4s ease-in-out;
        transform-origin: 50% 0;
      }
      .custom-select.opened .custom-select-trigger:after {
        margin-top: 3px;
        transform: rotate(-135deg) translateY(-50%);
      }
  .custom-options {
    position: absolute;
    display: block;
    top: 100%; left: 0; right: 0;
    min-width: 100%;
    margin: 5px 0;
    border-radius: 10px;
    box-sizing: border-box;
    background: rgba(15, 20, 32, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all .4s ease-in-out;
    
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
    z-index: 100;
  }
  .custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
  }
    .custom-option {
      position: relative;
      display: block;
      padding: 12px 15px;
      border-bottom: 1px solid rgba(0, 217, 255, 0.1);
      font-size: 15px;
      font-weight: 500;
      color: #ffffff;
      cursor: pointer;
      transition: all .3s ease-in-out;
    }
    .custom-option:first-child {
      border-radius: 10px 10px 0 0;
    }
    .custom-option:last-child {
      border-bottom: 0;
      border-radius: 0 0 10px 10px;
    }
    .custom-option:hover {
      background: rgba(0, 217, 255, 0.1);
      color: #00d9ff;
      padding-left: 20px;
    }

.full_short-item {
	margin-bottom: 0px;
}

.full_short-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #ffffff;
}

.full_short-input {
	height: 45px;
	background: rgba(26, 31, 58, 0.6);
	width: 100%;
	padding: 0 15px;
	border-radius: 10px;
	font-size: 15px;
	border: 1px solid rgba(0, 217, 255, 0.3);
	color: #ffffff;
	transition: all 0.3s ease;
}

.full_short-input:focus {
	border-color: #00d9ff;
	box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
}

.full_short-panel {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 35px;
}

.full_short-price p:nth-child(2) {
	font-size: 24px;
	font-weight: 700;
	background: linear-gradient(135deg, #00d9ff, #a855f7);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.full_short-link:after {
	background: linear-gradient(135deg, #00d9ff, #a855f7);
}

.full_short-quantity {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

.quantity_input {
	width: 100%;
	height: 45px;
	background: rgba(26, 31, 58, 0.6);
	border-radius: 10px;
	text-align: center;
	padding: 0 15px;
	font-size: 18px;
	font-weight: 600;
	margin: 0 10px;
	border: 1px solid rgba(0, 217, 255, 0.3);
	color: #ffffff;
	transition: all 0.3s ease;
}

.quantity_input:focus {
	border-color: #00d9ff;
	box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
}

.quantity_minus,
.quantity_plus {
	width: 45px;
	height: 45px;
	border-radius: 10px;
	cursor: pointer;
	color: #fff;
	font-size: 20px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
}

.quantity_minus {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.quantity_plus {
	background: linear-gradient(135deg, #00d9ff, #a855f7);
	border: 1px solid transparent;
}

.quantity_minus:hover {
	background: rgba(255, 255, 255, 0.2);
	box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.quantity_plus:hover {
	box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
	transform: translateY(-2px);
}

.full_short-grid {
	display: flex;
	list-style: none;
	justify-content: space-between;
	margin: 0 -10px;
}

.full_short-grid li {
	width: 100%;
	border-radius: 10px;
	border: 1px solid rgba(0, 217, 255, 0.3);
	background: rgba(26, 31, 58, 0.5);
	margin: 0 10px;
	height: 40px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
	padding: 0 10px;
	box-sizing: border-box;
	color: #ffffff;
}

.full_short-grid li:hover {
	border-color: #00d9ff;
	background: rgba(0, 217, 255, 0.1);
	color: #00d9ff;
	box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
}

.spoiler-btn:hover {
	background: linear-gradient(135deg, #a855f7, #ec4899);
	color: #fff;
	box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.spoiler-btn {
	transition: all 0.3s ease;
	display: flex;
	width: max-content;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
	border: 2px solid #a855f7;
	height: 44px;
	padding: 0 20px;
	align-items: center;
	cursor: pointer;
	border-radius: 8px;
	color: #a855f7;
}

.spoiler-txt {
	background: rgba(26, 31, 58, 0.4);
	padding: 20px;
	margin-top: 20px;
	border-radius: 12px;
	border: 1px solid rgba(0, 217, 255, 0.2);
	color: #94a3b8;
	line-height: 1.6;
}

@media(max-width: 1100px) {
	.header {
		margin-bottom: 40px;
	}
}

@media(max-width: 1000px) {
	.wrapper {
		min-width: 340px;
	}

	.header {
		margin-bottom: 40px;
	}

	.block {
		padding: 30px 0;
	}

	.whyus:after {
		display: none;
	}

	.whyus {
		justify-content: center;
	}

	.title {
		margin-bottom: 25px;
		max-width: 100%;
		font-size: 24px;
	}

	.block-promotion_grid {
		grid-gap: 15px;
		grid-template-columns: repeat(2, 1fr);
	}

	.about {
		padding: 20px;
	}

	.whyus {
		padding: 10px 0;
		gap: 20px;
	}

	.full_short-item {
		margin-bottom: 0px;
	}

	.full_short-panel {
		margin-top: 25px;
		flex-direction: column;
		gap: 15px;
	}

	.whyus {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(max-width: 768px) {
	.whyus {
		grid-template-columns: repeat(1, 1fr);
	}
	
	.block-promotion_grid {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media(max-width: 800px) {
	.footer .wrap {
		flex-direction: column;
		justify-content: center;
		text-align: center;
		gap: 10px;
	}

	.footer-text {
		margin-bottom: 5px;
	}

	.whyus {
		grid-template-columns: repeat(2, 1fr);
	}
}

.cat-row {
	display: none;
}

@media(max-width: 700px) {
	.block-promotion_grid:not(.short_grid) {
		grid-template-columns: repeat(2, 1fr);
	}

	.faq {
		grid-template-columns: repeat(1, 1fr);
		grid-gap: 10px;
	}

	.block-promotion_grid.short_grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.short-wrap {
		flex-direction: column;
	}

	.cat {
		box-sizing: border-box;
		min-width: 100% !important;
		max-width: 100% !important;
		width: 100%;
	}

	.promotion_item-image {
		right: -20px;
	}

	.cat-row {
		display: flex;
		cursor: pointer;
		margin-left: auto;
		margin-right: auto;
		width: auto !important;
		white-space: nowrap;
		padding-left: 30px;
		line-height: 30px;
		font-weight: 600;
		color: #00d9ff;
	}
	
	    /* Компактні кнопки */
    .header-buttons_link.btn {
        width: auto !important;
        padding: 10px 20px;
        flex: 0 0 auto;
    }

	.cat .catalog-content_link:not(.active) {
		display: none;
	}

	.full_grid {
		grid-template-columns: repeat(1, 1fr) !important;
		gap: 10px !important;
	}
}

@media(max-width: 600px) {
	.full_short-grid {
		display: none;
	}

	.whyus {
		grid-template-columns: repeat(1, 1fr);
	}

	.block-promotion_grid.short_grid {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media(max-width: 550px) {
	.header {
		height: auto;
	}

.header .wrap {
    display: flex;
    align-items: center;
    position: relative;
}

.header-buttons {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

	.header-buttons_link.btn.btn-type_1 {
		margin-left: 0;
	}

	.speedbar {
		text-align: center;
	}
}

@media(max-width: 500px) {
	.block-promotion_grid:not(.short_grid) {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media(max-width: 450px) {
	.full_short-link {
		width: 150px;
		padding: 10px;
		height: auto;
		text-align: center;
		font-size: 16px;
	}
}

@media(max-width: 400px) {
	.block-promotion_grid.short_grid {
		grid-template-columns: repeat(1, 1fr);
	}
}

.header-animation:before {
	background: #0a0e27;
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 4px;
	content: '';
	z-index: 1;
}

.lang {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 600;
}

.lang-line {
    width: 1px;
    height: 16px;
    background: rgba(0, 217, 255, 0.3);
}

.lang li:not(.lang-line) {
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: #94a3b8;
}

.lang li:not(.lang-line):after {
	height: 2px;
	background: linear-gradient(90deg, #00d9ff, #a855f7);
	position: absolute;
	bottom: -5px;
	left: 0;
	right: 0;
	content: '';
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 100px;
	box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.lang li:not(.lang-line).act:after {
	opacity: 1;
}

.lang li:not(.lang-line).act {
	color: #00d9ff;
}

.lang li:not(.lang-line):hover {
    color: #00d9ff;
    background: rgba(0, 217, 255, 0.05);
}

.lang li.act {
    color: #00d9ff;
    background: rgba(0, 217, 255, 0.1);
}

@media(max-width: 650px) {
	.lang {
		position: absolute;
		top: 10px;
		left: 0;
		right: 0;
		justify-content: center;
	}

	.header .wrap {
		padding-top: 50px;
	}
}

.header-animation {
	opacity: 0;
	animation-name: header-animation;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-delay: 0.5s;
}

@keyframes header-animation {
	100% {
		opacity: 1;
	}
}

@keyframes TP-COLOR {
	50% {
		box-shadow: 0 0 30px rgba(0, 217, 255, 0.6), 0 0 60px rgba(168, 85, 247, 0.3);
	}
}

.tp {
	background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(168, 85, 247, 0.2));
	backdrop-filter: blur(10px);
	width: max-content;
	display: flex;
	align-items: center;
	padding: 10px;
	border: 2px solid #00d9ff;
	flex-direction: column;
	position: fixed;
	bottom: 20px;
	right: 20px;
	animation: 1.2s infinite TP-COLOR, speed 5s linear infinite;
	animation-delay: 1s;
	z-index: 99;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.tp:hover {
	transform: scale(1.1);
	box-shadow: 0 0 40px rgba(0, 217, 255, 0.8);
}

.tp img {
	width: 30px;
	height: 30px;
	filter: brightness(0) invert(1);
}

.nav {
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: center;
}

.nav nav {
	display: flex;
	gap: 25px;
	width: max-content;
}

.nav-item {
	font-weight: 600;
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.nav-item_img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.05);
    transition: all 0.3s ease;
}


.nav-item_img img {
    width: 20px;
    height: 20px;
}

.nav-item:hover {
	color: #00d9ff;
	text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.nav-item:hover .nav-item_img {
    background: rgba(0, 217, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
}

@media(max-width: 1100px) {
	.nav {
		position: absolute;
		left: 0;
		right: 0;
		bottom: -40px;
		height: 40px;
		background: rgba(0, 217, 255, 0.05);
		backdrop-filter: blur(10px);
		box-sizing: border-box;
		justify-content: center;
		border-top: 1px solid rgba(0, 217, 255, 0.1);
	}

	.nav nav {
		height: 40px;
		overflow-y: auto;
		white-space: nowrap;
		-ms-overflow-style: none;
		overflow: -moz-scrollbars-none;
		gap: 15px;
		padding: 0 10px;
	}

	.nav nav::-webkit-scrollbar {
		width: 0px;
		height: 3px;
	}

	.nav nav::-webkit-scrollbar-thumb {
		background: rgba(0, 217, 255, 0.3);
	}

	.nav nav::-webkit-scrollbar-track {
		background: transparent;
	}

	.nav-item {
		padding: 0 10px;
		display: flex;
		align-items: center;
	}
}

.catalog-wrap {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.catalog-flex {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 30px;
}

.catalog-item {
	background: rgba(26, 31, 58, 0.5);
	box-shadow: 0 0 0 1px rgba(0, 217, 255, 0.2), inset 0 20px 30px rgba(0, 217, 255, 0.05);
	transition: all 0.3s ease;
	border-radius: 12px;
}

.catalog-item:not(.active):hover {
	box-shadow: 0 0 20px rgba(0, 217, 255, 0.2), inset 0 40px 30px rgba(0, 217, 255, 0.1);
	background: rgba(26, 31, 58, 0.7);
}

.catalog-item.active {
	background: rgba(0, 217, 255, 0.1);
	box-shadow: 0 0 0 2px #00d9ff, inset 0 40px 30px rgba(0, 217, 255, 0.15);
}

.catalog-item.active .catalog-item_row {
	transform: rotate(-180deg);
}

.catalog-item_panel {
	display: flex;
	align-items: center;
	padding: 12px;
	cursor: pointer;
}

.catalog-item_img {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 217, 255, 0.1);
}

.catalog-item_img img {
	width: 32px;
	height: 32px;
}

.catalog-item_name {
	font-weight: 600;
	font-size: 16px;
	margin-left: 20px;
}

.catalog-content {
	display: none;
}

.catalog-item_row {
	width: 20px;
	height: 20px;
	background: url(../img/bottom.svg) no-repeat;
	margin-left: auto;
	transition: transform 0.3s ease;
	filter: brightness(0) invert(1);
}

.catalog-content_link {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 10px 20px;
	font-weight: 500;
	transition: all 0.3s ease;
	border-left: 3px solid transparent;
}

.catalog-content_link:hover,
.catalog-content_link.active {
	background: rgba(0, 217, 255, 0.1);
	border-left-color: #00d9ff;
	padding-left: 25px;
}

.catalog-content_link img {
	width: 20px;
	height: 20px;
}

@media(max-width: 800px) {
	.catalog-wrap, .catalog-flex {
		gap: 20px;
		flex-direction: column;
	}
}

.block-promotion_item .promotion_item-btn {
	border: 2px solid #00d9ff;
	margin-top: auto;
}

.cat {
	min-width: 200px;
	max-width: 200px;
	display: flex;
	flex-direction: column;
	padding: 12px;
	background: rgba(26, 31, 58, 0.5);
	border-radius: 12px;
	border: 1px solid rgba(0, 217, 255, 0.2);
	gap: 10px;
}

.cat .catalog-content_link {
	padding: 8px;
	border-radius: 8px;
}

.short-wrap {
	display: flex;
	gap: 30px;
}

.full_short {
	background: rgba(26, 31, 58, 0.5);
	box-shadow: 0 0 20px rgba(0, 217, 255, 0.1), inset 0 40px 60px rgba(0, 217, 255, 0.05);
	padding: 25px;
	position: relative;
	margin-top: 50px;
	padding-top: 45px;
	border-radius: 12px;
	border: 1px solid rgba(0, 217, 255, 0.2);
}

.full_short .full_short-link {
	border: 2px solid #00d9ff;
}

.full_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}

.spoiler-btn {
	margin-top: 20px;
}

.full_short .promotion_item-image {
	right: -25px;
	width: 55px;
	height: 55px;
}

.full_short .promotion_item-image img {
	max-width: 40px;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.gradient-text {
    background: linear-gradient(135deg, #00d9ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 20px;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d9ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 217, 255, 0.2);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #00d9ff, #a855f7);
    color: white;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

.hero-btn-primary:hover {
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.5);
    transform: translateY(-2px);
}

.hero-btn-outline {
    background: transparent;
    border: 2px solid rgba(0, 217, 255, 0.5);
    color: #00d9ff;
}

.hero-btn-outline:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: #00d9ff;
}

/* Social Grid */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #94a3b8;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.social-card {
    background: rgba(26, 31, 58, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 16px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.2);
    border-color: #00d9ff;
}

.social-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top, rgba(0, 217, 255, 0.1), transparent);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-card:hover .social-card-glow {
    opacity: 1;
}

.social-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon img {
    width: 32px;
    height: 32px;
}

.social-name {
    font-size: 20px;
    font-weight: 600;
}

.social-desc {
    color: #94a3b8;
    margin-bottom: 20px;
}

.social-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.service-tag img {
    width: 16px;
    height: 16px;
}

.service-tag:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: #00d9ff;
}

.service-more {
    color: #00d9ff;
    font-weight: 600;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: rgba(26, 31, 58, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.2);
}

.benefit-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
    font-weight: 800;
    color: rgba(0, 217, 255, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d9ff, #a855f7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.benefit-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #00d9ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefit-text {
    color: #94a3b8;
    line-height: 1.6;
}

/* Steps */
.steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step-card {
    background: rgba(26, 31, 58, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.2);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    stroke: #00d9ff;
}

.step-number {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 15px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-text {
    color: #94a3b8;
    line-height: 1.6;
}

/* CTA Section */
.block-cta {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(168, 85, 247, 0.1));
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
    background: rgba(26, 31, 58, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(0, 217, 255, 0.3);
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-text {
    font-size: 18px;
    color: #94a3b8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #00d9ff, #a855f7);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.6);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .steps-wrapper {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Загальні класи */
.gradient-text {
    background: linear-gradient(135deg, #00d9ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Компактний заголовок */
.block-intro {
    padding: 30px 0 20px;
}

.page-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.title-text {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d9ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-badge {
    font-size: 14px;
    padding: 6px 16px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    color: #00d9ff;
}

/* Платформи */
.social-platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px; /* Більший gap */
    padding: 5px; /* Padding для запобігання обрізання тіней */
}

.platform-card {
    background: rgba(26, 31, 58, 0.8); /* Більша непрозорість */
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.platform-card:hover {
    border-color: #00d9ff;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.12); /* Ще менша тінь */
    transform: translateY(-2px);
    z-index: 2;
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.platform-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.platform-icon img {
    width: 32px;
    height: 32px;
}

.platform-info {
    flex: 1;
}

.platform-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.platform-desc {
    font-size: 13px;
    color: #94a3b8;
}

.platform-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.service-link img {
    width: 16px;
    height: 16px;
}

.service-link:hover {
    background: rgba(0, 217, 255, 0.15);
    border-color: #00d9ff;
    transform: translateY(-2px);
}

.show-more-services {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    background: transparent;
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    color: #00d9ff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more-services:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: #00d9ff;
}

/* Секції */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: #94a3b8;
}

/* Переваги */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: rgba(26, 31, 58, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.2);
    border-color: #00d9ff;
}

.benefit-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover .benefit-glow {
    opacity: 1;
}

.benefit-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 217, 255, 0.08);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d9ff, #a855f7);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.benefit-icon img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #00d9ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefit-text {
    color: #94a3b8;
    line-height: 1.6;
}

/* Кроки */
.steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.step-card {
    background: rgba(26, 31, 58, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.2);
    border-color: #00d9ff;
}

.step-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover .step-glow {
    opacity: 1;
}

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 14px;
    color: #64748b;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #00d9ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-text {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 14px;
}

.step-arrow {
    font-size: 32px;
    color: #00d9ff;
}

/* Про нас */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content {
    position: relative;
}

.about-text {
    margin-bottom: 30px;
}

.about-lead {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-text p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #00d9ff, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-box {
    background: rgba(26, 31, 58, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: #00d9ff;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.15);
    transform: translateY(-3px);
}

.stat-icon-box {
    font-size: 32px;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d9ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-name {
    font-size: 14px;
    color: #64748b;
}

/* Кнопка Контакти в header */
.header-contacts {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    color: #00d9ff;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.header-contacts svg {
    width: 16px;
    height: 16px;
}

.mobile-support {
    display: none;
}

/* Контакти на десктопі */
.header-contacts.desktop-only {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    color: #00d9ff;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.header-contacts.desktop-only:hover {
    background: rgba(0, 217, 255, 0.15);
    border-color: #00d9ff;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
    transform: translateY(-2px);
}

/* Мобільна версія */
@media (max-width: 768px) {
    /* Показуємо іконку підтримки */
    .mobile-support {
        display: flex;
        position: absolute;
        top: 15px;
        left: 15px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        background: rgba(0, 217, 255, 0.1);
        border: 1px solid rgba(0, 217, 255, 0.3);
        border-radius: 50%;
        color: #00d9ff;
        z-index: 100;
        transition: all 0.3s ease;
    }
    
    .mobile-support:hover {
        background: rgba(0, 217, 255, 0.2);
        border-color: #00d9ff;
        transform: scale(1.05);
    }
	
	/* Ховаємо текстову версію контактів */
    .header-contacts.desktop-only {
        display: none !important;
    }
}

.header-contacts:hover {
    background: rgba(0, 217, 255, 0.15);
    border-color: #00d9ff;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
    transform: translateY(-2px);
}

/* Мобільна версія */
@media (max-width: 768px) {
    .header-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    /* Контакти знизу на мобільній */
    .header-contacts {
        order: 3;
        width: 90%;
        justify-content: center;
    }
	
	    /* Ховаємо контакти на мобільних */
    .header-contacts {
        display: none !important;
    }
    
    .btn {
        width: 90%;
        justify-content: center;
    }
}

/* Адаптив */
@media (max-width: 768px) {
    .social-platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-wrapper {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

