@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Montserrat:wght@400;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
	/* Colors */
	--hv-bg-primary: #0e141b;
	--hv-bg-secondary: #1c252e;
	--hv-bg-card: #1c252e;
	--hv-accent-orange: #ff8a00;
	--hv-accent-teal: #00e0b8;
	--hv-text-primary: #e5eaf0;
	--hv-text-secondary: #9ca3af;
	--hv-text-heading: #ffffff;
	--hv-border: rgba(255, 255, 255, 0.1);
	--hv-overlay: rgba(14, 20, 27, 0.8);

	/* Fonts */
	--hv-font-main: 'Manrope', sans-serif;
	--hv-font-heading: 'Montserrat', sans-serif;

	/* Spacing */
	--hv-spacing-xs: 0.5rem;
	--hv-spacing-sm: 1rem;
	--hv-spacing-md: 2rem;
	--hv-spacing-lg: 4rem;
	--hv-spacing-xl: 6rem;

	/* Transitions */
	--hv-transition-fast: 0.2s ease;
	--hv-transition-normal: 0.3s ease;
	--hv-transition-slow: 0.5s ease;
}

/* ===== RESET & BASE ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--hv-font-main);
	background-color: var(--hv-bg-primary);
	color: var(--hv-text-primary);
	line-height: 1.7;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--hv-transition-normal);
}

ul,
ol {
	list-style: none;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--hv-font-heading);
	font-weight: 600;
	color: var(--hv-text-heading);
	line-height: 1.3;
	margin-bottom: 1rem;
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
}

h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
}

h3 {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
	margin-bottom: 1rem;
	color: var(--hv-text-primary);
}

/* ===== CONTAINER & LAYOUT ===== */
.hv-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

.hv-section {
	padding: var(--hv-spacing-xl) 0;
	position: relative;
}

.hv-section-title {
	text-align: center;
	margin-bottom: var(--hv-spacing-lg);
	position: relative;
}

.hv-section-title::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--hv-accent-orange),
		var(--hv-accent-teal)
	);
	margin: 1rem auto 0;
	border-radius: 2px;
}

/* ===== HEADER ===== */
.hv-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: linear-gradient(
		135deg,
		rgba(28, 37, 46, 0.95),
		rgba(14, 20, 27, 0.95)
	);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--hv-border);
	transition: var(--hv-transition-normal);
}

.hv-header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.2rem 2rem;
	max-width: 1600px;
	margin: 0 auto;
}

.hv-logo {
	font-size: 1.8rem;
	font-weight: 800;
	font-family: var(--hv-font-heading);
	background: linear-gradient(
		135deg,
		var(--hv-accent-orange),
		var(--hv-accent-teal)
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: var(--hv-transition-normal);
}

.hv-logo:hover {
	transform: scale(1.05);
	filter: brightness(1.2);
}

.hv-nav {
	display: flex;
	align-items: center;
	gap: 3rem;
}

.hv-nav-list {
	display: flex;
	gap: 2.5rem;
	align-items: center;
}

.hv-nav-link {
	font-weight: 500;
	font-size: 1rem;
	position: relative;
	padding: 0.5rem 0;
	color: var(--hv-text-primary);
	transition: var(--hv-transition-normal);
}

.hv-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(
		90deg,
		var(--hv-accent-orange),
		var(--hv-accent-teal)
	);
	transition: var(--hv-transition-normal);
}

.hv-nav-link:hover {
	color: var(--hv-accent-teal);
}

.hv-nav-link:hover::after {
	width: 100%;
}

.hv-nav-link.hv-active {
	color: var(--hv-accent-orange);
}

.hv-social-links {
	display: flex;
	gap: 1.2rem;
	align-items: center;
}

.hv-social-link {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--hv-border);
	color: var(--hv-text-primary);
	transition: var(--hv-transition-normal);
}

.hv-social-link:hover {
	background: linear-gradient(
		135deg,
		var(--hv-accent-orange),
		var(--hv-accent-teal)
	);
	border-color: transparent;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(255, 138, 0, 0.3);
}

