* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Colors */
	--tv-bg-main: #f4f5f7;
	--tv-bg-content: #ffffff;
	--tv-accent-primary: #2563eb;
	--tv-accent-secondary: #0ea5e9;
	--tv-accent-gray: #e5e7eb;
	--tv-text-primary: #1e293b;
	--tv-text-secondary: #475569;
	--tv-text-heading: #0f172a;
	--tv-footer-bg: #f1f5f9;
	--tv-border-color: #e5e7eb;

	/* Transitions */
	--tv-transition: 0.3s ease;
	--tv-transition-slow: 0.5s ease;

	/* Shadows */
	--tv-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
	--tv-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
	--tv-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

	/* Border Radius */
	--tv-radius-sm: 8px;
	--tv-radius-md: 12px;
	--tv-radius-lg: 16px;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
		sans-serif;
	background-color: var(--tv-bg-main);
	color: var(--tv-text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--tv-transition);
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	outline: none;
	transition: var(--tv-transition);
}

ul,
ol {
	list-style: none;
}

/* ==========================================
   2. TYPOGRAPHY
   ========================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: var(--tv-text-heading);
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	margin-bottom: 1.5rem;
}

h2 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
	margin-bottom: 1rem;
	color: var(--tv-text-secondary);
	line-height: 1.8;
}

.tv-text-accent {
	color: var(--tv-accent-primary);
}

.tv-text-secondary-accent {
	color: var(--tv-accent-secondary);
}

/* ==========================================
   3. LAYOUT UTILITIES
   ========================================== */

.tv-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.tv-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

.tv-container-narrow {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 2rem;
}

.tv-section {
	padding: 5rem 0;
}

.tv-section-sm {
	padding: 3rem 0;
}

.tv-section-lg {
	padding: 7rem 0;
}

/* Grid System */
.tv-grid {
	display: grid;
	gap: 2rem;
}

.tv-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.tv-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.tv-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

.tv-grid-auto {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Flexbox Utilities */
.tv-flex {
	display: flex;
}

.tv-flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.tv-flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.tv-flex-column {
	display: flex;
	flex-direction: column;
}

/* ==========================================
   4. HEADER
   ========================================== */

.tv-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: var(--tv-bg-content);
	border-bottom: 1px solid var(--tv-border-color);
	z-index: 1000;
	transition: var(--tv-transition);
}

.tv-header.tv-scrolled {
	box-shadow: var(--tv-shadow-md);
}

.tv-header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 2rem;
	max-width: 1400px;
	margin: 0 auto;
}

.tv-logo {
	font-family: 'Poppins', sans-serif;
	font-size: 1.75rem;
	font-weight: 600;
	color: var(--tv-accent-primary);
	background: linear-gradient(
		135deg,
		var(--tv-accent-primary),
		var(--tv-accent-secondary)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.5px;
}

.tv-nav {
	display: flex;
	gap: 2.5rem;
	align-items: center;
}

.tv-nav-link {
	color: var(--tv-text-primary);
	font-weight: 500;
	position: relative;
	padding: 0.5rem 0;
}

.tv-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--tv-accent-secondary);
	transition: width var(--tv-transition);
}

.tv-nav-link:hover::after,
.tv-nav-link.tv-active::after {
	width: 100%;
}

.tv-nav-link:hover {
	color: var(--tv-accent-secondary);
}

.tv-burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 0.5rem;
}

.tv-burger-line {
	width: 28px;
	height: 3px;
	background-color: var(--tv-text-primary);
	transition: var(--tv-transition);
	border-radius: 2px;
}

.tv-burger.tv-active .tv-burger-line:nth-child(1) {
	transform: rotate(45deg) translate(4px, 4px);
}

.tv-burger.tv-active .tv-burger-line:nth-child(2) {
	opacity: 0;
}

.tv-burger.tv-active .tv-burger-line:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

