* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--tva-bg-primary: #0f1115;
	--tva-bg-secondary: #1a1c21;
	--tva-bg-footer: #0d0e10;
	--tva-accent-orange: #f4a261;
	--tva-accent-teal: #2a9d8f;
	--tva-accent-gold: #e9c46a;
	--tva-text-primary: #ededed;
	--tva-text-secondary: #b0b0b0;
	--tva-text-heading: #ffffff;
	--tva-transition: all 0.3s ease;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
		sans-serif;
	background-color: var(--tva-bg-primary);
	color: var(--tva-text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: var(--tva-text-heading);
	line-height: 1.3;
}

h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

h3 {
	font-size: 1.75rem;
	margin-bottom: 1rem;
}

h4 {
	font-size: 1.5rem;
	margin-bottom: 0.75rem;
}

p {
	margin-bottom: 1rem;
	color: var(--tva-text-primary);
}

a {
	color: var(--tva-text-primary);
	text-decoration: none;
	transition: var(--tva-transition);
}

a:hover {
	color: var(--tva-accent-orange);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul {
	list-style: none;
}

button,
input,
textarea,
select {
	font-family: inherit;
}

/* ===== UTILITY CLASSES ===== */
.tva-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.tva-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.tva-section {
	padding: 80px 0;
}

.tva-section-dark {
	background-color: var(--tva-bg-secondary);
}

.tva-text-center {
	text-align: center;
}

.tva-text-secondary {
	color: var(--tva-text-secondary);
}

.tva-mb-1 {
	margin-bottom: 1rem;
}
.tva-mb-2 {
	margin-bottom: 2rem;
}
.tva-mb-3 {
	margin-bottom: 3rem;
}
.tva-mt-1 {
	margin-top: 1rem;
}
.tva-mt-2 {
	margin-top: 2rem;
}
.tva-mt-3 {
	margin-top: 3rem;
}

/* ===== BUTTONS ===== */
.tva-btn {
	display: inline-block;
	padding: 14px 32px;
	border: 2px solid var(--tva-accent-orange);
	background-color: transparent;
	color: var(--tva-text-heading);
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: var(--tva-transition);
	border-radius: 4px;
	text-align: center;
}

.tva-btn:hover {
	background-color: var(--tva-accent-orange);
	color: var(--tva-bg-primary);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(244, 162, 97, 0.3);
}

.tva-btn-primary {
	background-color: var(--tva-accent-orange);
	border-color: var(--tva-accent-orange);
	color: var(--tva-bg-primary);
}

.tva-btn-primary:hover {
	background-color: transparent;
	color: var(--tva-text-heading);
}

.tva-btn-teal {
	border-color: var(--tva-accent-teal);
	color: var(--tva-text-heading);
}

.tva-btn-teal:hover {
	background-color: var(--tva-accent-teal);
	color: var(--tva-bg-primary);
	box-shadow: 0 8px 20px rgba(42, 157, 143, 0.3);
}

.tva-btn-group {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 2rem;
}

/* ===== HEADER ===== */
.tva-header {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 40px);
	max-width: 1360px;
	background-color: var(--tva-bg-secondary);
	padding: 20px 40px;
	z-index: 1000;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
	transition: var(--tva-transition);
}

.tva-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.tva-logo {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--tva-text-heading);
	letter-spacing: 0.5px;
}

.tva-nav ul {
	display: flex;
	gap: 40px;
	align-items: center;
}

.tva-nav a {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--tva-text-primary);
	position: relative;
	padding: 5px 0;
}

.tva-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--tva-accent-orange);
	transition: width 0.3s ease;
}

.tva-nav a:hover::after,
.tva-nav a.tva-active::after {
	width: 100%;
}

.tva-burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 5px;
}

.tva-burger span {
	width: 28px;
	height: 3px;
	background-color: var(--tva-text-heading);
	transition: var(--tva-transition);
	border-radius: 2px;
}

.tva-burger.tva-active span:nth-child(1) {
	transform: rotate(45deg) translate(4px, 3px);
}

.tva-burger.tva-active span:nth-child(2) {
	opacity: 0;
}

.tva-burger.tva-active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