.hv-burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	z-index: 1001;
}

.hv-burger-line {
	width: 28px;
	height: 3px;
	background: var(--hv-text-heading);
	border-radius: 2px;
	transition: var(--hv-transition-normal);
}

.hv-burger.hv-active .hv-burger-line:nth-child(1) {
	transform: rotate(45deg) translate(4px, 3px);
}

.hv-burger.hv-active .hv-burger-line:nth-child(2) {
	opacity: 0;
}

.hv-burger.hv-active .hv-burger-line:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

/* ===== HERO SECTION ===== */
.hv-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding-top: 80px;
	overflow: hidden;
}

.hv-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;

	z-index: 0;
}

.hv-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(14, 20, 27, 0.9),
		rgba(28, 37, 46, 0.8)
	);
	z-index: 1;
}

.hv-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
	padding: 2rem;
}

.hv-hero-title {
	font-size: clamp(2.5rem, 6vw, 5rem);
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #ffffff, var(--hv-accent-teal));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: hv-fade-in-up 1s ease;
}

.hv-hero-subtitle {
	font-size: clamp(1.1rem, 2vw, 1.5rem);
	color: var(--hv-text-secondary);
	margin-bottom: 2.5rem;
	animation: hv-fade-in-up 1s ease 0.2s backwards;
}

.hv-hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	animation: hv-fade-in-up 1s ease 0.4s backwards;
}

/* ===== BUTTONS ===== */
.hv-btn {
	padding: 1rem 2.5rem;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 12px;
	transition: var(--hv-transition-normal);
	display: inline-block;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.hv-btn-primary {
	background: linear-gradient(135deg, var(--hv-accent-orange), #ff9f33);
	color: #ffffff;
	box-shadow: 0 8px 25px rgba(255, 138, 0, 0.3);
}

.hv-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(255, 138, 0, 0.5);
}

.hv-btn-secondary {
	background: transparent;
	border: 2px solid var(--hv-accent-teal);
	color: var(--hv-accent-teal);
}

.hv-btn-secondary:hover {
	background: var(--hv-accent-teal);
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(0, 224, 184, 0.3);
}

/* ===== CARDS ===== */
.hv-card {
	background: var(--hv-bg-card);
	border-radius: 20px;
	padding: 2.5rem;
	border: 1px solid var(--hv-border);
	transition: var(--hv-transition-normal);
	position: relative;
	overflow: hidden;
}

.hv-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(255, 138, 0, 0.05),
		rgba(0, 224, 184, 0.05)
	);
	opacity: 0;
	transition: var(--hv-transition-normal);
	z-index: 0;
}

.hv-card:hover::before {
	opacity: 1;
}

.hv-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 224, 184, 0.2);
	border-color: var(--hv-accent-teal);
}

.hv-card-content {
	position: relative;
	z-index: 1;
}

.hv-card-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(
		135deg,
		var(--hv-accent-orange),
		var(--hv-accent-teal)
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hv-card-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.hv-card-text {
	color: var(--hv-text-secondary);
	line-height: 1.8;
}

/* ===== GRID LAYOUTS ===== */
.hv-grid-2 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.hv-grid-3 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.hv-grid-4 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

/* ===== TIMELINE ===== */
.hv-timeline {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
	position: relative;
}

.hv-timeline-item {
	background: var(--hv-bg-card);
	padding: 2.5rem;
	border-radius: 20px;
	border: 1px solid var(--hv-border);
	position: relative;
	transition: var(--hv-transition-normal);
}

.hv-timeline-item::before {
	content: '';
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	background: linear-gradient(
		135deg,
		var(--hv-accent-orange),
		var(--hv-accent-teal)
	);
	border-radius: 20px;
	opacity: 0;
	transition: var(--hv-transition-normal);
	z-index: -1;
}

.hv-timeline-item:hover::before {
	opacity: 1;
}

.hv-timeline-item:hover {
	transform: translateY(-5px);
	color: #fff;
}

.hv-timeline-item:hover .hv-timeline-text {
	color: #fff;
}

.hv-timeline-number {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--hv-accent-orange),
		var(--hv-accent-teal)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 1.5rem;
}