.tv-mobile-nav {
	display: none;
	position: fixed;
	top: 85px;
	left: 0;
	right: 0;
	background-color: var(--tv-bg-content);
	padding: 2rem;
	box-shadow: var(--tv-shadow-lg);
	transform: translateY(-100%);
	opacity: 0;
	transition: transform var(--tv-transition), opacity var(--tv-transition);
}

.tv-mobile-nav.tv-active {
	transform: translateY(0);
	opacity: 1;
}

.tv-mobile-nav-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.tv-mobile-nav-link {
	font-size: 1.1rem;
	color: var(--tv-text-primary);
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--tv-accent-gray);
}

/* ==========================================
   5. BUTTONS
   ========================================== */

.tv-btn {
	display: inline-block;
	padding: 1rem 2rem;
	font-weight: 500;
	border-radius: var(--tv-radius-sm);
	cursor: pointer;
	transition: var(--tv-transition);
	text-align: center;
	font-size: 1rem;
}

.tv-btn-primary {
	background-color: var(--tv-accent-primary);
	color: white;
	box-shadow: var(--tv-shadow-sm);
}

.tv-btn-primary:hover {
	background-color: #1d4ed8;
	box-shadow: var(--tv-shadow-md);
	transform: translateY(-2px);
}

.tv-btn-secondary {
	background-color: var(--tv-accent-secondary);
	color: white;
	box-shadow: var(--tv-shadow-sm);
}

.tv-btn-secondary:hover {
	background-color: #0284c7;
	box-shadow: var(--tv-shadow-md);
	transform: translateY(-2px);
}

.tv-btn-outline {
	background-color: transparent;
	border: 2px solid var(--tv-accent-primary);
	color: var(--tv-accent-primary);
}

.tv-btn-outline:hover {
	background-color: var(--tv-accent-primary);
	color: white;
}

.tv-btn-group {
	display: flex;
	gap: 1rem;
	align-items: center;
	flex-wrap: wrap;
}

/* ==========================================
   6. HERO SECTION
   ========================================== */

.tv-hero {
	min-height: calc(100vh - 74px);
	display: flex;
	align-items: center;
	background: linear-gradient(
		135deg,
		rgba(37, 99, 235, 0.05) 0%,
		rgba(14, 165, 233, 0.05) 100%
	);
	position: relative;
	overflow: hidden;
}

.tv-hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: url('assets/tv-hero.webp') center/cover;
	opacity: 0.3;
}

.tv-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 4rem 0;
}

.tv-hero h1 {
	margin-bottom: 1.5rem;
	animation: tv-fade-up 0.8s ease-out;
}

.tv-hero-subtitle {
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	color: var(--tv-text-secondary);
	margin-bottom: 2.5rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	animation: tv-fade-up 0.8s ease-out 0.2s both;
}

.tv-hero .tv-btn-group {
	justify-content: center;
	animation: tv-fade-up 0.8s ease-out 0.4s both;
}

/* ==========================================
   7. CARDS
   ========================================== */