/* ===== HERO SECTION ===== */
.tva-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;

	background: linear-gradient(
			135deg,
			rgba(15, 17, 21, 0.9),
			rgba(26, 28, 33, 0.8)
		),
		url('assets/tva-hero.webp') bottom/cover no-repeat;
	overflow: hidden;
	background-attachment: fixed;
}

.tva-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			circle at 30% 50%,
			rgba(244, 162, 97, 0.1),
			transparent 50%
		),
		radial-gradient(circle at 70% 50%, rgba(42, 157, 143, 0.1), transparent 50%);
	z-index: 1;
}

.tva-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
	padding: 0 20px;
}

.tva-hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	animation: tva-zoom-in 0.8s ease-out;
}

.tva-hero-subtitle {
	font-size: 1.25rem;
	color: var(--tva-text-secondary);
	margin-bottom: 2.5rem;
	animation: tva-fade-up 1s ease-out 0.3s both;
}

.tva-hero .tva-btn-group {
	animation: tva-fade-up 1s ease-out 0.6s both;
}

/* ===== CARDS ===== */
.tva-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-top: 3rem;
}

.tva-card {
	background-color: var(--tva-bg-secondary);
	border-radius: 8px;
	padding: 40px 30px;
	transition: var(--tva-transition);
	border: 1px solid transparent;
	position: relative;
	overflow: hidden;
}

.tva-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--tva-accent-orange),
		var(--tva-accent-teal)
	);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.tva-card:hover::before {
	transform: scaleX(1);
}

.tva-card:hover {
	transform: translateY(-8px);
	border-color: var(--tva-accent-orange);
	box-shadow: 0 12px 30px rgba(244, 162, 97, 0.2);
}

.tva-card-icon {
	font-size: 3rem;
	color: var(--tva-accent-orange);
	margin-bottom: 1.5rem;
}

.tva-card h3 {
	margin-bottom: 1rem;
	color: var(--tva-text-heading);
}

.tva-card p {
	color: var(--tva-text-secondary);
	line-height: 1.7;
}

/* ===== IMAGE CARDS ===== */
.tva-image-cards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 3rem;
}

.tva-image-card {
	background-color: var(--tva-bg-secondary);
	border-radius: 8px;
	overflow: hidden;
	transition: var(--tva-transition);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
	position: relative;
}

.tva-image-card:hover {
	transform: scale(1.03);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.tva-image-card-img {
	width: 100%;
	height: 250px;
	background: linear-gradient(135deg, #1a1c21, #2a2c31);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--tva-text-secondary);
	font-size: 0.9rem;
}

.tva-image-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tva-image-card-content {
	padding: 30px;
}

.tva-image-card h3 {
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.tva-image-card p {
	color: var(--tva-text-secondary);
	line-height: 1.7;
}

/* ===== ACCORDION ===== */
.tva-accordion {
	max-width: 900px;
	margin: 3rem auto 0;
}

.tva-accordion-item {
	background-color: var(--tva-bg-secondary);
	margin-bottom: 15px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid transparent;
	transition: var(--tva-transition);
}

.tva-accordion-item:hover {
	border-color: var(--tva-accent-teal);
}

.tva-accordion-header {
	padding: 25px 30px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--tva-bg-secondary);
	transition: var(--tva-transition);
}

.tva-accordion-header:hover {
	background-color: rgba(244, 162, 97, 0.1);
}

.tva-accordion-header h4 {
	margin: 0;
	font-size: 1.25rem;
	color: var(--tva-text-heading);
}

.tva-accordion-icon {
	font-size: 1.5rem;
	color: var(--tva-accent-orange);
	transition: transform 0.3s ease;
}

.tva-accordion-item.tva-active .tva-accordion-icon {
	transform: rotate(180deg);
}

.tva-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	padding: 0 30px;
}

.tva-accordion-item.tva-active .tva-accordion-content {
	max-height: 2000px;
	padding: 1rem 30px 25px;
}

.tva-accordion-content p {
	color: var(--tva-text-secondary);
	line-height: 1.8;
}

/* ===== TESTIMONIALS / CAROUSEL ===== */
.tva-testimonials {
	position: relative;
	max-width: 800px;
	margin: 3rem auto 0;
	padding: 0 60px;
}

.tva-carousel {
	overflow: hidden;
	position: relative;
}

.tva-carousel-track {
	display: flex;
	transition: transform 0.5s ease;
}

.tva-testimonial-card {
	min-width: 100%;
	background-color: var(--tva-bg-secondary);
	padding: 50px;
	border-radius: 8px;
	text-align: center;
	border: 1px solid rgba(244, 162, 97, 0.2);
}

.tva-testimonial-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	background: linear-gradient(
		135deg,
		var(--tva-accent-orange),
		var(--tva-accent-teal)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--tva-text-heading);
	font-size: 2.5rem;
	font-weight: 600;
}