.hv-timeline-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.hv-timeline-text {
	color: var(--hv-text-secondary);
}

/* ===== TESTIMONIALS ===== */
.hv-testimonial {
	background: var(--hv-bg-card);
	padding: 2.5rem;
	border-radius: 20px;
	border: 1px solid var(--hv-border);
	transition: var(--hv-transition-normal);
}

.hv-testimonial:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(255, 138, 0, 0.2);
}

.hv-testimonial-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--hv-text-primary);
	margin-bottom: 2rem;
	font-style: italic;
}

.hv-testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.hv-testimonial-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--hv-accent-orange),
		var(--hv-accent-teal)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
}

.hv-testimonial-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.hv-testimonial-info h4 {
	margin-bottom: 0.3rem;
}

.hv-testimonial-info p {
	color: var(--hv-text-secondary);
	margin: 0;
}

/* ===== FORM ===== */
.hv-form {
	background: var(--hv-bg-card);
	padding: 3rem;
	border-radius: 20px;
	border: 1px solid var(--hv-border);
	max-width: 700px;
	margin: 0 auto;
}

.hv-form-group {
	margin-bottom: 2rem;
}

.hv-form-label {
	display: block;
	margin-bottom: 0.8rem;
	font-weight: 600;
	color: var(--hv-text-heading);
}

.hv-form-input,
.hv-form-textarea {
	width: 100%;
	padding: 1rem 1.5rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--hv-border);
	border-radius: 12px;
	color: var(--hv-text-primary);
	font-family: var(--hv-font-main);
	font-size: 1rem;
	transition: var(--hv-transition-normal);
}

.hv-form-input:focus,
.hv-form-textarea:focus {
	outline: none;
	border-color: var(--hv-accent-teal);
	box-shadow: 0 0 0 3px rgba(0, 224, 184, 0.1);
	background: rgba(255, 255, 255, 0.08);
}

.hv-form-textarea {
	resize: vertical;
	min-height: 150px;
}

.hv-form-error {
	color: #ff6b6b;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	display: none;
}

.hv-form-group.hv-error .hv-form-error {
	display: block;
}

.hv-form-group.hv-error .hv-form-input,
.hv-form-group.hv-error .hv-form-textarea {
	border-color: #ff6b6b;
}

/* ===== FOOTER ===== */
.hv-footer {
	background: #1a1f27;
	padding: var(--hv-spacing-lg) 0 var(--hv-spacing-md);
	border-top: 1px solid var(--hv-border);
}

.hv-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: var(--hv-spacing-md);
}

.hv-footer-column h3 {
	font-size: 1.3rem;
	margin-bottom: 1.5rem;
	color: var(--hv-accent-orange);
}

.hv-footer-column p {
	color: var(--hv-text-secondary);
	line-height: 1.8;
}

.hv-footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.hv-footer-link {
	color: var(--hv-text-secondary);
	transition: var(--hv-transition-normal);
	display: inline-block;
}

.hv-footer-link:hover {
	color: var(--hv-accent-teal);
	transform: translateX(5px);
}

.hv-footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1rem;
	color: var(--hv-text-secondary);
}

.hv-footer-contact-item i {
	color: var(--hv-accent-orange);
	margin-top: 0.2rem;
	font-size: 1.2rem;
}

.hv-footer-bottom {
	text-align: center;
	padding-top: var(--hv-spacing-md);
	border-top: 1px solid var(--hv-border);
	color: var(--hv-text-secondary);
}

/* ===== COOKIE POPUP ===== */
.hv-cookie-popup {
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	right: 2rem;
	max-width: 600px;
	background: var(--hv-bg-card);
	padding: 2rem;
	border-radius: 20px;
	border: 1px solid var(--hv-border);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
	z-index: 9999;
	display: none;
	animation: hv-slide-up 0.5s ease;
}

