/**
 * Theme Name:  Cyberff
 */

:root {
	--pv-bg-1: #050505;
	--pv-bg-2: #0e0e0e;
	--pv-neon-a: #00db41;
	--pv-neon-b: #ff00ff;
	--pv-text: #ffffff;
	--pv-muted: rgba(255, 255, 255, 0.85);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

html,
body {
	margin: 0;
	padding: 0;
	color: var(--pv-text);
	font-family: 'Exo 2', system-ui, sans-serif;
	background: #000;
	overflow-x: hidden;
	width: 100%;
	max-width: 100vw;
}

/* ======= СЕКЦІЇ ======= */
.wl-pv-screen {
	padding: clamp(140px, 10vw, 180px) 24px 64px;
	position: relative;
	width: 100%;
	min-height: 100vh;
	overflow: visible;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

/* Градієнт 1 */
.gradient-1 {
	background: radial-gradient(
			circle at 25% 0%,
			rgba(0, 219, 65, 0.28) 0%,
			rgba(0, 219, 65, 0.14) 24%,
			rgba(0, 219, 65, 0.06) 44%,
			transparent 62%
		),
		radial-gradient(
			circle at 75% 100%,
			rgba(255, 0, 255, 0.26) 0%,
			rgba(255, 0, 255, 0.13) 26%,
			rgba(255, 0, 255, 0.06) 48%,
			transparent 66%
		),
		linear-gradient(180deg, #080808 50%, #101010 50%);
}
.gradient-new-1 {
}

/* Градієнт 2 */
.gradient-2 {
	background: radial-gradient(
			circle at 25% 100%,
			rgba(0, 219, 65, 0.26) 0%,
			rgba(0, 219, 65, 0.13) 24%,
			rgba(0, 219, 65, 0.06) 44%,
			transparent 68%
		),
		radial-gradient(
			circle at 75% 0%,
			rgba(255, 0, 255, 0.28) 0%,
			rgba(255, 0, 255, 0.14) 26%,
			rgba(255, 0, 255, 0.06) 48%,
			transparent 70%
		),
		linear-gradient(180deg, #0b0b0b 50%, #050505 50%);
}

/* Градієнт 3 */
.gradient-3 {
	background: radial-gradient(
			circle at 20% 0%,
			rgba(0, 219, 65, 0.26) 0%,
			rgba(0, 219, 65, 0.13) 28%,
			rgba(0, 219, 65, 0.06) 50%,
			transparent 68%
		),
		radial-gradient(
			circle at 75% 100%,
			rgba(255, 0, 255, 0.26) 0%,
			rgba(255, 0, 255, 0.13) 26%,
			rgba(255, 0, 255, 0.06) 48%,
			transparent 66%
		),
		linear-gradient(180deg, #080808 0%, #101010 100%);
}

/* Скляний шар поверх секції */
.wl-pv-screen::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.03);
	-webkit-backdrop-filter: blur(40px) saturate(160%);
	backdrop-filter: blur(40px) saturate(160%);
	mix-blend-mode: overlay;
	z-index: 1;
}

/* Grain-текстура */
.wl-pv-screen::after {
	content: '';
	position: absolute;
	inset: 0;
	opacity: 0.07;
	mix-blend-mode: soft-light;
	background-image: radial-gradient(
			rgba(255, 255, 255, 0.08) 1px,
			transparent 1px
		),
		radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
	background-size: 3px 3px, 5px 5px;
	background-position: 0 0, 10px 5px;
	animation: wl-pv-grain 12s linear infinite;
	z-index: 2;
}

@keyframes wl-pv-grain {
	0% {
		transform: translate(0, 0);
	}
	25% {
		transform: translate(-1%, 1%);
	}
	50% {
		transform: translate(1%, -1%);
	}
	75% {
		transform: translate(-1%, -1%);
	}
	100% {
		transform: translate(0, 0);
	}
}

/* Контент */
.wl-pv-content {
	position: relative;
	z-index: 5;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 40px);
}

.bluring {
	width: 100vw;
	height: 25vh;
	position: absolute;
	bottom: -15vh;

	backdrop-filter: blur(20px);
	z-index: 2;
}

.wl-pv-title {
	font-size: clamp(3rem, 6vw, 6rem);
	font-weight: 900;
	background-image: linear-gradient(90deg, var(--pv-neon-a), var(--pv-neon-b));
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	filter: drop-shadow(0 0 10px rgba(0, 219, 65, 0.4))
		drop-shadow(0 0 15px rgba(255, 0, 255, 0.3));
	animation: wl-pv-shine 8s linear infinite;
	background-size: 200% 100%;
	text-align: center;
	line-height: 1.1;
	margin: 0;
}

@keyframes wl-pv-shine {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 200% 50%;
	}
}

.wl-pv-sub {
	margin-top: 16px;
	font-size: clamp(1rem, 2vw, 1.5rem);
	color: var(--pv-muted);
	text-shadow: 0 0 8px rgba(0, 219, 65, 0.3);
	text-align: center;
	line-height: 1.6;
}

/* ============================
       HEADER - STICKY
       ============================ */
.pv-head {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: min(1200px, 90%);
	padding: 12px 28px;
	border-radius: 20px;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px) saturate(140%);
	-webkit-backdrop-filter: blur(20px) saturate(140%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1),
		0 8px 24px rgba(0, 0, 0, 0.45);
	z-index: 100;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pv-head.is-stuck {
	top: 0;
	width: 100%;
	border-radius: 0;
	padding: 8px 28px;
	background: rgba(5, 5, 5, 0);
	border: none;
	border-bottom: 1px solid rgba(0, 219, 65, 0.2);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 219, 65, 0.1);
}