.tva-testimonial-avatar img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}

.tva-testimonial-text {
	font-size: 1.125rem;
	font-style: italic;
	color: var(--tva-text-primary);
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.tva-testimonial-author {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--tva-text-heading);
	margin-bottom: 0.25rem;
}

.tva-testimonial-role {
	color: var(--tva-accent-orange);
	font-size: 0.95rem;
}

.tva-carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--tva-bg-secondary);
	border: 2px solid var(--tva-accent-orange);
	color: var(--tva-accent-orange);
	font-size: 1.5rem;
	cursor: pointer;
	transition: var(--tva-transition);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

.tva-carousel-btn:hover {
	background-color: var(--tva-accent-orange);
	color: var(--tva-bg-primary);
}

.tva-carousel-btn-prev {
	left: 0;
}

.tva-carousel-btn-next {
	right: 0;
}

/* ===== CONTACT FORM ===== */
.tva-contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	margin-top: 3rem;
}

.tva-form {
	background-color: var(--tva-bg-secondary);
	padding: 40px;
	border-radius: 8px;
}

.tva-form-group {
	margin-bottom: 1.5rem;
}

.tva-form-label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--tva-text-heading);
	font-weight: 500;
	font-size: 0.95rem;
}

.tva-form-input,
.tva-form-textarea {
	width: 100%;
	padding: 14px 18px;
	background-color: var(--tva-bg-primary);
	border: 1px solid rgba(244, 162, 97, 0.2);
	border-radius: 4px;
	color: var(--tva-text-primary);
	font-size: 1rem;
	transition: var(--tva-transition);
}

.tva-form-input:focus,
.tva-form-textarea:focus {
	outline: none;
	border-color: var(--tva-accent-orange);
	box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.1);
}

.tva-form-textarea {
	min-height: 150px;
	resize: vertical;
}

.tva-form-error {
	color: #e74c3c;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: none;
}

.tva-form-group.tva-error .tva-form-error {
	display: block;
}

.tva-form-group.tva-error .tva-form-input,
.tva-form-group.tva-error .tva-form-textarea {
	border-color: #e74c3c;
}

.tva-map {
	height: 100%;
	min-height: 400px;

	border-radius: 0.5rem;

	overflow: hidden;
}

@media (max-width: 768px) {
	.tva-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.tva-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 0.5rem;
	/* overflow: hidden; */
}

.tva-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;
}

/* ===== FOOTER ===== */
.tva-footer {
	background-color: var(--tva-bg-footer);
	padding: 60px 0 30px;
}

.tva-footer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	margin-bottom: 40px;
}

.tva-footer-column h4 {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	color: var(--tva-text-heading);
}

.tva-footer-column p,
.tva-footer-column li {
	color: var(--tva-text-secondary);
	margin-bottom: 0.75rem;
	line-height: 1.7;
}

.tva-footer-column a {
	color: var(--tva-text-secondary);
	transition: var(--tva-transition);
}

.tva-footer-column a:hover {
	color: var(--tva-accent-orange);
	padding-left: 5px;
}

.tva-footer-contacts li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.tva-footer-contacts i {
	color: var(--tva-accent-orange);
	margin-top: 3px;
}

.tva-footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--tva-text-secondary);
	font-size: 0.9rem;
}

/* ===== COOKIE POPUP ===== */
.tva-cookie-popup {
	position: fixed;
	display: none;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%) translateY(200px);
	width: calc(100% - 40px);
	max-width: 600px;
	background-color: var(--tva-bg-secondary);
	padding: 25px 30px;
	border-radius: 8px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
	z-index: 9999;
	transition: transform 0.5s ease;
	border: 1px solid var(--tva-accent-orange);
}

.tva-cookie-popup.tva-show {
	transform: translateX(-50%) translateY(0);
	display: block;
}