.hv-cookie-popup.hv-show {
	display: block;
}

.hv-cookie-content {
	margin-bottom: 1.5rem;
}

.hv-cookie-content h3 {
	margin-bottom: 0.8rem;
}

.hv-cookie-content p {
	color: var(--hv-text-secondary);
	margin-bottom: 0.5rem;
}

.hv-cookie-link {
	color: var(--hv-accent-teal);
	text-decoration: underline;
}

.hv-cookie-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

/* ===== MAP ===== */
.hv-map-container {
	margin-top: 3rem;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--hv-border);
	height: 400px;
}

.hv-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.hv-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.hv-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.hv-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* ===== TABLE ===== */
.hv-table-container {
	overflow-x: auto;
	margin: 2rem 0;
}

.hv-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--hv-bg-card);
	border-radius: 12px;
	overflow: hidden;
}

.hv-table thead {
	background: linear-gradient(
		135deg,
		rgba(255, 138, 0, 0.2),
		rgba(0, 224, 184, 0.2)
	);
}

.hv-table th,
.hv-table td {
	padding: 1.2rem;
	text-align: left;
	border-bottom: 1px solid var(--hv-border);
}

.hv-table th {
	font-weight: 600;
	color: var(--hv-text-heading);
}

.hv-table td {
	color: var(--hv-text-secondary);
}

.hv-table tr:hover {
	background: rgba(255, 255, 255, 0.03);
}

/* ===== TEAM CARDS ===== */
.hv-team-card {
	background: var(--hv-bg-card);
	border-radius: 20px;
	padding: 2.5rem;
	border: 1px solid var(--hv-border);
	text-align: center;
	transition: var(--hv-transition-normal);
}

.hv-team-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(255, 138, 0, 0.2);
}

.hv-team-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--hv-accent-orange),
		var(--hv-accent-teal)
	);
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	font-weight: 700;
	color: #ffffff;
}

.hv-team-avatar img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}

.hv-team-name {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.hv-team-role {
	color: var(--hv-accent-teal);
	font-weight: 600;
	margin-bottom: 1rem;
}

.hv-team-bio {
	color: var(--hv-text-secondary);
	line-height: 1.8;
}

/* ===== QUOTE ===== */
.hv-quote {
	background: linear-gradient(
		135deg,
		rgba(255, 138, 0, 0.1),
		rgba(0, 224, 184, 0.1)
	);
	padding: 3rem;
	border-radius: 20px;
	border-left: 5px solid var(--hv-accent-orange);
	margin: 3rem 0;
	position: relative;
}

.hv-quote::before {
	content: '"';
	font-size: 6rem;
	color: var(--hv-accent-teal);
	position: absolute;
	top: -1rem;
	left: 2rem;
	opacity: 0.3;
	font-family: Georgia, serif;
}

.hv-quote-text {
	font-size: 1.3rem;
	font-style: italic;
	color: var(--hv-text-primary);
	margin-bottom: 1.5rem;
	padding-left: 2rem;
}

.hv-quote-author {
	text-align: right;
	color: var(--hv-accent-orange);
	font-weight: 600;
	font-size: 1.1rem;
}

/* ===== ACCORDION ===== */
.hv-accordion-item {
	background: var(--hv-bg-card);
	border-radius: 12px;
	margin-bottom: 1rem;
	border: 1px solid var(--hv-border);
	overflow: hidden;
}

.hv-accordion-header {
	padding: 1.5rem 2rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: var(--hv-transition-normal);
}

.hv-accordion-header:hover {
	background: rgba(255, 255, 255, 0.03);
}

.hv-accordion-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0;
	color: var(--hv-text-heading);
}

.hv-accordion-icon {
	font-size: 1.5rem;
	color: var(--hv-accent-teal);
	transition: var(--hv-transition-normal);
}

.hv-accordion-item.hv-active .hv-accordion-icon {
	transform: rotate(180deg);
}