.tv-card {
	background-color: var(--tv-bg-content);
	border-radius: var(--tv-radius-md);
	padding: 2rem;
	box-shadow: var(--tv-shadow-sm);
	transition: var(--tv-transition);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.tv-card:hover {
	box-shadow: var(--tv-shadow-lg);
	transform: translateY(-5px);
}

.tv-card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(
		135deg,
		var(--tv-accent-primary),
		var(--tv-accent-secondary)
	);
	border-radius: var(--tv-radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 1.75rem;
	color: white;
}

.tv-card h3 {
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.tv-card p {
	flex-grow: 1;
	margin-bottom: 1.5rem;
}

.tv-card-link {
	color: var(--tv-accent-primary);
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.tv-card-link:hover {
	color: var(--tv-accent-secondary);
	gap: 0.75rem;
}

.tv-card-image {
	width: 100%;
	height: 220px;
	background-color: var(--tv-accent-gray);
	border-radius: var(--tv-radius-sm);
	margin-bottom: 1.5rem;
	overflow: hidden;
}

.tv-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--tv-transition-slow);
}

.tv-card:hover .tv-card-image img {
	transform: scale(1.05);
}

/* ==========================================
   8. SECTIONS
   ========================================== */

.tv-section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.tv-section-subtitle {
	color: var(--tv-accent-primary);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.tv-section-title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	margin-bottom: 1rem;
}

.tv-section-description {
	font-size: 1.1rem;
	color: var(--tv-text-secondary);
	max-width: 700px;
	margin: 0 auto;
}

/* ==========================================
   9. FAQ / ACCORDION
   ========================================== */

.tv-faq-list {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.tv-faq-item {
	background-color: var(--tv-bg-content);
	border-radius: var(--tv-radius-md);
	overflow: hidden;
	box-shadow: var(--tv-shadow-sm);
}

.tv-faq-question {
	width: 100%;
	padding: 1.5rem;
	text-align: left;
	background-color: var(--tv-bg-content);
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-weight: 600;
	color: var(--tv-text-heading);
	font-size: 1.1rem;
}

.tv-faq-question:hover {
	background-color: var(--tv-bg-main);
}

.tv-faq-icon {
	font-size: 1.25rem;
	color: var(--tv-accent-primary);
	transition: transform var(--tv-transition);
}

.tv-faq-item.tv-active .tv-faq-icon {
	transform: rotate(180deg);
}

.tv-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
	padding: 0 1.5rem;
}

.tv-faq-item.tv-active .tv-faq-answer {
	max-height: 1500px;
	padding: 1rem 1.5rem 1.5rem 1.5rem;
}

.tv-faq-answer p {
	line-height: 1.8;
}

/* ==========================================
   10. TWO COLUMN LAYOUT
   ========================================== */

.tv-two-column {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.tv-two-column-reverse {
	grid-template-columns: 1fr 1fr;
}

.tv-column-image {
	width: 100%;
	height: 100%;
	background-color: var(--tv-accent-gray);
	border-radius: var(--tv-radius-lg);
	overflow: hidden;
}

.tv-column-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tv-column-content h2 {
	margin-bottom: 1.5rem;
}

.tv-column-content ul {
	list-style: none;
	margin-top: 1.5rem;
}

.tv-column-content li {
	padding: 0.75rem 0;
	padding-left: 2rem;
	position: relative;
	color: var(--tv-text-secondary);
}

.tv-column-content li::before {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	color: var(--tv-accent-secondary);
}

/* ==========================================
   11. TESTIMONIALS / REVIEWS
   ========================================== */

.tv-testimonial-slider {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
	overflow: hidden;
}

.tv-testimonial-track {
	display: flex;
	transition: transform var(--tv-transition-slow);
}

.tv-testimonial-card {
	min-width: 100%;
	padding: 3rem;
	background-color: var(--tv-bg-content);
	border-radius: var(--tv-radius-lg);
	/* box-shadow: var(--tv-shadow-md); */
	text-align: center;
}

.tv-testimonial-content {
	font-size: 1.2rem;
	font-style: italic;
	color: var(--tv-text-secondary);
	margin-bottom: 2rem;
	line-height: 1.8;
}

.tv-testimonial-author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.tv-testimonial-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--tv-accent-primary),
		var(--tv-accent-secondary)
	);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 600;
	font-size: 1.5rem;
}

.tv-testimonial-info h4 {
	margin-bottom: 0.25rem;
	font-size: 1.1rem;
}

.tv-testimonial-info p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--tv-text-secondary);
}

.tv-testimonial-controls {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}

.tv-testimonial-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--tv-accent-primary);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

.tv-testimonial-btn:hover {
	background-color: var(--tv-accent-secondary);
	transform: scale(1.1);
}

.tv-testimonial-dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1.5rem;
}

.tv-testimonial-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: var(--tv-accent-gray);
	cursor: pointer;
	transition: var(--tv-transition);
}

.tv-testimonial-dot.tv-active {
	background-color: var(--tv-accent-primary);
	width: 30px;
	border-radius: 6px;
}