.pv-hin {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

/* Логотип */
.pv-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.pv-logo-img {
	height: 52px;
	transition: transform 0.3s ease, opacity 0.3s ease, height 0.3s ease;
	filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.6));
}

.pv-logo:hover .pv-logo-img {
	transform: scale(0.95);
	opacity: 0.9;
}

.pv-head.is-stuck .pv-logo-img {
	height: 42px;
}

.pv-nav {
	display: flex;
	align-items: center;
	gap: 14px;
}

.pv-nav a {
	text-decoration: none;
	color: #fff;
	font-weight: 600;
	letter-spacing: 0.4px;
	padding: 10px 12px;
	border-radius: 12px;
	transition: color 0.2s ease, text-shadow 0.2s ease;
}

.pv-nav a:hover {
	color: var(--pv-neon-a);
	text-shadow: 0 0 8px rgba(0, 219, 65, 0.6);
}

.pv-nav a.active {
	color: var(--pv-neon-b);
	text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

/* Burger */
.pv-burger {
	display: none;
	position: relative;
	width: 40px;
	height: 40px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(0, 0, 0, 0.65);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	cursor: pointer;
	padding: 0;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25),
		0 0 12px rgba(0, 219, 65, 0.35), 0 0 14px rgba(255, 0, 255, 0.25);
}

.pv-burger span {
	position: absolute;
	left: 50%;
	width: 22px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--pv-neon-a), var(--pv-neon-b));
	transform: translateX(-50%);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.pv-burger span:nth-child(1) {
	top: 11px;
}
.pv-burger span:nth-child(2) {
	top: 18px;
}
.pv-burger span:nth-child(3) {
	top: 25px;
}

.pv-burger.is-open span:nth-child(1) {
	top: 18px;
	transform: translateX(-50%) rotate(45deg);
}
.pv-burger.is-open span:nth-child(2) {
	opacity: 0;
}
.pv-burger.is-open span:nth-child(3) {
	top: 18px;
	transform: translateX(-50%) rotate(-45deg);
}

.pv-burger.is-open {
	background: rgba(0, 0, 0, 0.9);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25),
		0 0 16px rgba(0, 219, 65, 0.6), 0 0 18px rgba(255, 0, 255, 0.45);
}

@media (max-width: 820px) {
	.pv-burger {
		display: block;
	}
	.pv-nav {
		display: none;
	}
}

/* Mobile nav */
.pv-nav-mobile {
	position: fixed;
	inset: 70px 0 0 0;
	padding: 16px 20px 24px;
	background: rgba(10, 10, 10, 0.85);
	-webkit-backdrop-filter: blur(16px) saturate(140%);
	backdrop-filter: blur(16px) saturate(140%);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
	display: grid;
	gap: 10px;
	transform: translateY(-12px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease, transform 0.25s ease;
	z-index: 90;
}

.pv-nav-mobile a {
	text-decoration: none;
	color: #fff;
	font-weight: 700;
	font-size: 0.95rem;
	padding: 10px 12px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.pv-nav-mobile a:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.22);
	transform: translateY(-1px);
}

.pv-nav-mobile.is-open {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

/* ---- КНОПКИ ---- */
.pv-glass-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 22px;
	border-radius: 16px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	background: radial-gradient(
			120% 120% at 10% 10%,
			rgba(255, 255, 255, 0.28) 0%,
			rgba(255, 255, 255, 0.04) 40%,
			rgba(255, 255, 255, 0) 60%
		),
		rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.22);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25),
		0 8px 24px rgba(0, 0, 0, 0.35);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	transition: transform 180ms ease, box-shadow 180ms ease;
	text-decoration: none;
	cursor: pointer;
}