.tva-cookie-content {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.tva-cookie-text {
	flex: 1;
	min-width: 250px;
	color: var(--tva-text-primary);
	font-size: 0.95rem;
	line-height: 1.6;
}

.tva-cookie-text a {
	color: var(--tva-accent-orange);
	text-decoration: underline;
}

.tva-cookie-actions {
	display: flex;
	gap: 15px;
}

.tva-cookie-btn {
	padding: 10px 24px;
	border: 2px solid var(--tva-accent-orange);
	background-color: var(--tva-accent-orange);
	color: var(--tva-bg-primary);
	font-size: 0.95rem;
	font-weight: 500;
	cursor: pointer;
	border-radius: 4px;
	transition: var(--tva-transition);
}

.tva-cookie-btn:hover {
	background-color: transparent;
	color: var(--tva-text-heading);
}

/* ===== ANIMATIONS ===== */
@keyframes tva-fade-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes tva-zoom-in {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes tva-slide-left {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.tva-animate-fade-up {
	animation: tva-fade-up 0.8s ease-out;
}

.tva-animate-zoom-in {
	animation: tva-zoom-in 0.8s ease-out;
}

.tva-animate-slide-left {
	animation: tva-slide-left 0.8s ease-out;
}

/* ===== CONTENT SECTIONS ===== */
.tva-section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.tva-section-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--tva-text-heading);
}

.tva-section-subtitle {
	font-size: 1.125rem;
	color: var(--tva-text-secondary);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.7;
}

/* ===== TEAM CARDS ===== */
.tva-team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 3rem;
}

.tva-team-card {
	background-color: var(--tva-bg-secondary);
	border-radius: 8px;
	padding: 40px 30px;
	text-align: center;
	transition: var(--tva-transition);
	border: 1px solid transparent;
}

.tva-team-card:hover {
	border-color: var(--tva-accent-teal);
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(42, 157, 143, 0.2);
}

.tva-team-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	background: linear-gradient(
		135deg,
		var(--tva-accent-teal),
		var(--tva-accent-gold)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--tva-text-heading);
	font-size: 2.5rem;
	font-weight: 700;
}

.tva-team-avatar img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}

.tva-team-name {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: var(--tva-text-heading);
}

.tva-team-role {
	color: var(--tva-accent-orange);
	font-size: 1rem;
	margin-bottom: 1rem;
	font-weight: 500;
}

.tva-team-bio {
	color: var(--tva-text-secondary);
	line-height: 1.7;
	font-size: 0.95rem;
}

/* ===== QUOTE SECTION ===== */
.tva-quote-section {
	background-color: var(--tva-bg-secondary);
	padding: 60px 40px;
	border-radius: 8px;
	margin: 3rem 0;
	border-left: 4px solid var(--tva-accent-orange);
}

.tva-quote-text {
	font-size: 1.5rem;
	font-style: italic;
	color: var(--tva-text-primary);
	line-height: 1.8;
	text-align: center;
	margin-bottom: 1rem;
}

.tva-quote-author {
	text-align: center;
	color: var(--tva-accent-teal);
	font-size: 1.125rem;
	font-weight: 600;
}

/* ===== CONTENT GRID ===== */
.tva-content-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
	margin: 3rem 0;
}

.tva-content-img {
	width: 100%;
	height: 100%;

	background: linear-gradient(135deg, #1a1c21, #2a2c31);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--tva-text-secondary);
	font-size: 1rem;
}

.tva-content-img img {
	width: 100%;
	border-radius: 8px;
	height: 100%;
	object-fit: cover;
}

.tva-content-text h3 {
	margin-bottom: 1.5rem;
	font-size: 2rem;
}

.tva-content-text p {
	color: var(--tva-text-secondary);
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.tva-content-text ul {
	list-style: none;
	padding: 0;
}

.tva-content-text li {
	padding-left: 30px;
	position: relative;
	margin-bottom: 1rem;
	color: var(--tva-text-secondary);
	line-height: 1.7;
}

.tva-content-text li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--tva-accent-orange);
	font-weight: 600;
}

/* ===== TABS ===== */
.tva-tabs {
	margin-top: 3rem;
}

.tva-tabs-header {
	display: flex;
	gap: 15px;
	margin-bottom: 2rem;
	border-bottom: 2px solid rgba(255, 255, 255, 0.1);
	flex-wrap: wrap;
}