/* ==========================================
   12. CONTACT FORM
   ========================================== */

.tv-contact-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	background-color: var(--tv-bg-content);
	border-radius: var(--tv-radius-lg);
	padding: 3rem;
	box-shadow: var(--tv-shadow-md);
}

.tv-form-group {
	margin-bottom: 1.5rem;
}

.tv-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--tv-text-heading);
}

.tv-form-input,
.tv-form-textarea {
	width: 100%;
	padding: 1rem;
	border: 2px solid var(--tv-accent-gray);
	border-radius: var(--tv-radius-sm);
	font-family: inherit;
	font-size: 1rem;
	transition: var(--tv-transition);
	background-color: var(--tv-bg-main);
}

.tv-form-input:focus,
.tv-form-textarea:focus {
	outline: none;
	border-color: var(--tv-accent-primary);
	background-color: white;
}

.tv-form-textarea {
	resize: vertical;
	min-height: 150px;
}

.tv-form-error {
	color: #dc2626;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: none;
}

.tv-form-group.tv-error .tv-form-input,
.tv-form-group.tv-error .tv-form-textarea {
	border-color: #dc2626;
}

.tv-form-group.tv-error .tv-form-error {
	display: block;
}

.tv-map-container {
	width: 100%;
	height: 100%;
	min-height: 400px;
	background-color: var(--tv-accent-gray);
	border-radius: var(--tv-radius-md);
	overflow: hidden;
}

.tv-map {
	height: 100%;
	min-height: 400px;

	border-radius: 0.5rem;

	overflow: hidden;
}

@media (max-width: 768px) {
	.tv-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.tv-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 0.5rem;
	/* overflow: hidden; */
}

.tv-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 0.5rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* ==========================================
   13. FOOTER
   ========================================== */

.tv-footer {
	background-color: var(--tv-footer-bg);
	padding: 4rem 0 2rem;
	margin-top: 5rem;
}

.tv-footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	margin-bottom: 3rem;
}

.tv-footer-column h3 {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	color: var(--tv-text-heading);
}

.tv-footer-column p,
.tv-footer-column li {
	color: var(--tv-text-secondary);
	margin-bottom: 0.75rem;
	line-height: 1.7;
}

.tv-footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.tv-footer-link {
	color: var(--tv-text-secondary);
	transition: var(--tv-transition);
}

.tv-footer-link:hover {
	color: var(--tv-accent-primary);
	padding-left: 5px;
}

.tv-footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.tv-footer-contact-icon {
	color: var(--tv-accent-primary);
	margin-top: 2px;
}

.tv-footer-bottom {
	border-top: 1px solid var(--tv-border-color);
	padding-top: 2rem;
	text-align: center;
}

.tv-footer-bottom p {
	color: var(--tv-text-secondary);
	font-size: 0.9rem;
}

/* ==========================================
   14. COOKIE POPUP
   ========================================== */

.tv-cookie-popup {
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	right: 2rem;
	max-width: 500px;
	background-color: var(--tv-bg-content);
	padding: 2rem;
	border-radius: var(--tv-radius-md);
	box-shadow: var(--tv-shadow-lg);
	z-index: 9999;
	transform: translateY(150%);
	opacity: 0;
	transition: transform var(--tv-transition-slow),
		opacity var(--tv-transition-slow);
}

.tv-cookie-popup.tv-show {
	transform: translateY(0);
	opacity: 1;
}

.tv-cookie-popup h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