.pv-glass-btn::after {
	content: '';
	position: absolute;
	inset: -2px;
	z-index: -1;
	border-radius: 18px;
	filter: blur(16px);
	opacity: 0.7;
}

.pv-glass-btn:hover {
	transform: translateY(-1px);
}

.pv-glass-btn--primary {
	background-color: rgba(0, 219, 65, 0.1);
	border-color: rgba(0, 219, 65, 0.2);
	text-shadow: 0 1px 8px rgba(0, 219, 65, 0.4);
}

.pv-glass-btn--primary::after {
	background: radial-gradient(
		60% 60% at 50% 50%,
		rgba(0, 219, 65, 0.4),
		transparent 70%
	);
	box-shadow: 0 0 32px rgba(0, 219, 65, 0.4);
}

.pv-glass-btn--alt {
	background-color: rgba(255, 0, 255, 0.1);
	border-color: rgba(255, 0, 255, 0.2);
	text-shadow: 0 1px 8px rgba(255, 0, 255, 0.4);
}

.pv-glass-btn--alt::after {
	background: radial-gradient(
		60% 60% at 50% 50%,
		rgba(255, 0, 255, 0.4),
		transparent 70%
	);
	box-shadow: 0 0 32px rgba(255, 0, 255, 0.4);
}

/* Hero content */
.hero-content {
	text-align: center;
}

.pv-actions {
	margin-top: 32px;
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
}

/* TITLES */
.pv-sec-title {
	margin: 0 0 20px;
	font-size: clamp(2rem, 6vw, 3.5rem);
	font-weight: 900;
	background-image: linear-gradient(90deg, var(--pv-neon-a), var(--pv-neon-b));
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	line-height: 1.2;
}

.pv-sec-sub {
	margin: 16px auto 32px;
	font-size: clamp(1rem, 2.5vw, 1.3rem);
	color: var(--pv-muted);
	max-width: 800px;
	line-height: 1.6;
}

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

/* CARDS */
.pv-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
	gap: 24px;
	margin-top: 40px;
}

.pv-card {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	padding: 28px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(18px) saturate(140%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12),
		0 10px 28px rgba(0, 0, 0, 0.35);
	transition: all 0.3s ease;
}

.pv-card::before {
	content: '';
	position: absolute;
	inset: -20%;
	background: radial-gradient(
			circle at 20% 30%,
			rgba(0, 219, 65, 0.2),
			transparent 50%
		),
		radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.15), transparent 50%);
	filter: blur(30px);
	z-index: 0;
	opacity: 0.8;
}

.pv-card:hover {
	transform: translateY(-6px);
	border-color: rgba(255, 255, 255, 0.25);
}

.pv-card-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 14px;
	align-items: start;
}

.pv-badge {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
	border: 1px solid rgba(255, 255, 255, 0.25);
	flex-shrink: 0;
	align-self: start;
}

.pv-badge::after {
	content: '';
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--pv-neon-a), var(--pv-neon-b));
}

.pv-card h3 {
	margin: 0 0 12px;
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	font-weight: 800;
}

.pv-card p {
	margin: 0 0 12px;
	color: var(--pv-muted);
	line-height: 1.65;
	font-size: 0.95rem;
}

.pv-card p:last-child {
	margin-bottom: 0;
}

.pv-cta-row {
	margin-top: 40px;
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
}

/* APPROACH */
.pv-approach-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
	gap: 24px;
	margin-top: 40px;
}

.pv-approach-item {
	padding: 32px 28px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(16px);
	transition: all 0.3s ease;
}

.pv-approach-item:hover {
	transform: translateY(-4px);
}

.pv-approach-item h3 {
	font-size: clamp(1.2rem, 2.5vw, 1.4rem);
	font-weight: 800;
	margin: 0 0 16px;
	color: var(--pv-neon-a);
}

.pv-approach-item p {
	margin: 0;
	color: var(--pv-muted);
	line-height: 1.7;
	font-size: 0.98rem;
}

/* FAQ */
/* ЛОГОТИПИ КЛІЄНТІВ */
.pv-logos-section {
	padding: 60px 0;
}

.pv-logos-track {
	display: flex;
	gap: 60px;
	animation: pv-logos-scroll 30s linear infinite;
	width: fit-content;
}