.tva-tab-btn {
	padding: 15px 30px;
	background-color: transparent;
	border: none;
	color: var(--tva-text-secondary);
	font-size: 1.125rem;
	font-weight: 500;
	cursor: pointer;
	transition: var(--tva-transition);
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
}

.tva-tab-btn:hover {
	color: var(--tva-text-heading);
}

.tva-tab-btn.tva-active {
	color: var(--tva-accent-orange);
	border-bottom-color: var(--tva-accent-orange);
}

.tva-tab-content {
	display: none;
	animation: tva-fade-up 0.5s ease-out;
}

.tva-tab-content.tva-active {
	display: block;
}

.tva-tab-panel {
	background-color: var(--tva-bg-secondary);
	padding: 40px;
	border-radius: 8px;
}

.tva-tab-panel h4 {
	margin-bottom: 1.5rem;
	color: var(--tva-text-heading);
}

.tva-tab-panel p {
	color: var(--tva-text-secondary);
	line-height: 1.8;
	margin-bottom: 1rem;
}

/* ===== INFO BOXES ===== */
.tva-info-box {
	background-color: var(--tva-bg-secondary);
	border-left: 4px solid var(--tva-accent-teal);
	padding: 25px 30px;
	border-radius: 4px;
	margin: 2rem 0;
}

.tva-info-box h4 {
	color: var(--tva-accent-teal);
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.tva-info-box p {
	color: var(--tva-text-secondary);
	line-height: 1.7;
	margin: 0;
}

.tva-info-box-warning {
	border-left-color: var(--tva-accent-gold);
}

.tva-info-box-warning h4 {
	color: var(--tva-accent-gold);
}

/* ===== LIST STYLES ===== */
.tva-list {
	list-style: none;
	padding: 0;
}

.tva-list li {
	padding: 15px 0;
	padding-left: 40px;
	position: relative;
	color: var(--tva-text-secondary);
	line-height: 1.7;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tva-list li:last-child {
	border-bottom: none;
}

.tva-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--tva-accent-teal);
	font-weight: 700;
	font-size: 1.25rem;
}

/* ===== LEGAL PAGES ===== */
.tva-legal-page {
	max-width: 900px;
	margin: 0 auto;
	padding: 120px 20px 80px;
}

.tva-legal-page h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--tva-text-heading);
}

.tva-legal-page h2 {
	font-size: 1.75rem;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	color: var(--tva-text-heading);
}

.tva-legal-page h3 {
	font-size: 1.25rem;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
	color: var(--tva-text-heading);
}

.tva-legal-page p {
	color: var(--tva-text-secondary);
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.tva-legal-page ul {
	list-style: disc;
	padding-left: 30px;
	margin-bottom: 1.5rem;
}

.tva-legal-page li {
	color: var(--tva-text-secondary);
	line-height: 1.7;
	margin-bottom: 0.75rem;
}

.tva-legal-updated {
	color: var(--tva-text-secondary);
	font-style: italic;
	margin-bottom: 2rem;
}

/* ===== CONTACT INFO CARDS ===== */
.tva-contact-info {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 3rem;
}

.tva-contact-card {
	background-color: var(--tva-bg-secondary);
	padding: 30px;
	border-radius: 8px;
	display: flex;
	gap: 20px;
	align-items: flex-start;
	transition: var(--tva-transition);
}

.tva-contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(244, 162, 97, 0.15);
}

.tva-contact-icon {
	font-size: 2rem;
	color: var(--tva-accent-orange);
	min-width: 50px;
	display: flex;
	justify-content: center;
}

.tva-contact-details h4 {
	margin-bottom: 0.5rem;
	font-size: 1.125rem;
	color: var(--tva-text-heading);
}

.tva-contact-details p {
	color: var(--tva-text-secondary);
	margin: 0;
	line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	h1 {
		font-size: 2.5rem;
	}
	h2 {
		font-size: 2rem;
	}

	.tva-header {
		padding: 15px 30px;
	}

	.tva-nav ul {
		gap: 25px;
	}

	.tva-cards-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}

	.tva-image-cards-grid {
		grid-template-columns: 1fr;
	}

	.tva-team-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tva-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tva-contact-wrapper {
		grid-template-columns: 1fr;
	}

	.tva-content-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 820px) {
	.tva-nav {
		position: fixed;
		top: 80px;
		left: 0;
		width: 100%;
		background-color: var(--tva-bg-secondary);
		padding: 20px;
		transform: translateY(-200%);
		border-radius: 8px;
		transition: transform 0.3s ease;
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
	}

	.tva-nav.tva-active {
		transform: translateY(0);
	}

	.tva-nav ul {
		flex-direction: column;
		gap: 20px;
	}

	.tva-burger {
		display: flex;
	}
}