.tv-cookie-popup p {
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

.tv-cookie-actions {
	display: flex;
	gap: 1rem;
}

.tv-cookie-link {
	color: var(--tv-accent-primary);
	text-decoration: underline;
}

/* ==========================================
   15. ANIMATIONS
   ========================================== */

@keyframes tv-fade-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes tv-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes tv-pulse {
	0%,
	100% {
		opacity: 0.5;
		transform: scale(1);
	}
	50% {
		opacity: 0.8;
		transform: scale(1.1);
	}
}

@keyframes tv-slide-left {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes tv-slide-right {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes tv-zoom-in {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Scroll Animation Classes */
.tv-animate {
	opacity: 0;
}

.tv-animate.tv-fade-up {
	animation: tv-fade-up 0.8s ease-out forwards;
}

.tv-animate.tv-fade-in {
	animation: tv-fade-in 0.6s ease-out forwards;
}

.tv-animate.tv-slide-left {
	animation: tv-slide-left 0.8s ease-out forwards;
}

.tv-animate.tv-slide-right {
	animation: tv-slide-right 0.8s ease-out forwards;
}

.tv-animate.tv-zoom-in {
	animation: tv-zoom-in 0.6s ease-out forwards;
}

/* ==========================================
   16. TABS
   ========================================== */

.tv-tabs {
	margin-bottom: 3rem;
}

.tv-tab-buttons {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
	justify-content: center;
}

.tv-tab-btn {
	padding: 0.875rem 1.75rem;
	background-color: var(--tv-bg-content);
	color: var(--tv-text-secondary);
	border-radius: var(--tv-radius-sm);
	font-weight: 500;
	box-shadow: var(--tv-shadow-sm);
}

.tv-tab-btn.tv-active {
	background: linear-gradient(
		135deg,
		var(--tv-accent-primary),
		var(--tv-accent-secondary)
	);
	color: white;
	box-shadow: var(--tv-shadow-md);
}

.tv-tab-content {
	display: none;
	animation: tv-fade-in 0.4s ease-out;
}

.tv-tab-content.tv-active {
	display: block;
}

/* ==========================================
   17. TEAM SECTION
   ========================================== */

.tv-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2.5rem;
}

.tv-team-card {
	text-align: center;
	background-color: var(--tv-bg-content);
	padding: 2.5rem 2rem;
	border-radius: var(--tv-radius-lg);
	box-shadow: var(--tv-shadow-sm);
	transition: var(--tv-transition);
}

.tv-team-card:hover {
	box-shadow: var(--tv-shadow-lg);
	transform: translateY(-5px);
}

.tv-team-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--tv-accent-primary),
		var(--tv-accent-secondary)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2.5rem;
	color: white;
	font-weight: 600;
}

.tv-team-card h3 {
	margin-bottom: 0.5rem;
	font-size: 1.3rem;
}

.tv-team-role {
	color: var(--tv-accent-primary);
	font-weight: 500;
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

/* ==========================================
   18. STATS SECTION
   ========================================== */

.tv-stats {
	background: linear-gradient(
		135deg,
		var(--tv-accent-primary),
		var(--tv-accent-secondary)
	);
	padding: 4rem 0;
	margin: 5rem 0;
}

.tv-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 3rem;
}

.tv-stat-item {
	text-align: center;
	color: white;
}

.tv-stat-number {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 700;
	margin-bottom: 0.5rem;
	font-family: 'Poppins', sans-serif;
}

.tv-stat-label {
	font-size: 1.1rem;
	opacity: 0.9;
}

/* ==========================================
   19. BREADCRUMBS
   ========================================== */

.tv-breadcrumbs {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 0;
	margin-bottom: 2rem;
	font-size: 0.9rem;
}

.tv-breadcrumb-link {
	color: var(--tv-text-secondary);
}

.tv-breadcrumb-link:hover {
	color: var(--tv-accent-primary);
}

.tv-breadcrumb-separator {
	color: var(--tv-text-secondary);
}

.tv-breadcrumb-current {
	color: var(--tv-text-primary);
	font-weight: 500;
}

/* ==========================================
   20. COMPARISON TABLE
   ========================================== */

.tv-comparison-table {
	width: 100%;
	background-color: var(--tv-bg-content);
	border-radius: var(--tv-radius-lg);
	overflow-x: auto;
	box-shadow: var(--tv-shadow-md);
}

.tv-comparison-table table {
	width: 100%;
	border-collapse: collapse;
}

.tv-comparison-table th {
	background: linear-gradient(
		135deg,
		var(--tv-accent-primary),
		var(--tv-accent-secondary)
	);
	color: white;
	padding: 1.25rem;
	text-align: left;
	font-weight: 600;
}

.tv-comparison-table td {
	padding: 1.25rem;
	border-bottom: 1px solid var(--tv-accent-gray);
	color: var(--tv-text-secondary);
}

.tv-comparison-table tr:last-child td {
	border-bottom: none;
}

.tv-comparison-table tr:hover {
	background-color: var(--tv-bg-main);
}

/* ==========================================
   21. CONTENT PAGE STYLES
   ========================================== */

.tv-page-header {
	text-align: center;
	padding: 4rem 0 3rem;
	background: linear-gradient(
		135deg,
		rgba(37, 99, 235, 0.05) 0%,
		rgba(14, 165, 233, 0.05) 100%
	);
	margin-bottom: 4rem;
}

.tv-page-title {
	font-size: clamp(2rem, 5vw, 3rem);
	margin-bottom: 1rem;
}

.tv-page-subtitle {
	font-size: 1.2rem;
	color: var(--tv-text-secondary);
	max-width: 800px;
	margin: 0 auto;
}

.tv-content-section {
	background-color: var(--tv-bg-content);
	padding: 3rem;
	border-radius: var(--tv-radius-lg);
	box-shadow: var(--tv-shadow-sm);
	margin-bottom: 2rem;
}

.tv-content-section h2 {
	margin-top: 2rem;
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--tv-accent-gray);
}