@keyframes pv-logos-scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.pv-logo-item {
	flex-shrink: 0;
	width: 240px;
	height: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.pv-logo-item:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-4px);
}

.pv-logo-item img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.pv-logo-item:hover img {
	opacity: 1;
}

@media (max-width: 768px) {
	.pv-logo-item {
		width: 180px;
		height: 80px;
	}

	.pv-logos-track {
		gap: 40px;
	}
}

/* FAQ */
.pv-faq-list {
	max-width: 900px;
	margin: 40px auto 0;
}

.pv-faq-item {
	margin-bottom: 16px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	overflow: hidden;
}

.pv-faq-question {
	width: 100%;
	padding: 20px 24px;
	background: none;
	border: none;
	color: #fff;
	font-size: clamp(1rem, 2vw, 1.15rem);
	font-weight: 700;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	font-family: inherit;
}

.pv-faq-answer {
	padding: 0 24px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	color: var(--pv-muted);
	line-height: 1.7;
}

.pv-faq-item.active .pv-faq-answer {
	max-height: 600px;
	padding: 0 24px 20px;
}

.pv-faq-icon {
	transition: transform 0.3s ease;
}

.pv-faq-item.active .pv-faq-icon {
	transform: rotate(180deg);
}

/* CONTACT FORM */
.pv-contact-section {
	display: grid;
	grid-template-columns: 500px 1fr;
	gap: 80px;
	align-items: center;
	margin-top: 40px;
}

.pv-contact-image {
	text-align: center;
	position: relative;
}

.pv-contact-image img {
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

.pv-contact-form {
	max-width: 100%;
	padding: 32px 28px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(20px);
}

.pv-form-group {
	margin-bottom: 20px;
}

.pv-form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 700;
	color: var(--pv-muted);
	font-size: 0.9rem;
}

.pv-form-group input,
.pv-form-group textarea {
	width: 100%;
	padding: 12px 16px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-family: inherit;
	font-size: 0.95rem;
}

.pv-form-group textarea {
	min-height: 120px;
	resize: vertical;
}

.pv-form-submit {
	width: 100%;
	padding: 14px;
	border: none;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--pv-neon-a), var(--pv-neon-b));
	color: #000;
	font-weight: 800;
	font-size: 0.95rem;
	cursor: pointer;
	text-transform: uppercase;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pv-form-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 219, 65, 0.4),
		0 8px 24px rgba(255, 0, 255, 0.3);
}

@media (max-width: 1024px) {
	.pv-contact-section {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.pv-contact-image {
		order: -1;
		max-width: 400px;
		margin: 0 auto;
	}

	.pv-contact-form {
		padding: 28px 24px;
	}
}

/* FOOTER */
.pv-footer {
	position: relative;
	padding: 60px 24px 24px;
	color: var(--pv-text);
	background: radial-gradient(
			circle at 15% 20%,
			rgba(0, 219, 65, 0.18),
			transparent 60%
		),
		radial-gradient(circle at 85% 70%, rgba(255, 0, 255, 0.14), transparent 62%),
		linear-gradient(180deg, #080808 0%, #101010 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	overflow: hidden;
}

.pv-footer::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(30px) saturate(140%);
	mix-blend-mode: overlay;
	z-index: 1;
}

.pv-footer::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.08;
	mix-blend-mode: soft-light;
	background-image: radial-gradient(
			rgba(255, 255, 255, 0.08) 1px,
			transparent 1px
		),
		radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
	background-size: 2px 2px, 4px 4px;
	background-position: 0 0, 10px 5px;
	z-index: 2;
}

.pv-foot-wrap {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 5;
}

.pv-foot-top {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
	gap: 32px;
}

@media (max-width: 980px) {
	.pv-foot-top {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.pv-foot-top {
		grid-template-columns: 1fr;
	}
}

.pv-foot-logo {
	height: 40px;
	filter: drop-shadow(0 0 8px rgba(0, 219, 65, 0.45))
		drop-shadow(0 0 10px rgba(255, 0, 255, 0.35));
}

.pv-foot-col h4 {
	margin: 0 0 16px;
	font-weight: 800;
	font-size: 1.05rem;
}

.pv-foot-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.pv-foot-list a {
	color: var(--pv-muted);
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.2s ease, text-shadow 0.2s ease, transform 0.2s ease;
	display: inline-block;
}

.pv-foot-list a:hover {
	color: #fff;
	text-shadow: 0 0 8px rgba(0, 219, 65, 0.4);
	transform: translateX(4px);
}

.pv-foot-bottom {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px dashed rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	color: var(--pv-muted);
	font-size: 0.9rem;
}

@media (max-width: 640px) {
	.pv-foot-bottom {
		flex-direction: column;
		text-align: center;
	}
}

/* SPLIT SECTION */
.pv-split-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-top: 40px;
}

