/* VTVgo GLOBAL Header */
.vtv-global-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 9999;
	background: #12151f;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.vtv-global-header .vtv-header-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 72px;
	padding: 12px 15px;
	max-width: 1320px;
	margin: 0 auto;
}

.vtv-global-header .vtv-header-brand {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
}

.vtv-global-header .vtv-logo-link {
	display: block;
	line-height: 0;
}

.vtv-global-header .vtv-logo-img {
	height: 44px;
	width: auto;
	display: block;
}

.vtv-global-header .vtv-global-label {
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.12em;
	color: #9ca3af;
	text-transform: uppercase;
	white-space: nowrap;
}

.vtv-global-header .vtv-header-nav {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	pointer-events: none;
	z-index: 2;
}

.vtv-global-header .vtv-header-nav .vtv-nav-list {
	pointer-events: auto;
}

.vtv-global-header .vtv-nav-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 36px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vtv-global-header .vtv-nav-list a {
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #b8bcc4;
	text-decoration: none;
	transition: color 0.25s ease;
	white-space: nowrap;
}

.vtv-global-header .vtv-nav-list a:hover,
.vtv-global-header .vtv-nav-list a:focus {
	color: #ffffff;
}

.vtv-global-header .vtv-subscribe-btn {
	position: relative;
	z-index: 3;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 28px;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #ffffff;
	text-decoration: none;
	border-radius: 50px;
	background: linear-gradient(90deg, #e60012 0%, #ff4d1a 100%);
	box-shadow: 0 4px 16px rgba(230, 0, 18, 0.35);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	white-space: nowrap;
}

.vtv-global-header .vtv-subscribe-btn:hover,
.vtv-global-header .vtv-subscribe-btn:focus {
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(230, 0, 18, 0.45);
}

.vtv-global-header .vtv-mobile-toggle {
	position: relative;
	z-index: 3;
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 8px;
	border: none;
	background: transparent;
	cursor: pointer;
	flex-shrink: 0;
}

.vtv-global-header .vtv-mobile-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background: #ffffff;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.vtv-global-header .vtv-mobile-toggle.is-active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.vtv-global-header .vtv-mobile-toggle.is-active span:nth-child(2) {
	opacity: 0;
}

.vtv-global-header .vtv-mobile-toggle.is-active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

body.vtv-header-page {
	padding-top: 72px;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

#pricing.pricing-section {
	scroll-margin-top: 80px;
}

#pricing.pricing-section {
	scroll-margin-top: 80px;
}

@media (max-width: 991px) {
	.vtv-global-header .vtv-header-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		transform: none;
		background: #12151f;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		padding: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.35s ease, padding 0.35s ease;
		pointer-events: none;
		z-index: 10;
	}

	.vtv-global-header .vtv-header-nav.is-open {
		pointer-events: auto;
	}

	.vtv-global-header .vtv-header-nav.is-open {
		max-height: 320px;
		padding: 16px 0 20px;
	}

	.vtv-global-header .vtv-nav-list {
		flex-direction: column;
		gap: 0;
		width: 100%;
	}

	.vtv-global-header .vtv-nav-list li {
		width: 100%;
		text-align: center;
	}

	.vtv-global-header .vtv-nav-list a {
		display: block;
		padding: 12px 20px;
	}

	.vtv-global-header .vtv-mobile-toggle {
		display: flex;
	}

	.vtv-global-header .vtv-subscribe-btn {
		padding: 10px 20px;
		font-size: 14px;
	}
}

@media (max-width: 575px) {
	.vtv-global-header .vtv-global-label {
		font-size: 12px;
	}

	.vtv-global-header .vtv-logo-img {
		height: 36px;
	}

	body.vtv-header-page {
		padding-top: 68px;
	}
}