.hv-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.hv-accordion-body {
	padding: 1rem 2rem 2rem;
	color: var(--hv-text-secondary);
	line-height: 1.8;
}

/* ===== TABS ===== */
.hv-tabs {
	margin: 2rem 0;
}

.hv-tabs-nav {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
	border-bottom: 2px solid var(--hv-border);
}

.hv-tab-btn {
	padding: 1rem 2rem;
	background: transparent;
	border: none;
	border-bottom: 3px solid transparent;
	color: var(--hv-text-secondary);
	font-weight: 600;
	font-size: 1.1rem;
	cursor: pointer;
	transition: var(--hv-transition-normal);
	margin-bottom: -2px;
}

.hv-tab-btn:hover {
	color: var(--hv-accent-teal);
}

.hv-tab-btn.hv-active {
	color: var(--hv-accent-orange);
	border-bottom-color: var(--hv-accent-orange);
}

.hv-tab-content {
	display: none;
	animation: hv-fade-in 0.5s ease;
}

.hv-tab-content.hv-active {
	display: block;
}

/* ===== ANIMATIONS ===== */
@keyframes hv-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes hv-fade-in-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes hv-slide-up {
	from {
		transform: translateY(100px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes hv-scale-in {
	from {
		transform: scale(0.9);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

/* Scroll animations */
.hv-scroll-reveal {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.hv-scroll-reveal.hv-revealed {
	opacity: 1;
	transform: translateY(0);
}

/* ===== GLASSMORPHISM ===== */
.hv-glass {
	background: rgba(28, 37, 46, 0.7);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== UTILITY CLASSES ===== */
.hv-text-center {
	text-align: center;
}

.hv-text-gradient {
	background: linear-gradient(
		135deg,
		var(--hv-accent-orange),
		var(--hv-accent-teal)
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hv-mt-1 {
	margin-top: 1rem;
}
.hv-mt-2 {
	margin-top: 2rem;
}
.hv-mt-3 {
	margin-top: 3rem;
}
.hv-mt-4 {
	margin-top: 4rem;
}

.hv-mb-1 {
	margin-bottom: 1rem;
}
.hv-mb-2 {
	margin-bottom: 2rem;
}
.hv-mb-3 {
	margin-bottom: 3rem;
}
.hv-mb-4 {
	margin-bottom: 4rem;
}

.hv-pt-1 {
	padding-top: 1rem;
}
.hv-pt-2 {
	padding-top: 2rem;
}
.hv-pt-3 {
	padding-top: 3rem;
}

.hv-pb-1 {
	padding-bottom: 1rem;
}
.hv-pb-2 {
	padding-bottom: 2rem;
}
.hv-pb-3 {
	padding-bottom: 3rem;
}

/* ===== ADDITIONAL STYLES FOR SPECIFIC SECTIONS ===== */

/* Light page specific */
.hv-light-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.hv-light-card {
	background: var(--hv-bg-card);
	border-radius: 20px;
	padding: 2rem;
	border: 1px solid var(--hv-border);
	transition: var(--hv-transition-normal);
}

.hv-light-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 224, 184, 0.2);
}

.hv-light-card h3 {
	color: var(--hv-accent-teal);
	margin-bottom: 1rem;
}

/* Repair page specific */
.hv-repair-section {
	background: var(--hv-bg-card);
	padding: 3rem;
	border-radius: 20px;
	margin: 2rem 0;
	border: 1px solid var(--hv-border);
}

.hv-repair-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

@media (max-width: 768px) {
	.hv-repair-intro {
		grid-template-columns: 1fr;
	}
}

/* About page specific */
.hv-mission-box {
	background: linear-gradient(
		135deg,
		rgba(255, 138, 0, 0.1),
		rgba(0, 224, 184, 0.1)
	);
	padding: 3rem;
	border-radius: 20px;
	border: 1px solid var(--hv-border);
	text-align: center;
	margin: 3rem 0;
}

.hv-mission-box h2 {
	color: var(--hv-accent-orange);
	margin-bottom: 1.5rem;
}

/* Contact page specific */
.hv-contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.hv-contact-info {
	background: var(--hv-bg-card);
	padding: 3rem;
	border-radius: 20px;
	border: 1px solid var(--hv-border);
}

@media (max-width: 968px) {
	.hv-contact-wrapper {
		grid-template-columns: 1fr;
	}
}

/* Privacy, Terms, Cookies pages */
.hv-content-page {
	max-width: 900px;
	margin: 0 auto;
	padding: 100px 2rem 4rem;
}

.hv-content-page h1 {
	margin-bottom: 2rem;
	text-align: center;
}

.hv-content-page h2 {
	margin-top: 3rem;
	margin-bottom: 1.5rem;
	color: var(--hv-accent-orange);
}

.hv-content-page h3 {
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: var(--hv-accent-teal);
}

.hv-content-page p {
	margin-bottom: 1.5rem;
	line-height: 1.9;
}

.hv-content-page ul,
.hv-content-page ol {
	margin-left: 2rem;
	margin-bottom: 1.5rem;
	list-style: disc;
}

.hv-content-page li {
	margin-bottom: 0.8rem;
	color: var(--hv-text-secondary);
	line-height: 1.8;
}

/* Thank you page */
.hv-thank-you {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem;
}

.hv-thank-you-content {
	max-width: 600px;
}

.hv-thank-you-icon {
	font-size: 5rem;
	color: var(--hv-accent-teal);
	margin-bottom: 2rem;
	animation: hv-scale-in 0.5s ease;
}

.hv-thank-you h1 {
	margin-bottom: 1.5rem;
}

.hv-thank-you p {
	color: var(--hv-text-secondary);
	font-size: 1.2rem;
	margin-bottom: 2.5rem;
}

/* Image placeholder styling */
.hv-img-placeholder {
	background: linear-gradient(
		135deg,
		rgba(255, 138, 0, 0.1),
		rgba(0, 224, 184, 0.1)
	);
	border: 2px dashed var(--hv-border);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
	height: 100%;
	width: 100%;
	color: var(--hv-text-secondary);
	font-style: italic;
}

/* Loading animation */
.hv-loading {
	display: inline-block;
	width: 50px;
	height: 50px;
	border: 4px solid rgba(255, 255, 255, 0.1);
	border-top-color: var(--hv-accent-teal);
	border-radius: 50%;
	animation: hv-spin 1s linear infinite;
}

@keyframes hv-spin {
	to {
		transform: rotate(360deg);
	}
}

/* Overlay for mobile menu */
.hv-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 999;
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hv-overlay.hv-active {
	display: block;
	opacity: 1;
}

/* Smooth scroll padding for fixed header */
html {
	scroll-padding-top: 80px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.hv-container {
		padding: 0 1.5rem;
	}

	.hv-section {
		padding: var(--hv-spacing-lg) 0;
	}

	.hv-grid-4 {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	}

	.hv-burger {
		display: flex;
	}

	.hv-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 300px;
		height: 100vh;
		background: linear-gradient(
			135deg,
			rgba(28, 37, 46, 0.98),
			rgba(14, 20, 27, 0.98)
		);
		backdrop-filter: blur(20px);
		flex-direction: column;
		padding: 6rem 2rem 2rem;
		gap: 2rem;
		transition: var(--hv-transition-normal);
		box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
	}

	.hv-nav.hv-active {
		right: 0;
	}

	.hv-nav-list {
		flex-direction: column;
		gap: 1.5rem;
	}

	.hv-nav-link {
		font-size: 1.2rem;
	}
}

@media (max-width: 768px) {
	.hv-hero-buttons {
		flex-direction: column;
	}

	.hv-btn {
		width: 100%;
		text-align: center;
	}

	.hv-grid-2,
	.hv-grid-3,
	.hv-grid-4 {
		grid-template-columns: 1fr;
	}

	.hv-footer-content {
		grid-template-columns: 1fr;
	}

	.hv-cookie-popup {
		left: 1rem;
		right: 1rem;
	}

	.hv-form {
		padding: 2rem 1.5rem;
	}

	.hv-section {
		padding: var(--hv-spacing-md) 0;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.8rem;
	}
}

@media (max-width: 480px) {
	.hv-container {
		padding: 0 1rem;
	}

	.hv-header-content {
		padding: 1rem 1.5rem;
	}

	.hv-logo {
		font-size: 1.5rem;
	}

	.hv-card,
	.hv-timeline-item,
	.hv-testimonial,
	.hv-team-card {
		padding: 1.5rem;
	}

	.hv-quote {
		padding: 2rem 1.5rem;
	}

	.hv-hero-content {
		padding: 1rem;
	}

	.hv-btn {
		padding: 0.9rem 2rem;
		font-size: 1rem;
	}

	.hv-timeline,
	.hv-light-grid,
	.hv-grid-2,
	.hv-grid-3,
	.hv-grid-4 {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.hv-section-title {
		font-size: 1.3rem;
	}

	.hv-repair-section {
		padding: 2rem;
	}

	.hv-grid-small,
	.hv-contact-wrapper {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}

	.hv-light-card h3 {
		font-size: 1rem;
	}
}

.hv-legal-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 120px 24px 80px;
	animation: hv-legal-fade-in 0.8s ease-out;
}

/* Анимация появления */
@keyframes hv-legal-fade-in {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Героический раздел (шапка страницы) */
.hv-legal-hero {
	text-align: center;
	margin-bottom: 60px;
	padding: 40px 24px;
	background: linear-gradient(
		135deg,
		rgba(255, 138, 0, 0.08) 0%,
		rgba(0, 224, 184, 0.08) 100%
	);
	border-radius: 16px;
	border: 1px solid rgba(255, 138, 0, 0.15);
	position: relative;
	overflow: hidden;
}

.hv-legal-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(255, 138, 0, 0.05) 0%,
		transparent 70%
	);
	animation: hv-legal-pulse 8s ease-in-out infinite;
}

@keyframes hv-legal-pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.8;
	}
}

/* Главный заголовок */
.hv-legal-title {
	font-size: 2.8rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 16px;
	letter-spacing: -0.02em;
	position: relative;
	z-index: 1;
	text-shadow: 0 2px 20px rgba(255, 138, 0, 0.3);
}

/* Подзаголовок */
.hv-legal-subtitle {
	font-size: 1.15rem;
	color: #9ca3af;
	margin-bottom: 12px;
	font-weight: 400;
	position: relative;
	z-index: 1;
}

/* Дата обновления */
.hv-legal-update {
	font-size: 0.9rem;
	color: #00e0b8;
	font-weight: 500;
	position: relative;
	z-index: 1;
	display: inline-block;
	padding: 6px 16px;
	background-color: rgba(0, 224, 184, 0.1);
	border-radius: 20px;
	margin-top: 8px;
}

/* Секции контента */
.hv-legal-section {
	background-color: #1c252e;
	border-radius: 12px;
	padding: 36px 32px;
	margin-bottom: 28px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: all 0.3s ease;
	position: relative;
}

.hv-legal-section:hover {
	border-color: rgba(255, 138, 0, 0.2);
	box-shadow: 0 4px 24px rgba(255, 138, 0, 0.08);
	transform: translateY(-2px);
}

/* Заголовки секций */
.hv-legal-heading {
	font-size: 1.65rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid rgba(255, 138, 0, 0.3);
	position: relative;
}

.hv-legal-heading::before {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, #ff8a00 0%, #00e0b8 100%);
	border-radius: 2px;
}

/* Основной текст */
.hv-legal-text {
	font-size: 1rem;
	line-height: 1.8;
	color: #e5eaf0;
	margin-bottom: 16px;
	text-align: justify;
}

.hv-legal-text:last-child {
	margin-bottom: 0;
}

/* Выделение текста */
.hv-legal-text strong {
	color: #ff8a00;
	font-weight: 600;
}

/* Контактный блок */
.hv-legal-contact {
	background: linear-gradient(135deg, #1c252e 0%, #0e141b 100%);
	border-radius: 12px;
	padding: 40px 32px;
	margin-top: 40px;
	border: 2px solid rgba(0, 224, 184, 0.2);
	box-shadow: 0 8px 32px rgba(0, 224, 184, 0.1);
}

.hv-legal-contact-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: #00e0b8;
	margin-bottom: 20px;
	text-align: center;
}

.hv-legal-contact-info {
	margin-top: 24px;
	padding: 24px;
	background-color: rgba(28, 37, 46, 0.5);
	border-radius: 8px;
	border-left: 4px solid #ff8a00;
}

.hv-legal-contact-info p {
	font-size: 1.05rem;
	color: #e5eaf0;
	margin-bottom: 12px;
	line-height: 1.6;
}

.hv-legal-contact-info p:last-child {
	margin-bottom: 0;
}

.hv-legal-contact-info strong {
	color: #00e0b8;
	font-weight: 600;
	display: inline-block;
	min-width: 100px;
}

/* Ссылки */
.hv-legal-contact-info a,
.hv-legal-text a {
	color: #ff8a00;
	text-decoration: none;
	transition: all 0.3s ease;
	border-bottom: 1px solid transparent;
}

.hv-legal-contact-info a:hover,
.hv-legal-text a:hover {
	color: #00e0b8;
	border-bottom-color: #00e0b8;
}

/* Адаптивный дизайн для планшетов */
@media (max-width: 768px) {
	.hv-legal-title {
		font-size: 2.2rem;
	}

	.hv-legal-subtitle {
		font-size: 1rem;
	}

	.hv-legal-hero {
		padding: 32px 20px;
		margin-bottom: 40px;
	}

	.hv-legal-section {
		padding: 28px 24px;
		margin-bottom: 24px;
	}

	.hv-legal-heading {
		font-size: 1.4rem;
	}

	.hv-legal-text {
		font-size: 0.95rem;
		text-align: left;
	}

	.hv-legal-contact {
		padding: 32px 24px;
	}

	.hv-legal-contact-title {
		font-size: 1.5rem;
	}

	.hv-legal-contact-info {
		padding: 20px;
	}

	.hv-legal-contact-info strong {
		display: block;
		margin-bottom: 4px;
	}
}

/* Адаптивный дизайн для мобильных устройств */
@media (max-width: 480px) {
	.hv-legal-body {
		font-size: 15px;
	}

	.hv-legal-title {
		font-size: 1.4rem;
		letter-spacing: -0.01em;
	}

	.hv-legal-subtitle {
		font-size: 0.9rem;
	}

	.hv-legal-update {
		font-size: 0.85rem;
		padding: 5px 12px;
	}

	.hv-legal-hero {
		padding: 24px 16px;
		margin-bottom: 32px;
		border-radius: 12px;
	}

	.hv-legal-section {
		padding: 24px 20px;
		margin-bottom: 20px;
		border-radius: 10px;
	}

	.hv-legal-heading {
		font-size: 1.25rem;
		margin-bottom: 16px;
		padding-bottom: 10px;
	}

	.hv-legal-heading::before {
		width: 40px;
	}

	.hv-legal-text {
		font-size: 0.9rem;
		line-height: 1.7;
		margin-bottom: 14px;
	}

	.hv-legal-contact {
		padding: 28px 20px;
		margin-top: 32px;
	}

	.hv-legal-contact-title {
		font-size: 1.3rem;
		margin-bottom: 16px;
	}

	.hv-legal-contact-info {
		padding: 16px;
		margin-top: 20px;
	}

	.hv-legal-contact-info p {
		font-size: 0.95rem;
		margin-bottom: 10px;
	}
}

/* Улучшенная читаемость на небольших экранах */
@media (max-width: 360px) {
	.hv-legal-title {
		font-size: 1.3rem;
	}

	.hv-legal-heading {
		font-size: 1.15rem;
	}

	.hv-legal-text {
		font-size: 0.875rem;
	}
}