@media (max-width: 1024px) {
	.pv-split-section {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.pv-split-image {
		order: -1;
		text-align: center;
	}
}

.pv-split-image img {
	max-width: 100%;
	height: auto;
}

/* СЕКЦІЯ "ТРІШКИ ПРО ТЕ ХТО МИ" */
.pv-who-section {
	display: grid;
	grid-template-columns: 1fr 480px;
	gap: 80px;
	align-items: center;
	margin-top: 40px;
}

.pv-who-text h3 {
	font-size: clamp(1rem, 2vw, 1.2rem);
	font-weight: 800;
	margin: 0 0 24px;
	line-height: 1.5;
}

.pv-who-text h3 .green-text {
	color: var(--pv-neon-a);
}

.pv-who-description {
	color: var(--pv-muted);
	line-height: 1.75;
	font-size: 1rem;
	margin-bottom: 24px;
}

.pv-who-text p {
	color: var(--pv-muted);
	line-height: 1.75;
	font-size: 0.98rem;
	margin-bottom: 16px;
}

.pv-who-text p:last-of-type {
	margin-bottom: 32px;
}

.pv-who-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.pv-who-image {
	text-align: center;
	position: relative;
}

.pv-who-image img {
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

@media (max-width: 1024px) {
	.pv-who-section {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.pv-who-image {
		order: -1;
		max-width: 400px;
		margin: 0 auto;
	}
}

/* ===== СЕКЦІЯ "КЛЮЧ ДО УСПІХУ" - НОВА ВЕРСІЯ ===== */
#key.wl-pv-screen {
	padding: clamp(80px, 8vw, 120px) 24px 80px;
	min-height: auto;
}

.pv-key-content {
	position: relative;
	z-index: 5;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 40px);
}

.pv-key-title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 900;
	text-align: center;
	margin: 0 0 60px;
	line-height: 1.2;
	background-image: linear-gradient(90deg, var(--pv-neon-a), var(--pv-neon-b));
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	filter: drop-shadow(0 0 10px rgba(0, 219, 65, 0.4))
		drop-shadow(0 0 15px rgba(255, 0, 255, 0.3));
	animation: wl-pv-shine 8s linear infinite;
	background-size: 200% 100%;
}

.pv-key-grid {
	display: grid;
	grid-template-columns: 1fr 450px;
	gap: 80px;
	align-items: center;
}

.pv-key-steps {
	display: grid;
	gap: 24px;
}

.pv-key-step {
	position: relative;
	padding: 28px 32px 28px 80px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.03);
	border: 2px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px) saturate(140%);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	overflow: hidden;
}

.pv-key-step::before {
	content: '';
	position: absolute;
	inset: 0;
	opacity: 0; /* без градієнта */
}

.pv-key-step:hover {
	transform: translateX(4px);
	border-color: rgba(255, 255, 255, 0.15);
	box-shadow: none;
}

.pv-key-step:nth-child(5):hover {
	border-color: rgba(255, 255, 255, 0.15);
	box-shadow: none;
}

.pv-key-step-number {
	position: absolute;
	left: 24px;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 1.4rem;
	background: linear-gradient(135deg, var(--pv-neon-a), #00ff6a);
	color: #000;
	box-shadow: 0 0 20px rgba(0, 219, 65, 0.5),
		inset 0 2px 0 rgba(255, 255, 255, 0.3);
	transition: all 0.4s ease;
}

.pv-key-step:nth-child(5) .pv-key-step-number {
	background: linear-gradient(135deg, var(--pv-neon-b), #ff3cff);
	box-shadow: 0 0 20px rgba(255, 0, 255, 0.5),
		inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.pv-key-step:hover .pv-key-step-number {
	transform: translateY(-50%) rotate(360deg) scale(1.1);
	box-shadow: 0 0 30px rgba(0, 219, 65, 0.8),
		inset 0 2px 0 rgba(255, 255, 255, 0.5);
}

.pv-key-step:nth-child(5):hover .pv-key-step-number {
	box-shadow: 0 0 30px rgba(255, 0, 255, 0.8),
		inset 0 2px 0 rgba(255, 255, 255, 0.5);
}

.pv-key-step h3 {
	margin: 0 0 12px;
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	font-weight: 800;
	color: var(--pv-neon-a);
	position: relative;
	transition: all 0.3s ease;
}

.pv-key-step:nth-child(5) h3 {
	color: var(--pv-neon-b);
}

.pv-key-step:hover h3 {
	transform: translateX(4px);
	text-shadow: 0 0 20px currentColor;
}

.pv-key-step p {
	margin: 0;
	color: var(--pv-muted);
	line-height: 1.6;
	font-size: 0.95rem;
	position: relative;
}

.pv-key-character {
	position: relative;
	text-align: center;
}

.pv-key-character::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 120%;
	height: 120%;
	background: radial-gradient(
		circle,
		rgba(0, 219, 65, 0.15) 0%,
		rgba(255, 0, 255, 0.1) 50%,
		transparent 70%
	);
	border-radius: 50%;
	filter: blur(40px);
	animation: pv-glow-pulse 4s ease-in-out infinite;
	z-index: 0;
}

@keyframes pv-glow-pulse {
	0%,
	100% {
		opacity: 0.6;
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.1);
	}
}

.pv-key-character img {
	position: relative;
	z-index: 1;
	max-width: 70%;
	height: auto;
	filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.6));
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Декоративні елементи */
.pv-key-steps::before,
.pv-key-steps::after {
	content: '';
	position: absolute;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.3;
	pointer-events: none;
}