.tv-content-section h3 {
	margin-top: 1.5rem;
	margin-bottom: 1rem;
	color: var(--tv-accent-primary);
}

.tv-content-section ul,
.tv-content-section ol {
	list-style: disc;
	padding-left: 2rem;
	margin-bottom: 1.5rem;
}

.tv-content-section li {
	margin-bottom: 0.75rem;
	color: var(--tv-text-secondary);
	line-height: 1.8;
}

.tv-highlight-box {
	background: linear-gradient(
		135deg,
		rgba(37, 99, 235, 0.1) 0%,
		rgba(14, 165, 233, 0.1) 100%
	);
	padding: 2rem;
	border-radius: var(--tv-radius-md);
	border-left: 4px solid var(--tv-accent-primary);
	margin: 2rem 0;
}

.tv-highlight-box h4 {
	color: var(--tv-accent-primary);
	margin-bottom: 1rem;
}

/* ==========================================
   22. FEATURES GRID
   ========================================== */

.tv-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.tv-feature-item {
	background-color: var(--tv-bg-content);
	padding: 2rem;
	border-radius: var(--tv-radius-md);
	box-shadow: var(--tv-shadow-sm);
	transition: var(--tv-transition);
}

.tv-feature-item:hover {
	box-shadow: var(--tv-shadow-lg);
	transform: translateY(-3px);
}

.tv-feature-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(
		135deg,
		var(--tv-accent-primary),
		var(--tv-accent-secondary)
	);
	border-radius: var(--tv-radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
}

.tv-feature-item h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

/* ==========================================
   23. LOADING SPINNER
   ========================================== */

.tv-spinner {
	width: 50px;
	height: 50px;
	border: 4px solid var(--tv-accent-gray);
	border-top-color: var(--tv-accent-primary);
	border-radius: 50%;
	animation: tv-spin 0.8s linear infinite;
	margin: 2rem auto;
}

@keyframes tv-spin {
	to {
		transform: rotate(360deg);
	}
}