@media (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}
	h2 {
		font-size: 1.75rem;
	}

	.tva-hero h1 {
		font-size: 2rem;
	}

	.tva-hero-subtitle {
		font-size: 1.125rem;
	}

	.tva-header {
		width: calc(100% - 20px);
		top: 10px;
		padding: 15px 20px;
	}

	.tva-section {
		padding: 60px 0;
	}

	.tva-cards-grid {
		grid-template-columns: 1fr;
	}

	.tva-team-grid {
		grid-template-columns: 1fr;
	}

	.tva-footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.tva-btn-group {
		flex-direction: column;
		align-items: center;
	}

	.tva-btn {
		width: 100%;
		max-width: 300px;
	}

	.tva-testimonials {
		padding: 0 10px;
	}

	.tva-testimonial-card {
		padding: 35px 25px;
	}

	.tva-carousel-btn {
		width: 40px;
		height: 40px;
		font-size: 1.25rem;
	}

	.tva-contact-info {
		grid-template-columns: 1fr;
	}

	.tva-legal-page {
		padding: 100px 20px 60px;
	}

	.tva-cookie-popup {
		max-width: calc(100% - 20px);
	}

	.tva-cookie-content {
		flex-direction: column;
		align-items: flex-start;
	}

	.tva-cookie-actions {
		width: 100%;
	}

	.tva-cookie-btn {
		flex: 1;
	}

	.tva-tabs-header {
		flex-direction: column;
	}

	.tva-tab-btn {
		width: 100%;
		text-align: left;
	}

	.tva-section-title {
		font-size: 2rem;
	}
}

@media (max-width: 480px) {
	.tva-logo {
		font-size: 1rem;
	}

	.tva-card h3 {
		font-size: 1.2rem;
	}
	.tva-hero h1,
	.tva-section-title,
	.tva-content-text h3,
	.tva-content-text h2 {
		font-size: 1.5rem;
	}

	.tva-image-card h3 {
		font-size: 1.2rem;
	}

	.tva-contact-card {
		flex-direction: column;
	}
}

.tva-legal-container {
	width: 100%;
	min-height: 100vh;
	background: linear-gradient(135deg, #0f1115 0%, #1a1c21 100%);
	padding: 120px 20px;
	position: relative;
}

.tva-legal-container::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(
			circle at 20% 30%,
			rgba(244, 162, 97, 0.05) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 70%,
			rgba(42, 157, 143, 0.05) 0%,
			transparent 50%
		);
	pointer-events: none;
	z-index: 0;
}

/* === Content Wrapper === */
.tva-legal-wrapper {
	max-width: 900px;
	margin: 0 auto;
	background-color: #1a1c21;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	padding: 60px 50px;
	position: relative;
	z-index: 1;
	border: 1px solid rgba(244, 162, 97, 0.1);
}

/* === Header Section === */
.tva-legal-header {
	text-align: center;
	margin-bottom: 50px;
	padding-bottom: 40px;
	border-bottom: 2px solid rgba(244, 162, 97, 0.2);
	position: relative;
}

.tva-legal-header::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 2px;
	background: linear-gradient(90deg, #f4a261 0%, #2a9d8f 100%);
}

.tva-legal-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 15px;
	letter-spacing: -0.5px;
	line-height: 1.2;
}

.tva-legal-subtitle {
	font-size: 1rem;
	color: #b0b0b0;
	font-weight: 400;
	margin-bottom: 30px;
}

.tva-legal-company-info {
	margin-top: 30px;
	padding: 25px;
	background-color: rgba(42, 157, 143, 0.08);
	border-radius: 10px;
	border-left: 4px solid #2a9d8f;
}

.tva-legal-company-info p {
	margin: 8px 0;
	font-size: 0.95rem;
	color: #ededed;
	line-height: 1.6;
}