.pv-key-steps::before {
	/* top: -50px;
      left: -50px;
      background: var(--pv-neon-a); */
}

.pv-key-steps::after {
	bottom: -50px;
	right: -50px;
	background: var(--pv-neon-b);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
	.pv-key-grid {
		grid-template-columns: 1fr 380px;
		gap: 60px;
	}
}

@media (max-width: 968px) {
	#key.wl-pv-screen {
		padding: clamp(60px, 8vw, 80px) 24px 60px;
	}

	.pv-key-title {
		margin: 0 0 40px;
	}

	.pv-key-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.pv-key-character {
		order: -1;
		max-width: 320px;
		margin: 0 auto;
	}

	.pv-key-step {
		padding: 24px 28px 24px 76px;
	}

	.pv-key-step-number {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
		left: 20px;
	}
}

@media (max-width: 900px) {
	.wl-pv-screen {
		min-height: auto;
	}

	.pv-card-grid,
	.pv-approach-grid,
	.pv-team-grid {
		grid-template-columns: 1fr;
	}

	.pv-contact-form {
		padding: 32px 24px;
	}
}

/* ===== СЕКЦІЯ "ЯК МИ ПРАЦЮЄМО" - PUNK VISION STYLE ===== */

#uc_unlimited_timeline_elementor_72a1847 {
	direction: ltr;
	padding-top: 30px;
	max-width: 1100px;
	margin: 60px auto 0;
}

#uc_unlimited_timeline_elementor_72a1847 * {
	box-sizing: border-box;
}

#uc_unlimited_timeline_elementor_72a1847 .ue_timeline_item {
	display: flex;
	flex-direction: row-reverse;
}

#uc_unlimited_timeline_elementor_72a1847 .ue_timeline_item_icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-grow: 0;
	flex-shrink: 0;
	width: 80px;
}

/* ЛІНІЯ - ЯСКРАВІША */
#uc_unlimited_timeline_elementor_72a1847 .ue_timeline_item_icon_line {
	flex-grow: 1;
	width: 3px;
	background: rgba(0, 219, 65, 0.25);
	position: relative;
	overflow: hidden;
	border-radius: 999px;
	box-shadow: 0 0 8px rgba(0, 219, 65, 0.3);
}

#uc_unlimited_timeline_elementor_72a1847 .ue_timeline_item_icon_line::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	background: linear-gradient(
		180deg,
		var(--pv-neon-a) 0%,
		var(--pv-neon-b) 100%
	);
	transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 0 25px rgba(0, 219, 65, 0.8), 0 0 40px rgba(255, 0, 255, 0.6);
	border-radius: 999px;
}

#uc_unlimited_timeline_elementor_72a1847
	.ue_timeline_item_icon_line.active::before {
	height: 100%;
}

#uc_unlimited_timeline_elementor_72a1847 .ue_timeline_item_icon_line_offset {
	flex-grow: 0;
	flex-shrink: 0;
	height: 0px;
	width: 3px;
	background: var(--pv-neon-a);
	border-radius: 999px;
	box-shadow: 0 0 20px rgba(0, 219, 65, 1);
}