/* ==========================================
   24. RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
	.tv-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.tv-footer-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}

	.tv-contact-section {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	.tv-nav {
		display: none;
	}

	.tv-burger {
		display: flex;
	}

	.tv-mobile-nav.tv-active {
		display: block;
	}
}

@media (max-width: 768px) {
	.tv-section {
		padding: 3rem 0;
	}

	.tv-grid-2,
	.tv-grid-3,
	.tv-grid-4 {
		grid-template-columns: 1fr;
	}

	.tv-two-column,
	.tv-two-column-reverse {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.tv-footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.tv-btn-group {
		flex-direction: column;
	}

	.tv-btn {
		width: 100%;
	}

	.tv-card-image {
		height: 200px;
	}

	.tv-cookie-popup {
		left: 1rem;
		right: 1rem;
	}

	.tv-stats-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.tv-comparison-table {
		overflow-x: auto;
	}

	.tv-content-section {
		padding: 2rem 1.5rem;
	}

	.tv-tab-buttons {
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 1rem;
	}
}

@media (max-width: 480px) {
	html {
		font-size: 14px;
	}

	.tv-container,
	.tv-container-wide,
	.tv-container-narrow {
		padding: 0 1rem;
	}

	.tv-mobile-nav {
		top: 62px;
	}
	.tv-header-content {
		padding: 1rem;
	}

	.tv-logo {
		font-size: 1.5rem;
	}

	.tv-section {
		padding: 2rem 0;
	}

	.tv-card,
	.tv-feature-item {
		padding: 1.5rem;
	}

	.tv-testimonial-card {
		padding: 2rem 1.5rem;
	}

	.tv-footer {
		padding: 3rem 0 1.5rem;
	}

	.tv-section-title {
		font-size: 1.5rem;
	}
}

:root {
	--tv-legal-bg-main: #f4f5f7;
	--tv-legal-bg-content: #ffffff;
	--tv-legal-accent-1: #2563eb;
	--tv-legal-accent-2: #0ea5e9;
	--tv-legal-accent-subtle: #e5e7eb;
	--tv-legal-text-primary: #1e293b;
	--tv-legal-text-secondary: #475569;
	--tv-legal-text-headers: #0f172a;
	--tv-legal-border: #cbd5e1;
	--tv-legal-shadow-light: rgba(15, 23, 42, 0.05);
	--tv-legal-shadow-medium: rgba(15, 23, 42, 0.1);
	--tv-legal-shadow-heavy: rgba(15, 23, 42, 0.15);
}

.tv-legal-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 120px 1.5rem;
	background-color: var(--tv-legal-bg-main);
}

/* Заголовок страницы */
.tv-legal-header {
	background: linear-gradient(
		135deg,
		var(--tv-legal-accent-1) 0%,
		var(--tv-legal-accent-2) 100%
	);
	color: white;
	padding: 3rem 2rem;
	border-radius: 12px;
	margin-bottom: 3rem;
	box-shadow: 0 8px 24px var(--tv-legal-shadow-heavy);
	position: relative;
	overflow: hidden;
}

.tv-legal-header h1,
.tv-legal-header p {
	color: white;
}

.tv-legal-header::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	filter: blur(40px);
}

.tv-legal-header::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -5%;
	width: 250px;
	height: 250px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	filter: blur(30px);
}

.tv-legal-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	position: relative;
	z-index: 1;
	letter-spacing: -0.5px;
}

.tv-legal-subtitle {
	font-size: 1.1rem;
	opacity: 0.95;
	margin-bottom: 0.75rem;
	position: relative;
	z-index: 1;
	font-weight: 500;
}

.tv-legal-updated {
	font-size: 0.95rem;
	opacity: 0.8;
	position: relative;
	z-index: 1;
	font-style: italic;
}

/* Основной контент */
.tv-legal-content {
	background-color: var(--tv-legal-bg-content);
	padding: 2.5rem;
	border-radius: 10px;
	box-shadow: 0 4px 16px var(--tv-legal-shadow-medium);
	border: 1px solid var(--tv-legal-accent-subtle);
}

/* Секции */
.tv-legal-section {
	margin-bottom: 2.5rem;
	padding-bottom: 2.5rem;
	border-bottom: 2px solid var(--tv-legal-accent-subtle);
}

.tv-legal-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

/* Заголовки секций */
.tv-legal-heading {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--tv-legal-text-headers);
	margin-bottom: 1rem;
	position: relative;
	padding-left: 0.75rem;
}