.tva-legal-company-info strong {
	color: #e9c46a;
	font-weight: 600;
}

.tva-legal-company-info a {
	color: #f4a261;
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 500;
}

.tva-legal-company-info a:hover {
	color: #e9c46a;
	text-decoration: underline;
}

/* === Content Section === */
.tva-legal-content {
	margin-top: 40px;
}

.tva-legal-section {
	margin-bottom: 45px;
	padding-bottom: 35px;
	border-bottom: 1px solid rgba(176, 176, 176, 0.15);
}

.tva-legal-section:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.tva-legal-section-title {
	font-size: 1.6rem;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 20px;
	padding-left: 20px;
	border-left: 4px solid #f4a261;
	line-height: 1.3;
	position: relative;
}

.tva-legal-section-title::before {
	content: '';
	position: absolute;
	left: -4px;
	top: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, #f4a261 0%, #2a9d8f 100%);
}

/* === Text Content === */
.tva-legal-text {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #ededed;
}

.tva-legal-text p {
	margin-bottom: 18px;
	word-wrap: break-word;
}

.tva-legal-text p:last-child {
	margin-bottom: 0;
}

.tva-legal-text strong {
	color: #e9c46a;
	font-weight: 600;
}

.tva-legal-text em {
	color: #2a9d8f;
	font-style: normal;
	font-weight: 500;
	background-color: rgba(42, 157, 143, 0.1);
	padding: 2px 6px;
	border-radius: 4px;
}

/* === Links === */
.tva-legal-link {
	color: #f4a261;
	text-decoration: none;
	border-bottom: 1px solid rgba(244, 162, 97, 0.3);
	transition: all 0.3s ease;
	font-weight: 500;
}

.tva-legal-link:hover {
	color: #e9c46a;
	border-bottom-color: #e9c46a;
}

/* === Table Styling === */
.tva-legal-table {
	background-color: rgba(26, 28, 33, 0.6);
	padding: 25px;
	border-radius: 10px;
	border: 1px solid rgba(244, 162, 97, 0.2);
	margin: 20px 0;
}

.tva-legal-table p {
	margin-bottom: 15px;
	font-size: 0.98rem;
}

.tva-legal-table p:last-child {
	margin-bottom: 0;
}

.tva-legal-table strong {
	display: block;
	color: #f4a261;
	font-size: 1.1rem;
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(244, 162, 97, 0.2);
}

/* === Footer Section === */
.tva-legal-footer {
	margin-top: 60px;
	padding-top: 30px;
	border-top: 2px solid rgba(244, 162, 97, 0.2);
	text-align: center;
}

.tva-legal-footer p {
	color: #b0b0b0;
	font-size: 0.95rem;
	margin-bottom: 20px;
}

.tva-legal-footer-links {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.tva-legal-footer-links .tva-legal-link {
	font-size: 0.95rem;
	padding: 8px 16px;
	background-color: rgba(244, 162, 97, 0.1);
	border-radius: 6px;
	border-bottom: none;
	transition: all 0.3s ease;
}

.tva-legal-footer-links .tva-legal-link:hover {
	background-color: rgba(244, 162, 97, 0.2);
	transform: translateY(-2px);
}

/* === Responsive Design === */
@media screen and (max-width: 768px) {
	.tva-legal-wrapper {
		padding: 40px 25px;
		border-radius: 12px;
	}

	.tva-legal-title {
		font-size: 2rem;
	}

	.tva-legal-section-title {
		font-size: 1.4rem;
		padding-left: 15px;
	}

	.tva-legal-text {
		font-size: 1rem;
	}

	.tva-legal-company-info {
		padding: 20px;
	}

	.tva-legal-table {
		padding: 20px;
	}

	.tva-legal-footer-links {
		flex-direction: column;
		gap: 15px;
	}

	.tva-legal-footer-links .tva-legal-link {
		display: block;
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}
}

@media screen and (max-width: 480px) {
	.tva-legal-wrapper {
		padding: 30px 20px;
	}

	.tva-legal-title {
		font-size: 1.3rem;
	}

	.tva-legal-section-title {
		font-size: 1.1rem;
	}

	.tva-legal-company-info {
		padding: 18px;
	}

	.tva-legal-table {
		padding: 18px;
	}
}