/* ІКОНКИ - ЯСКРАВІШІ */
#uc_unlimited_timeline_elementor_72a1847 .ue_timeline_item_icon_holder {
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1em;
	flex-direction: column;
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
	width: 80px;
	height: 80px;
	font-size: 36px;
	background: rgba(0, 219, 65, 0.12);
	color: rgba(0, 219, 66, 0.322);
	border-radius: 100px;
	/* border: 2px solid rgba(0,219,65,0.3); */
	backdrop-filter: blur(20px) saturate(140%);
	-webkit-backdrop-filter: blur(20px) saturate(140%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
		0 0 15px rgba(0, 219, 65, 0.4), 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* АКТИВНА ІКОНКА - ЯСКРАВЕ СВІЧЕННЯ */
#uc_unlimited_timeline_elementor_72a1847
	.ue_timeline_item_icon.active
	.ue_timeline_item_icon_holder {
	background: linear-gradient(135deg, #00db428e 0%, #ff00ff86 100%);

	color: #2ef37a;
	border-color: transparent;
	box-shadow: 0 0 40px rgba(0, 219, 66, 0.377),
		0 0 60px rgba(255, 0, 255, 0.342), inset 0 2px 0 rgba(255, 255, 255, 0);
	/* transform: scale(1.15); */
	/* filter: drop-shadow(0 0 20px rgba(0,219,65,0.8))
          drop-shadow(0 0 25px rgba(255,0,255,0.6)); */
}

#uc_unlimited_timeline_elementor_72a1847 .ue_timeline_item_icon_holder i {
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

#uc_unlimited_timeline_elementor_72a1847 .ue_timeline_item_content {
	flex: 1;
	flex-shrink: 0;
	flex-direction: row-reverse;
	display: flex;
	margin-bottom: 40px;
	align-items: flex-start;
}

#uc_unlimited_timeline_elementor_72a1847 .ue_timeline_item_spacer {
	flex: 1;
	flex-shrink: 0;
	display: none;
}

/* КАРТКИ - ЯСКРАВІШІ */
#uc_unlimited_timeline_elementor_72a1847 .ue_timeline_item_content_main {
	position: relative;
	flex-grow: 1;
	word-break: break-word;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(0, 219, 65, 0.15);
	border-radius: 20px;
	padding: 28px 32px;
	text-align: left;
	opacity: 0.6;
	transform: translateY(-35%);
	backdrop-filter: blur(20px) saturate(140%);
	-webkit-backdrop-filter: blur(20px) saturate(140%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1),
		0 10px 28px rgba(0, 0, 0, 0.4);
	overflow: hidden;
}

#uc_unlimited_timeline_elementor_72a1847
	.ue_timeline_item_content_main::before {
	content: '';
	position: absolute;
	inset: -30%;
	background: radial-gradient(
			circle at 20% 30%,
			rgba(0, 219, 65, 0.2),
			transparent 50%
		),
		radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.15), transparent 50%);
	filter: blur(40px);
	z-index: 0;
	opacity: 0.4;
	transition: opacity 0.6s ease;
}

/* АКТИВНА КАРТКА */
#uc_unlimited_timeline_elementor_72a1847
	.ue_timeline_item.active
	.ue_timeline_item_content_main {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(0, 219, 65, 0.4);
	opacity: 1;
	/* transform: translateY(0); */
	box-shadow: 0 0 50px rgba(0, 219, 65, 0.25), 0 20px 60px rgba(0, 0, 0, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

#uc_unlimited_timeline_elementor_72a1847
	.ue_timeline_item.active
	.ue_timeline_item_content_main::before {
	opacity: 0.8;
}

#uc_unlimited_timeline_elementor_72a1847 .ue_timeline_item_content_main:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgb(7, 255, 102) !important;
	transition: all 0.4s ease;
	/* box-shadow:
    0 0 20px rgba(0, 219, 66, 0.993),
    0 0 20px rgb(255, 0, 255) !important; */
	/* transform: translateY(-4px); */
}

/* СТРІЛОЧКИ - ВИПРАВЛЕННЯ ПОЗИЦІЇ */
#uc_unlimited_timeline_elementor_72a1847 .ue_timeline_item_pointer_spacer {
	flex-grow: 0;
	flex-shrink: 0;
	width: 20px;
}

#uc_unlimited_timeline_elementor_72a1847 .ue_timeline_item_pointer {
	flex-grow: 0;
	flex-shrink: 0;
	margin-top: 10px;
	position: relative;
	width: 20px;
}

/* СТРІЛОЧКА - ЯСКРАВІША */
#uc_unlimited_timeline_elementor_72a1847
	.ue_timeline_item
	.ue_timeline_item_content
	.ue_timeline_item_pointer
	.ue_timeline_item_pointer_inside {
	position: relative;
	clip-path: polygon(0 50%, 100% 0, 100% 100%);
	transition: all 0.3s ease;
	background: rgba(0, 219, 65, 0.5);
	height: 30px;
	margin-top: 0px;
	filter: drop-shadow(0 0 10px rgba(0, 219, 65, 0.6));
}