.tv-legal-heading::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(
		180deg,
		var(--tv-legal-accent-1) 0%,
		var(--tv-legal-accent-2) 100%
	);
	border-radius: 2px;
}

/* Текст */
.tv-legal-text {
	color: var(--tv-legal-text-secondary);
	margin-bottom: 1rem;
	line-height: 1.75;
	text-align: justify;
}

.tv-legal-text:last-child {
	margin-bottom: 0;
}

/* Списки */
.tv-legal-list {
	list-style: none;
	margin: 1rem 0;
	padding-left: 0;
}

.tv-legal-list li {
	margin-bottom: 1rem;
	padding-left: 1.75rem;
	position: relative;
	color: var(--tv-legal-text-secondary);
	line-height: 1.75;
}

.tv-legal-list li::before {
	content: '◆';
	position: absolute;
	left: 0;
	color: var(--tv-legal-accent-1);
	font-size: 0.75rem;
	font-weight: bold;
	top: 0.35rem;
}

.tv-legal-list li strong {
	color: var(--tv-legal-text-headers);
	font-weight: 700;
}

/* Контактная коробка */
.tv-legal-contact-box {
	background: linear-gradient(
		135deg,
		rgba(37, 99, 235, 0.05) 0%,
		rgba(14, 165, 233, 0.05) 100%
	);
	border-left: 4px solid var(--tv-legal-accent-1);
	padding: 1.5rem;
	border-radius: 8px;
	margin: 1.5rem 0;
	border: 1px solid var(--tv-legal-accent-subtle);
}

.tv-legal-contact-box p {
	margin-bottom: 0.75rem;
	color: var(--tv-legal-text-primary);
	font-size: 0.95rem;
	line-height: 1.6;
}

.tv-legal-contact-box p:last-child {
	margin-bottom: 0;
}

.tv-legal-contact-box p strong {
	color: var(--tv-legal-text-headers);
	font-weight: 700;
}

.tv-legal-contact-box a {
	color: var(--tv-legal-accent-1);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border-bottom: 2px solid transparent;
}

.tv-legal-contact-box a:hover {
	color: var(--tv-legal-accent-2);
	border-bottom-color: var(--tv-legal-accent-2);
}

/* Адаптивный дизайн для планшетов */
@media (max-width: 768px) {
	.tv-legal-header {
		padding: 2rem 1.5rem;
	}

	.tv-legal-title {
		font-size: 2rem;
	}

	.tv-legal-content {
		padding: 1.75rem;
	}

	.tv-legal-heading {
		font-size: 1.25rem;
	}

	.tv-legal-section {
		margin-bottom: 2rem;
		padding-bottom: 2rem;
	}

	.tv-legal-list li {
		padding-left: 1.5rem;
	}
}

/* Адаптивный дизайн для мобильных устройств */
@media (max-width: 480px) {
	.tv-legal-header {
		padding: 1.5rem 1rem;
		margin-bottom: 2rem;
		border-radius: 8px;
	}

	.tv-legal-header::before,
	.tv-legal-header::after {
		display: none;
	}

	.tv-legal-title {
		font-size: 1.5rem;
	}

	.tv-legal-subtitle {
		font-size: 0.95rem;
	}

	.tv-legal-updated {
		font-size: 0.85rem;
	}

	.tv-legal-content {
		padding: 1.25rem;
		border-radius: 8px;
	}

	.tv-legal-section {
		margin-bottom: 1.5rem;
		padding-bottom: 1.5rem;
	}

	.tv-legal-heading {
		font-size: 1.1rem;
	}

	.tv-legal-text {
		font-size: 0.95rem;
		text-align: left;
	}

	.tv-legal-list li {
		padding-left: 1.25rem;
		font-size: 0.95rem;
		margin-bottom: 0.75rem;
	}

	.tv-legal-contact-box {
		padding: 1rem;
		margin: 1rem 0;
	}

	.tv-legal-contact-box p {
		font-size: 0.9rem;
	}
}