#uc_unlimited_timeline_elementor_72a1847
	.ue_timeline_item.active
	.ue_timeline_item_pointer_inside {
	background: var(--pv-neon-a);
	filter: drop-shadow(0 0 15px rgba(0, 219, 65, 1));
}

#uc_unlimited_timeline_elementor_72a1847
	.ue_timeline_item:last-child
	.ue_timeline_item_icon_line {
	display: none;
}

#uc_unlimited_timeline_elementor_72a1847
	.ue_timeline_item:last-child
	.ue_timeline_item_content {
	margin-bottom: 0px;
}

/* ЗИГЗАГ */
#uc_unlimited_timeline_elementor_72a1847 .ue_timeline_item:nth-child(odd) {
	flex-direction: row;
}

#uc_unlimited_timeline_elementor_72a1847
	.ue_timeline_item:nth-child(odd)
	.ue_timeline_item_content {
	flex-direction: row;
}

#uc_unlimited_timeline_elementor_72a1847 .ue_timeline_item_spacer {
	display: block;
}

#uc_unlimited_timeline_elementor_72a1847
	.ue_timeline_item:nth-child(odd)
	.ue_timeline_item_content
	.ue_timeline_item_pointer
	.ue_timeline_item_pointer_inside {
	clip-path: polygon(100% 50%, 0 0, 0 100%);
}

/* ТЕКСТ - ЯСКРАВІШИЙ */
.ue_timeline_item_title {
	position: relative;
	z-index: 1;
	font-size: clamp(1.15rem, 2.5vw, 1.35rem);
	font-weight: 800;
	color: rgba(255, 255, 255, 0.8);
	margin: 0 0 14px;
	transition: all 0.6s ease;
}

#uc_unlimited_timeline_elementor_72a1847
	.ue_timeline_item.active
	.ue_timeline_item_title {
	color: var(--pv-neon-a);
	text-shadow: 0 0 25px rgba(0, 219, 65, 0.7);
}

.ue_timeline_item_text {
	position: relative;
	z-index: 1;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

.ue_timeline_item_text p {
	margin: 0;
	font-size: clamp(0.92rem, 1.8vw, 1rem);
	line-height: 1.7;
}

/* RESPONSIVE */
@media only screen and (max-width: 768px) {
	#uc_unlimited_timeline_elementor_72a1847 {
		margin: 40px auto 0;
	}

	#uc_unlimited_timeline_elementor_72a1847 .ue_timeline_item {
		flex-direction: row-reverse !important;
	}

	#uc_unlimited_timeline_elementor_72a1847
		.ue_timeline_item
		.ue_timeline_item_content {
		flex-direction: row-reverse !important;
		margin-bottom: 30px;
	}

	#uc_unlimited_timeline_elementor_72a1847 .ue_timeline_item_spacer {
		display: none;
	}

	#uc_unlimited_timeline_elementor_72a1847
		.ue_timeline_item
		.ue_timeline_item_content
		.ue_timeline_item_pointer
		.ue_timeline_item_pointer_inside {
		clip-path: polygon(0 50%, 100% 0, 100% 100%) !important;
	}

	#uc_unlimited_timeline_elementor_72a1847 .ue_timeline_item_icon {
		width: 60px;
	}

	#uc_unlimited_timeline_elementor_72a1847 .ue_timeline_item_icon_holder {
		width: 60px;
		height: 60px;
		font-size: 28px;
	}

	#uc_unlimited_timeline_elementor_72a1847 .ue_timeline_item_content_main {
		padding: 22px 24px;
	}

	.ue_timeline_item_title {
		font-size: 1.1rem;
		margin-bottom: 10px;
	}

	.ue_timeline_item_text p {
		font-size: 0.9rem;
	}
}

@media only screen and (max-width: 480px) {
	#uc_unlimited_timeline_elementor_72a1847 .ue_timeline_item_icon {
		width: 50px;
	}

	#uc_unlimited_timeline_elementor_72a1847 .ue_timeline_item_icon_holder {
		width: 50px;
		height: 50px;
		font-size: 24px;
	}

	#uc_unlimited_timeline_elementor_72a1847 .ue_timeline_item_content_main {
		padding: 20px;
	}

	#uc_unlimited_timeline_elementor_72a1847 .ue_timeline_item_pointer_spacer {
		width: 12px;
	}
}
