/* ===== CSS VARIABLES ===== */
:root {
	--primary: #FFAB00;
	--primary-dark: #FF8F00;
	--primary-light: #FFD740;
	--accent: #10B981;
	--accent-dark: #059669;
	--dark: #0F172A;
	--dark-blue: #1E293B;
	--dark-overlay: rgba(15, 23, 42, 0.85);
	--white: #FFFFFF;
	--gray-50: #F8FAFC;
	--gray-100: #F1F5F9;
	--gray-200: #E2E8F0;
	--gray-300: #CBD5E1;
	--gray-400: #94A3B8;
	--gray-500: #64748B;
	--gray-600: #475569;
	--gray-700: #334155;
	--text-dark: #1E293B;
	--text-light: #F8FAFC;
	--shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
	--shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
	--shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.25);
	--radius: 12px;
	--radius-sm: 8px;
	--radius-lg: 20px;
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--font-heading: 'Outfit', sans-serif;
	--font-display: 'Unbounded', sans-serif;
	--font-body: 'Inter', sans-serif;
	--max-width: 1200px;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--font-body);
	color: var(--text-dark);
	line-height: 1.6;
	background: var(--white);
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

button {
	cursor: pointer;
	border: none;
	font-family: inherit;
}

input,
textarea,
select {
	font-family: inherit;
}

ul {
	list-style: none;
}

/* ===== UTILITY ===== */
.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 2;
}

.section-title {
	font-family: var(--font-heading);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	text-align: center;
	margin-bottom: 48px;
	position: relative;
}

.section-title::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	margin: 16px auto 0;
	border-radius: 2px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(40px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}
}

@keyframes shimmer {
	0% {
		background-position: -200% center;
	}

	100% {
		background-position: 200% center;
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(0.3) translateY(20px);
	}

	50% {
		transform: scale(1.05) translateY(-5px);
	}

	70% {
		transform: scale(0.95) translateY(2px);
	}

	100% {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

@keyframes promoSlide {
	0% {
		transform: translateX(-120%);
		opacity: 0;
	}

	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes floatIn {
	0% {
		opacity: 0;
		transform: scale(0.7) translateY(30px);
	}

	100% {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ===== HEADER / NAV ===== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 0 16px;
	transition: var(--transition);
	background: transparent;
	max-width: 100vw;
}

.header.scrolled {
	background: rgba(15, 23, 42, 0.95);
	backdrop-filter: blur(12px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
	width: 100%;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 1.4rem;
	color: var(--white);
	letter-spacing: -0.5px;
}

.logo-img {
	height: 36px;
	width: auto;
}

.logo svg {
	flex-shrink: 0;
}

.logo span.logo-accent {
	color: var(--primary);
}

.nav {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.nav li {
	list-style: none;
}

.nav a {
	color: var(--white);
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.3px;
	position: relative;
	transition: var(--transition);
	font-family: var(--font-heading);
}

.nav a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: var(--transition);
}

.nav a:hover::after {
	width: 100%;
}

.nav a:hover {
	color: var(--primary);
}

.header-right {
	display: flex;
	align-items: center;
	gap: 16px;
}

.header-phone {
	color: var(--white);
	font-weight: 700;
	font-size: 0.95rem;
	font-family: var(--font-heading);
	display: flex;
	align-items: center;
	gap: 6px;
}

.header-phone svg {
	color: var(--primary);
}

.lang-switch {
	display: flex;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	overflow: hidden;
}

.lang-switch button,
.lang-switch a {
	padding: 6px 14px;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--white);
	background: transparent;
	transition: var(--transition);
	font-family: var(--font-heading);
	text-decoration: none;
	line-height: 1;
	display: flex;
	align-items: center;
}

.lang-switch button.active,
.lang-switch a.active {
	background: var(--primary);
	color: var(--dark);
}

.burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	padding: 8px;
}

.burger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--white);
	transition: var(--transition);
	border-radius: 1px;
}

.burger.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
	opacity: 0;
}

.burger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
	position: relative;
	min-height: 890px;
	display: flex;
	align-items: center;
	background: var(--dark);
}

.hero-bg {
	position: absolute;
	inset: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 0;
}

.hero-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.45) 50%, rgba(15, 23, 42, 0.55) 100%);
}

.hero-pattern {
	position: absolute;
	inset: 0;
	z-index: 1;
	opacity: 0.06;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
	background-size: 60px 60px;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 70px 24px 60px;
	width: 100%;
}

/* Hero form wrapper — outside hero, pulled up on desktop */
.hero-form-wrapper {
	position: relative;
	z-index: 10;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	justify-content: flex-end;
	margin-top: -650px;
	margin-bottom: 120px;
	pointer-events: none;
}

.hero-form-wrapper .hero-form-card {
	width: 420px;
	pointer-events: all;
}

.hero-left {
	max-width: 55%;
	animation: slideInLeft 0.8s ease forwards;
}

.hero-descriptor {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 6vw, 3.75rem);
	font-weight: 900;
	color: var(--white);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin-bottom: 16px;
	text-shadow: none;
}

.hero-descriptor .highlight {
	color: var(--primary);
}

.hero-subtitle {
	font-size: clamp(1.15rem, 2.5vw, 1.35rem);
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 24px;
	max-width: 500px;
	line-height: 1.6;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero-features {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 28px;
}

.hero-feature {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 1);
	font-size: 1rem;
	font-weight: 500;
	padding: 10px 16px;
	background: rgba(255, 255, 255, 0.18);
	border-radius: var(--radius-sm);
	border-left: 3px solid var(--primary);
	backdrop-filter: blur(6px);
	transition: var(--transition);
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.hero-feature:hover {
	background: rgba(255, 255, 255, 0.14);
	transform: translateX(6px);
}

.hero-feature svg {
	flex-shrink: 0;
	color: var(--primary);
}

.hero-cta-row {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 32px;
	border-radius: 50px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 0.95rem;
	transition: var(--transition);
	letter-spacing: 0.3px;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: var(--dark);
	box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.btn-outline {
	background: transparent;
	color: var(--white);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
	border-color: var(--primary);
	color: var(--primary);
	background: rgba(245, 158, 11, 0.1);
}

.btn-accent {
	background: linear-gradient(135deg, var(--accent), var(--accent-dark));
	color: var(--white);
	box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.btn-accent:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

/* Hero Form */
.hero-form-card {
	background: rgba(255, 255, 255, 0.97);
	border-radius: var(--radius-lg);
	padding: 36px 32px;
	box-shadow: var(--shadow-xl);
	animation: slideInRight 0.8s ease 0.2s both;
	position: relative;
	overflow: hidden;
}

/* Decorative dotted pattern on form card */
.hero-form-card::after {
	content: '';
	position: absolute;
	bottom: 12px;
	right: 12px;
	width: 60px;
	height: 60px;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 1.5px, transparent 1.5px);
	background-size: 10px 10px;
	pointer-events: none;
	opacity: 0.6;
}

.hero-form-title {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-dark);
	text-align: center;
	margin-bottom: 24px;
}

.hero-form-title svg {
	display: inline-block;
	vertical-align: middle;
	margin-right: 6px;
}

.form-group {
	margin-bottom: 16px;
}

.form-group label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--gray-600);
	margin-bottom: 6px;
}

.form-input {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid var(--gray-200);
	border-radius: var(--radius-sm);
	font-size: 0.95rem;
	transition: var(--transition);
	outline: none;
	background: var(--gray-50);
}

.form-input:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
	background: var(--white);
}

.form-input::placeholder {
	color: var(--gray-400);
}

.hero-form-card .btn {
	width: 100%;
	padding: 16px;
	font-size: 1rem;
	margin-top: 8px;
}

/* ===== PROMO BADGE ===== */
.promo-badge {
	position: fixed;
	bottom: 24px;
	left: 24px;
	z-index: 900;
	background: linear-gradient(135deg, var(--primary), #EF6C00);
	color: var(--white);
	padding: 16px 24px;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	max-width: 300px;
	animation: none;
	cursor: pointer;
	transition: var(--transition);
}

.promo-badge:hover {
	transform: translateY(-4px) scale(1.02);
}

.promo-badge-close {
	position: absolute;
	top: 6px;
	right: 10px;
	background: none;
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.2rem;
	line-height: 1;
	padding: 4px;
}

.promo-badge-close:hover {
	color: var(--white);
}

.promo-badge h4 {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 1rem;
	margin-bottom: 6px;
}

.promo-badge p {
	font-size: 0.82rem;
	opacity: 0.9;
	line-height: 1.4;
}

.promo-badge .promo-btn {
	display: inline-block;
	margin-top: 10px;
	padding: 8px 20px;
	background: var(--white);
	color: var(--primary-dark);
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.82rem;
	font-family: var(--font-heading);
	transition: var(--transition);
}

.promo-badge .promo-btn:hover {
	background: var(--primary-light);
	color: var(--dark);
}

.promo-badge.hidden {
	display: none;
}

.promo-badge.visible {
	display: block;
	animation: promoSlide 0.6s ease both;
}

/* ===== SECTION: CALCULATOR (redesigned — compact, split layout) ===== */
.calculator-section {
	padding: 0 0 120px;
	background: transparent;
	position: relative;
	overflow-x: clip;
	overflow-y: visible;
	z-index: 5;
}

.calculator-section::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.08), transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.calc-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 40px;
	box-shadow: var(--shadow);
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
	overflow: visible;
}

/* Decorative dotted grid on calc card */
.calc-card::before {
	content: '';
	position: absolute;
	top: 20px;
	left: 20px;
	width: 80px;
	height: 80px;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 1.5px, transparent 1.5px);
	background-size: 12px 12px;
	pointer-events: none;
	z-index: 0;
	opacity: 0.7;
}

.calc-card .section-title {
	margin-bottom: 28px;
	font-size: clamp(1.4rem, 3vw, 1.9rem);
	position: relative;
	z-index: 3;
}

.calc-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	align-items: stretch;
	min-height: 380px;
	max-width: 520px;
}

.calc-left {
	display: flex;
	flex-direction: column;
	gap: 18px;
	position: relative;
	z-index: 3;
}

/* Type selector — single row */
.calc-type-selector {
	display: flex;
	gap: 8px;
}

.calc-type-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	border: 2px solid var(--gray-200);
	border-radius: var(--radius-sm);
	background: var(--white);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--gray-600);
	transition: var(--transition);
	text-align: center;
	line-height: 1.3;
	cursor: pointer;
	white-space: nowrap;
}

.calc-type-btn.active,
.calc-type-btn:hover {
	border-color: var(--primary);
	color: var(--primary-dark);
	background: rgba(245, 158, 11, 0.05);
}

.calc-type-btn.active {
	box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

/* Power & mount — compact */
.calc-row {
	margin-bottom: 0;
}

.calc-row>label {
	display: block;
	font-weight: 700;
	font-size: 0.85rem;
	margin-bottom: 8px;
	color: var(--text-dark);
	font-family: var(--font-heading);
}

.power-options {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.power-option {
	padding: 7px 14px;
	border: 2px solid var(--gray-200);
	border-radius: 50px;
	background: var(--white);
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--gray-600);
	transition: var(--transition);
	cursor: pointer;
}

.power-option.active,
.power-option:hover {
	border-color: var(--accent);
	color: var(--accent-dark);
	background: rgba(16, 185, 129, 0.06);
}

.power-option.active {
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.mount-options {
	display: flex;
	gap: 8px;
}

.mount-option {
	flex: 1;
	padding: 10px 12px;
	border: 2px solid var(--gray-200);
	border-radius: var(--radius-sm);
	background: var(--white);
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--gray-600);
	transition: var(--transition);
	text-align: center;
	cursor: pointer;
}

.mount-option.active,
.mount-option:hover {
	border-color: var(--primary);
	color: var(--primary-dark);
	background: rgba(245, 158, 11, 0.05);
}

.calc-bottom {
	margin-top: 4px;
}

.calc-bottom .wpcf7,
.calc-bottom form {
	display: flex;
	gap: 10px;
	align-items: flex-end;
}

.calc-bottom .form-group {
	flex: 1;
	margin: 0;
}

.calc-bottom .wpcf7-form-control-wrap {
	display: block;
}

.calc-bottom .form-input {
	padding: 10px 14px;
	font-size: 0.88rem;
}

.calc-bottom .wpcf7-submit,
.calc-bottom .btn {
	padding: 10px 22px;
	font-size: 0.85rem;
	white-space: nowrap;
	flex-shrink: 0;
}

.calc-note {
	font-size: 0.78rem;
	color: var(--gray-500);
	margin-top: 10px;
	font-style: italic;
}

/* ===== Calculator — clip wrapper (clips circle at card edges) ===== */
.calc-circle-clip {
	position: absolute;
	inset: 0;
	overflow: hidden;
	border-radius: var(--radius-lg);
	pointer-events: none;
	z-index: 1;
}

/* ===== Calculator — circle background (inside clip, gets cut off) ===== */
.calc-circle-showcase {
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	transition: background 0.5s ease, box-shadow 0.5s ease;
	right: -140px;
	top: 55%;
	transform: translateY(-45%);
}

.calc-circle-showcase.type-home {
	background: linear-gradient(135deg, #F59E0B, #FBBF24);
	box-shadow: 0 8px 80px rgba(245, 158, 11, 0.3);
}

.calc-circle-showcase.type-business {
	background: linear-gradient(135deg, #3B82F6, #60A5FA);
	box-shadow: 0 8px 80px rgba(59, 130, 246, 0.3);
}

.calc-circle-showcase.type-energy {
	background: linear-gradient(135deg, #10B981, #34D399);
	box-shadow: 0 8px 80px rgba(16, 185, 129, 0.3);
}

/* Decorative ring — also clipped */
.calc-circle-showcase::before {
	content: '';
	position: absolute;
	inset: -55px;
	border-radius: 50%;
	border: 2px dashed currentColor;
	opacity: 0.1;
}

.calc-circle-showcase.type-home::before {
	color: #F59E0B;
}

.calc-circle-showcase.type-business::before {
	color: #3B82F6;
}

.calc-circle-showcase.type-energy::before {
	color: #10B981;
}

/* ===== Calculator — image (NOT clipped, overflows card) ===== */
.calc-circle-img {
	position: absolute;
	width: 540px;
	height: 540px;
	object-fit: contain;
	/* Center on the circle: circle center is at right: -140+300 = 160px from right edge */
	right: -110px;
	top: 55%;
	transform: translateY(-45%);
	z-index: 4;
	transition: opacity 0.45s ease, transform 0.45s ease;
	filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.25));
	pointer-events: none;
}

.calc-circle-img.switching-out {
	opacity: 0;
	transform: translateY(-45%) translateX(-60px) scale(0.9);
}

.calc-circle-img.switching-in {
	opacity: 0;
	transform: translateY(-45%) translateX(80px) scale(0.9);
	transition: none;
}

/* ===== SECTION: SERVICES ===== */
.services-section {
	padding: 80px 0;
	background: var(--white);
	position: relative;
	overflow: hidden;
}

.services-section .bg-decor {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 300px;
	background: linear-gradient(180deg, var(--gray-50), transparent);
	pointer-events: none;
}

/* Decorative sun-ray arc top-right */
.services-section::before {
	content: '';
	position: absolute;
	top: -180px;
	right: -180px;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

/* Decorative grid pattern bottom-left */
.services-section::after {
	content: '';
	position: absolute;
	bottom: -60px;
	left: -40px;
	width: 240px;
	height: 240px;
	background:
		linear-gradient(90deg, rgba(245, 158, 11, 0.05) 1px, transparent 1px),
		linear-gradient(0deg, rgba(245, 158, 11, 0.05) 1px, transparent 1px);
	background-size: 24px 24px;
	transform: rotate(15deg);
	pointer-events: none;
	z-index: 0;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	position: relative;
	z-index: 1;
}

.service-card {
	background: var(--white);
	border-radius: var(--radius);
	padding: 32px 24px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	border: 1px solid var(--gray-100);
	transition: var(--transition);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	transform: scaleX(0);
	transition: var(--transition);
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(16, 185, 129, 0.1));
	border-radius: 50%;
	transition: var(--transition);
}

.service-card:hover .service-icon {
	background: linear-gradient(135deg, var(--primary), var(--accent));
}

.service-card:hover .service-icon svg {
	color: var(--white);
}

.service-icon svg {
	width: 32px;
	height: 32px;
	color: var(--primary-dark);
	transition: var(--transition);
}

.service-card h3 {
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 12px;
	line-height: 1.3;
}

.service-card p {
	font-size: 0.85rem;
	color: var(--gray-500);
	line-height: 1.6;
	margin-bottom: 16px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.service-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 24px;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--primary-dark);
	background: rgba(245, 158, 11, 0.1);
	transition: var(--transition);
	font-family: var(--font-heading);
}

.service-btn:hover {
	background: var(--primary);
	color: var(--dark);
}

/* ===== SECTION: ADVANTAGES ===== */
/* ===== ADVANTAGES: Interactive Layout ===== */
.advantages-section {
	padding: 80px 0;
	background: var(--dark);
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.advantages-section::before {
	content: '';
	position: absolute;
	top: -200px;
	left: -200px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.08), transparent 70%);
	border-radius: 50%;
}

.advantages-section .section-title {
	color: var(--white);
}

.adv-layout {
	display: flex;
	gap: 48px;
	align-items: stretch;
	position: relative;
	z-index: 1;
	min-height: 420px;
}

/* Left display panel */
.adv-display {
	flex: 1;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-lg);
	padding: 0;
	position: relative;
	overflow: hidden;
	min-height: 420px;
}

/* Dark gradient overlay for text readability */
.adv-display::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 100%);
	z-index: 1;
	pointer-events: none;
}

/* Decorative corner bracket top-right */
.adv-display::after {
	content: '';
	position: absolute;
	top: 16px;
	right: 16px;
	width: 40px;
	height: 40px;
	border-top: 2px solid rgba(245, 158, 11, 0.35);
	border-right: 2px solid rgba(245, 158, 11, 0.35);
	border-radius: 0 6px 0 0;
	pointer-events: none;
	z-index: 2;
}

.adv-display-inner {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 420px;
}

.adv-display-num {
	font-family: var(--font-heading);
	font-size: 6rem;
	font-weight: 900;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	position: absolute;
	bottom: 24px;
	right: 24px;
	z-index: 3;
	opacity: 0.85;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.adv-display-img-wrap {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.adv-display-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.adv-display-text {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
	line-height: 1.7;
	max-width: 480px;
	position: absolute;
	bottom: 24px;
	left: 28px;
	right: 120px;
	z-index: 2;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Switching animation */
.adv-display-num.switching,
.adv-display-img.switching,
.adv-display-text.switching {
	opacity: 0;
	transform: translateY(12px);
}

/* Right menu */
.adv-menu {
	width: 320px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.adv-menu-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 22px 24px;
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	transition: var(--transition);
	text-align: left;
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.adv-menu-item:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.adv-menu-item:hover {
	color: rgba(255, 255, 255, 0.8);
	background: rgba(255, 255, 255, 0.03);
}

.adv-menu-item.active {
	color: var(--white);
	background: rgba(255, 255, 255, 0.06);
}

.adv-menu-num {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 0.85rem;
	color: var(--primary);
	opacity: 0.5;
	min-width: 28px;
	transition: var(--transition);
}

.adv-menu-item.active .adv-menu-num {
	opacity: 1;
}

.adv-menu-title {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.05rem;
	flex: 1;
}

.adv-menu-line {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--primary);
	border-radius: 0 3px 3px 0;
	transform: scaleY(0);
	transition: transform 0.3s ease;
}

.adv-menu-item.active .adv-menu-line {
	transform: scaleY(1);
}

/* Mobile dropdown - hidden on desktop */
.adv-dropdown-wrap {
	display: none;
	position: relative;
	z-index: 10;
}

.adv-dropdown-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	color: var(--white);
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: var(--transition);
}

.adv-dropdown-toggle:hover,
.adv-dropdown-toggle.open {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--primary);
}

.adv-dropdown-arrow {
	transition: transform 0.3s ease;
	opacity: 0.6;
}

.adv-dropdown-toggle.open .adv-dropdown-arrow {
	transform: rotate(180deg);
}

.adv-dropdown-list {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	background: var(--dark-blue);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.adv-dropdown-list.open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.adv-dropdown-item {
	display: block;
	width: 100%;
	padding: 14px 20px;
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	color: rgba(255, 255, 255, 0.6);
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.92rem;
	text-align: left;
	cursor: pointer;
	transition: var(--transition);
}

.adv-dropdown-item:last-child {
	border-bottom: none;
}

.adv-dropdown-item:hover {
	background: rgba(255, 255, 255, 0.06);
	color: var(--white);
}

.adv-dropdown-item.active {
	color: var(--primary);
	background: rgba(245, 158, 11, 0.08);
}

/* ===== SECTION: ABOUT COMPANY ===== */
.about-section {
	padding: 100px 0;
	background: var(--white);
	position: relative;
	overflow: hidden;
}

img.img_sect {
	position: absolute;
	right: -50px;
	bottom: -50px;
	width: 910px;
	height: auto;
	opacity: 0.2;
}

img.img_sect_2 {
	position: absolute;
	left: -50px;
	bottom: -50px;
	width: 910px;
	height: auto;
	opacity: 0.2;
}

.about-section::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.about-section::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.about-content .section-title::after {
	margin-left: 0;
	margin-right: auto;
}

.about-lead {
	font-size: 1.15rem;
	line-height: 1.7;
	color: var(--text-dark);
	margin-bottom: 16px;
}

.about-text {
	font-size: 0.95rem;
	line-height: 1.8;
	color: var(--gray-600);
	margin-bottom: 32px;
}

.about-stats {
	display: flex;
	gap: 32px;
	margin-bottom: 36px;
	padding: 24px 0;
	border-top: 1px solid var(--gray-100);
	border-bottom: 1px solid var(--gray-100);
}

.about-stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.about-stat-num {
	font-family: var(--font-heading);
	font-size: 2.2rem;
	font-weight: 900;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
}

.about-stat-label {
	font-size: 0.82rem;
	color: var(--gray-500);
	font-weight: 600;
}

.about-values {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.about-value {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.about-value-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(16, 185, 129, 0.08));
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--primary-dark);
}

.about-value div strong {
	display: block;
	font-family: var(--font-heading);
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 2px;
}

.about-value div span {
	font-size: 0.85rem;
	color: var(--gray-500);
}

/* About right visual */
.about-visual {
	position: relative;
}

.about-img-wrap {
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 4/3;
	background: var(--gray-100);
	position: relative;
}

.about-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	font-size: 0.85rem;
	background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
}

.about-accent-card {
	position: absolute;
	bottom: -24px;
	left: -24px;
	background: var(--dark);
	color: var(--white);
	padding: 24px 28px;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	z-index: 2;
}

.about-accent-num {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 900;
	color: var(--primary);
	line-height: 1;
	margin-bottom: 6px;
}

.about-accent-text {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.7);
	max-width: 180px;
	line-height: 1.4;
}

/* ===== SECTION: TEAM ===== */
/* ===== SECTION: OUR WORKS ===== */
.works-section {
	padding: 80px 0 100px;
	background: var(--dark);
	position: relative;
	overflow: hidden;
}

.works-section .section-title {
	text-align: left;
	margin-bottom: 24px;
	color: var(--white);
}

.works-section .section-title::after {
	margin: 16px 0 0;
}

.works-layout {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 48px;
	align-items: start;
}

.works-info {
	padding-top: 16px;
}

.works-desc {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.7;
	margin-bottom: 32px;
}

.works-slider {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
	overflow: hidden;
}

.works-main-slide {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.08);
	aspect-ratio: 16/10;
}

.works-slide-label {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	background: var(--white);
	color: var(--text-dark);
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.85rem;
	padding: 6px 16px;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow);
}

.works-slide-img {
	width: 100%;
	height: 100%;
	display: block;
	cursor: zoom-in;
}

.works-slide-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.works-placeholder-img {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.3);
	font-size: 0.85rem;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.works-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-dark);
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.works-arrow:hover {
	background: var(--white);
	box-shadow: var(--shadow-lg);
}

.works-arrow-left {
	left: 12px;
}

.works-arrow-right {
	right: 12px;
}

.works-thumbs {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding: 0 0 12px;
	scrollbar-width: thin;
	scrollbar-color: var(--primary) rgba(255, 255, 255, 0.08);
	scroll-snap-type: x proximity;
}

.works-thumbs::-webkit-scrollbar {
	height: 10px;
}

.works-thumbs::-webkit-scrollbar-track {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(30, 41, 59, 0.9));
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.works-thumbs::-webkit-scrollbar-thumb {
	background: linear-gradient(90deg, var(--primary), var(--accent));
	border-radius: 999px;
	border: 2px solid rgba(15, 23, 42, 0.9);
	box-shadow: 0 6px 18px rgba(255, 171, 0, 0.24);
}

.works-thumbs::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(90deg, var(--primary-light), var(--accent));
}

.works-thumb {
	flex-shrink: 0;
	width: 100px;
	height: 70px;
	border-radius: var(--radius-sm);
	overflow: hidden;
	cursor: pointer;
	border: 3px solid transparent;
	transition: var(--transition);
	opacity: 0.6;
	scroll-snap-align: start;
}

.works-thumb.active {
	border-color: var(--primary);
	opacity: 1;
}

.works-thumb:hover {
	opacity: 1;
}

.works-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.works-thumb-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.3);
	font-size: 0.8rem;
	font-weight: 600;
}

/* ===== SECTION: PARTNERS ===== */
.partners-section {
	padding: 80px 0;
	background: var(--gray-50);
	position: relative;
	overflow: hidden;
}

.partners-section::before {
	content: '';
	position: absolute;
	top: -100px;
	left: -100px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.partners-subtitle {
	text-align: center;
	color: var(--gray-500);
	font-size: 1rem;
	margin-top: -20px;
	margin-bottom: 48px;
}

.partners-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	position: relative;
	z-index: 1;
	margin-bottom: 40px;
}

.partner-card {
	background: var(--white);
	border: 1px solid var(--gray-100);
	border-radius: var(--radius);
	padding: 32px 20px;
	text-align: center;
	transition: var(--transition);
	cursor: default;
	position: relative;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.partner-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--primary-light));
	transform: scaleX(0);
	transition: transform 0.4s ease;
	transform-origin: left;
}

.partner-card:hover {
	border-color: var(--gray-200);
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.partner-card:hover::after {
	transform: scaleX(1);
}

.partner-logo-placeholder {
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	position: relative;
	z-index: 1;
}

.partner-logo-placeholder span {
	font-family: var(--font-heading);
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--gray-700);
	letter-spacing: -0.5px;
	transition: var(--transition);
}

.partner-card:hover .partner-logo-placeholder span {
	color: var(--primary-dark);
}

.partner-logo-placeholder img {
	max-height: 48px;
	max-width: 120px;
	object-fit: contain;
	transition: var(--transition);
	filter: grayscale(100%) opacity(0.6);
}

.partner-card:hover .partner-logo-placeholder img {
	filter: grayscale(0%) opacity(1);
}

.partner-type {
	font-size: 0.78rem;
	color: var(--gray-400);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	z-index: 1;
}

.partners-cta {
	text-align: center;
	position: relative;
	z-index: 1;
}

.partners-cta p {
	color: var(--gray-500);
	font-size: 0.9rem;
	padding: 20px;
	border-top: 1px solid var(--gray-200);
}

/* ===== SECTION: REVIEWS ===== */
.reviews-section {
	padding: 80px 0;
	background: var(--gray-50);
	position: relative;
	overflow: hidden;
}

/* Subtle solar cell pattern */
.reviews-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="80" fill="none" stroke="%23F59E0B" stroke-width="0.5" opacity="0.08"/></svg>') repeat;
	background-size: 200px;
	pointer-events: none;
}

/* Decorative amber glow bottom-right */
.reviews-section::after {
	content: '';
	position: absolute;
	bottom: -120px;
	right: -80px;
	width: 350px;
	height: 350px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.07) 0%, transparent 65%);
	pointer-events: none;
}

.reviews-carousel {
	position: relative;
	max-width: 700px;
	margin: 0 auto;
}

.review-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 40px;
	box-shadow: var(--shadow);
	text-align: center;
	position: relative;
}

.review-quotes {
	font-size: 4rem;
	color: var(--primary);
	font-family: Georgia, serif;
	line-height: 0.5;
	margin-bottom: 16px;
	opacity: 0.4;
}

.review-text {
	font-size: 1rem;
	color: var(--gray-600);
	line-height: 1.8;
	font-style: italic;
	margin-bottom: 24px;
}

.review-author {
	font-family: var(--font-heading);
	font-weight: 700;
	color: var(--text-dark);
	font-size: 0.95rem;
}

.review-position {
	color: var(--gray-400);
	font-size: 0.85rem;
	margin-top: 4px;
}

.review-nav {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 28px;
}

.review-nav button {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--white);
	box-shadow: var(--shadow);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	color: var(--gray-500);
}

.review-nav button:hover {
	background: var(--primary);
	color: var(--dark);
}

.review-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 20px;
}

.review-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--gray-300);
	transition: var(--transition);
	cursor: pointer;
}

.review-dot.active {
	background: var(--primary);
	width: 28px;
	border-radius: 5px;
}

/* ===== SECTION: CONTACTS ===== */
.contacts-section {
	padding: 80px 0 60px;
	background: var(--dark);
	color: var(--white);
}

.contacts-section .section-title {
	color: var(--white);
}

.contacts-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-bottom: 0;
}

.contact-info {
	padding-bottom: 40px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 24px;
}

.contact-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(245, 158, 11, 0.15);
	border-radius: 12px;
	flex-shrink: 0;
}

.contact-icon svg {
	color: var(--primary);
}

.contact-item strong {
	display: block;
	font-family: var(--font-heading);
	font-size: 0.85rem;
	color: var(--gray-400);
	margin-bottom: 4px;
}

.contact-item span {
	font-size: 1.05rem;
	font-weight: 600;
}

.messenger-buttons {
	display: flex;
	gap: 12px;
	margin-top: 8px;
	margin-bottom: 8px;
}

.messenger-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 50px;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--white);
	transition: var(--transition);
	text-decoration: none;
}

.messenger-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.messenger-btn svg {
	flex-shrink: 0;
}

.messenger-telegram {
	background: #0088cc;
}

.messenger-telegram:hover {
	background: #006daa;
}

.messenger-whatsapp {
	background: #25D366;
}

.messenger-whatsapp:hover {
	background: #1da851;
}

.messenger-viber {
	background: #7360f2;
}

.messenger-viber:hover {
	background: #5a48c9;
}

.contact-form {
	margin-top: 32px;
}

.contact-form h3 {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.2rem;
	margin-bottom: 20px;
}

.contact-form .form-input {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.15);
	color: var(--white);
}

.contact-form .form-input:focus {
	border-color: var(--primary);
	background: rgba(255, 255, 255, 0.12);
}

.contact-form .form-input::placeholder {
	color: var(--gray-400);
}

.contact-form textarea.form-input {
	resize: vertical;
	min-height: 100px;
}

.contact-map {
	border-radius: var(--radius-lg);
	overflow: hidden;
	height: 100%;
	min-height: 400px;
	background: var(--dark-blue);
	position: relative;
}

.contact-map iframe {
	width: 100%;
	height: 100%;
	border: none;
	min-height: 400px;
}

.contact-map-placeholder {
	width: 100%;
	height: 100%;
	min-height: 400px;
	background: linear-gradient(135deg, var(--dark-blue), #1a365d);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-400);
	font-size: 0.9rem;
}

/* Footer */
.footer {
	background: var(--dark);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 24px 0;
}

.footer-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.footer-copy {
	color: var(--gray-400);
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-logo-img {
	height: 24px;
	width: auto;
}

.footer-privacy {
	color: var(--gray-400);
	font-size: 0.85rem;
	transition: var(--transition);
}

.footer-privacy:hover {
	color: var(--primary);
}

/* ===== MODAL ===== */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	z-index: 2000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.modal-overlay.active {
	display: flex;
}

.modal {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 40px;
	max-width: 480px;
	width: 100%;
	position: relative;
	animation: bounceIn 0.4s ease;
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: var(--gray-100);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-500);
	transition: var(--transition);
}

.modal-close:hover {
	background: var(--gray-200);
	color: var(--dark);
}

.modal h3 {
	font-family: var(--font-heading);
	font-size: 1.3rem;
	font-weight: 800;
	margin-bottom: 20px;
	color: var(--text-dark);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
	position: fixed;
	top: 72px;
	left: 0;
	right: 0;
	background: rgba(15, 23, 42, 0.98);
	backdrop-filter: blur(12px);
	z-index: 999;
	padding: 24px;
	transform: translateY(-120%);
	transition: var(--transition);
}

.mobile-nav.active {
	transform: translateY(0);
}

.mobile-nav a {
	display: block;
	padding: 14px 0;
	color: var(--white);
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 1.1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: var(--transition);
}

.mobile-nav a:hover {
	color: var(--primary);
	padding-left: 8px;
}

.mobile-nav .lang-switch {
	margin-top: 16px;
	width: fit-content;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--primary);
	color: var(--dark);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow);
	z-index: 800;
	opacity: 0;
	transform: translateY(20px);
	transition: var(--transition);
	pointer-events: none;
}

.scroll-top.visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: all;
}

.scroll-top:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.hero-left {
		max-width: 100%;
	}

	.hero-form-wrapper {
		margin-top: 0;
		padding: 24px;
		justify-content: center;
		margin-bottom: 0;
	}

	.hero-form-wrapper .hero-form-card {
		width: 100%;
		max-width: 500px;
	}

	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.adv-layout {
		flex-direction: column;
		gap: 24px;
		min-height: auto;
	}

	.adv-dropdown-wrap {
		display: block;
		margin-bottom: 16px;
	}

	.adv-menu {
		display: none;
	}

	.adv-display {
		padding: 0;
		min-height: 320px;
	}

	.adv-display-inner {
		min-height: 320px;
	}

	.adv-display-num {
		font-size: 3.5rem;
		bottom: 16px;
		right: 16px;
	}

	.adv-display-text {
		bottom: 16px;
		left: 20px;
		right: 90px;
		font-size: 0.85rem;
	}

	/* About — 1024 */
	.about-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about-visual {
		order: -1;
	}

	.about-content .section-title {
		text-align: center !important;
	}

	/* Team — 1024 */
	.works-layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}

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

	.works-section .section-title {
		text-align: center;
	}

	/* Partners — 1024 */
	.partners-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.contacts-grid {
		grid-template-columns: 1fr;
	}

	.contact-map {
		min-height: 300px;
	}

	.contact-map iframe {
		min-height: 300px;
	}

	.calc-layout {
		max-width: 100%;
	}

	.calculator-section {
		margin-top: 50px;
		padding-bottom: 80px;
	}

	.calc-card {
		overflow: hidden;
	}

	.calc-circle-showcase {
		width: 400px;
		height: 400px;
		right: -100px;
	}

	.calc-circle-img {
		width: 380px;
		height: 380px;
		right: -40px;
		transform: translateY(-45%);
	}

	.calc-circle-img.switching-out {
		transform: translateY(-45%) translateX(-40px) scale(0.9);
	}

	.calc-circle-img.switching-in {
		transform: translateY(-45%) translateX(60px) scale(0.9);
	}

	.hero {
		min-height: auto;
	}
}

@media (max-width: 768px) {
	.nav {
		display: none;
	}

	.header-phone {
		display: none;
	}

	.burger {
		display: flex;
	}

	.header {
		padding: 0 12px;
	}

	.header-right .lang-switch {
		display: none;
	}

	.logo {
		font-size: 1.2rem;
	}



	.hero-content {
		padding: 100px 24px 40px;
	}

	.hero-descriptor {
		font-size: 2rem;
	}

	.hero-form-card {
		padding: 24px 20px;
	}

	.hero-form-title {
		font-size: 1.05rem;
		margin-bottom: 16px;
	}

	.hero-form-card .form-group {
		margin-bottom: 10px;
	}

	.hero-form-card .form-group label {
		font-size: 0.8rem;
		margin-bottom: 4px;
	}

	.hero-form-card .form-input {
		padding: 10px 14px;
		font-size: 0.9rem;
	}

	.hero-form-card .btn {
		padding: 12px;
		font-size: 0.9rem;
		margin-top: 4px;
	}

	.hero-cta-row {
		flex-direction: column;
		align-items: stretch;
	}

	.hero-cta-row .btn {
		width: 100%;
	}

	/* Calculator mobile */
	.calculator-section {
		margin-top: 50px;
		padding-bottom: 40px;
	}

	.calc-card {
		padding: 24px 18px;
		padding-bottom: 24px;
		overflow: hidden;
	}

	.calc-layout {
		min-height: auto;
	}

	.calc-left {
		position: relative;
		z-index: 5;
	}

	.calc-note {
		position: relative;
		z-index: 5;
	}

	.calc-type-selector {
		flex-direction: column;
	}

	.calc-type-btn {
		white-space: normal;
	}

	.calc-bottom {
		flex-direction: column;
		position: relative;
		z-index: 5;
	}

	.calc-bottom .form-group {
		width: 100%;
	}

	.calc-bottom .form-input {
		background: var(--white);
		border: 2px solid var(--gray-200);
	}

	.calc-bottom .btn {
		width: 100%;
		padding: 14px 24px;
		font-size: 1rem;
		justify-content: center;
		opacity: 1;
		position: relative;
		z-index: 5;
	}

	.power-options {
		gap: 6px;
	}

	.power-option {
		padding: 6px 12px;
		font-size: 0.78rem;
	}

	.mount-options {
		flex-direction: row;
	}

	.mount-option {
		padding: 8px 8px;
		font-size: 0.78rem;
	}

	/* Circle and image — bottom, centered, semi-transparent background */
	.calc-circle-showcase {
		width: 500px;
		height: 500px;
		right: 50%;
		top: auto;
		bottom: -180px;
		transform: translateX(50%);
		opacity: 0.2;
	}

	.calc-circle-img {
		width: 420px;
		height: 420px;
		right: 50%;
		top: auto;
		bottom: -100px;
		transform: translateX(50%);
		opacity: 0.25;
	}

	.calc-circle-img.switching-out {
		opacity: 0;
		transform: translateX(50%) translateY(20px) scale(0.9);
	}

	.calc-circle-img.switching-in {
		opacity: 0;
		transform: translateX(50%) translateY(-20px) scale(0.9);
		transition: none;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	/* About — 768 */
	.about-section {
		padding: 60px 0;
	}

	.about-stats {
		gap: 20px;
		flex-wrap: wrap;
	}

	.about-stat-num {
		font-size: 1.8rem;
	}

	.about-accent-card {
		position: relative;
		bottom: auto;
		left: auto;
		margin-top: 16px;
		display: flex;
		align-items: center;
		gap: 16px;
	}

	.about-accent-num {
		font-size: 1.6rem;
	}

	.about-accent-text {
		max-width: none;
	}

	/* Team — 768 */
	.works-section {
		padding: 60px 0 80px;
	}

	/* Partners — 768 */
	.partners-section {
		padding: 60px 0;
	}

	.partners-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

	.partners-subtitle {
		margin-bottom: 32px;
	}

	.review-card {
		padding: 28px 20px;
	}

	.promo-badge {
		left: 12px;
		right: 12px;
		bottom: 12px;
		max-width: none;
	}

	.contacts-grid {
		gap: 24px;
	}

	.messenger-buttons {
		flex-wrap: wrap;
	}

	.messenger-btn span {
		display: none;
	}

	.messenger-btn {
		padding: 12px;
		border-radius: 50%;
	}

	.footer-inner {
		flex-direction: column;
		text-align: center;
	}

	.section-title {
		font-size: 1.6rem;
		margin-bottom: 36px;
	}
}

@media (max-width: 480px) {
	.hero-features {
		gap: 10px;
	}

	.hero-feature {
		padding: 8px 12px;
		font-size: 0.9rem;
	}

	.hero-form-card {
		padding: 24px 20px;
	}

	.calculator-section {
		margin-top: 50px;
	}

	.calc-card {
		padding: 20px 14px;
		padding-bottom: 20px;
	}

	.calc-circle-showcase {
		width: 420px;
		height: 420px;
		bottom: -160px;
	}

	.calc-circle-img {
		width: 350px;
		height: 350px;
		bottom: -80px;
	}

	.calc-card .section-title {
		font-size: 1.2rem;
	}

	/* About — 480 */
	.about-section {
		padding: 48px 0;
	}

	.about-lead {
		font-size: 1rem;
	}

	.about-stats {
		gap: 16px;
	}

	.about-stat-num {
		font-size: 1.5rem;
	}

	/* Team — 480 */
	.works-thumb {
		width: 70px;
		height: 50px;
	}

	/* Partners — 480 */
	.partners-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.partner-card {
		padding: 20px 12px;
	}

	.partner-logo-placeholder span {
		font-size: 1.1rem;
	}
}

/* ===== THANKS PAGE ===== */
body.thanks-page {
	background: var(--dark);
}

.thanks-main {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 120px 24px 60px;
	min-height: calc(100vh - 80px);
	position: relative;
	overflow: hidden;
}

.thanks-main::before {
	content: '';
	position: absolute;
	top: -200px;
	right: -200px;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 171, 0, 0.08), transparent 70%);
	pointer-events: none;
}

.thanks-main::after {
	content: '';
	position: absolute;
	bottom: -150px;
	left: -150px;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.06), transparent 70%);
	pointer-events: none;
}

.thanks-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-lg);
	padding: 60px 50px;
	max-width: 620px;
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 1;
	backdrop-filter: blur(8px);
}

.thanks-icon {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary), #EF6C00);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 28px;
	animation: thanksIconPulse 2s ease-in-out infinite;
}

@keyframes thanksIconPulse {

	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(255, 171, 0, 0.3);
	}

	50% {
		box-shadow: 0 0 0 20px rgba(255, 171, 0, 0);
	}
}

.thanks-icon svg {
	width: 44px;
	height: 44px;
	color: var(--white);
}

.thanks-title {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 2rem;
	color: var(--white);
	margin-bottom: 16px;
	line-height: 1.2;
}

.thanks-title span {
	color: var(--primary);
}

.thanks-text {
	font-family: var(--font-body);
	color: var(--gray-400);
	font-size: 1.05rem;
	line-height: 1.7;
	margin-bottom: 36px;
}

.thanks-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
	margin: 32px 0;
}

.thanks-contact-label {
	font-family: var(--font-heading);
	font-weight: 600;
	color: var(--gray-400);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.thanks-messengers {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 36px;
}

.thanks-messenger {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	border-radius: 50px;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--white);
	transition: var(--transition);
	text-decoration: none;
}

.thanks-messenger:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
}

.thanks-messenger svg {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

.thanks-messenger.tg {
	background: #229ED9;
}

.thanks-messenger.tg:hover {
	background: #1a8cc4;
}

.thanks-messenger.wa {
	background: #25D366;
}

.thanks-messenger.wa:hover {
	background: #1eba57;
}

.thanks-messenger.vb {
	background: #7360F2;
}

.thanks-messenger.vb:hover {
	background: #6350d9;
}

.thanks-info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}

.thanks-info-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--gray-400);
	font-size: 0.9rem;
}

.thanks-info-item svg {
	color: var(--primary);
	flex-shrink: 0;
}

.thanks-info-item a {
	color: var(--gray-300);
	transition: var(--transition);
}

.thanks-info-item a:hover {
	color: var(--primary);
}

.thanks-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 36px;
	padding: 14px 32px;
	background: var(--primary);
	color: var(--dark);
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 0.95rem;
	border-radius: 50px;
	transition: var(--transition);
	text-decoration: none;
}

.thanks-back:hover {
	background: var(--primary-light);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

@media (max-width: 640px) {
	.thanks-card {
		padding: 40px 24px;
	}

	.thanks-title {
		font-size: 1.5rem;
	}

	.thanks-messengers {
		flex-direction: column;
		align-items: center;
	}

	.thanks-messenger {
		width: 100%;
		justify-content: center;
	}
}

/* ===== CF7 ===== */
.wpcf7 {
	margin: 0;
}

.wpcf7 form .wpcf7-response-output {
	display: none !important;
}

.wpcf7 .screen-reader-response {
	display: none !important;
}

.hidden-fields-container {
	display: none !important;
}

.wpcf7 .wpcf7-spinner {
	display: none;
}

/* Submit button — прибираємо обводку */
.wpcf7 input[type="submit"] {
	outline: none;
	border: none;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	width: 100%;
	padding: 14px 24px;
}

.calc-bottom input[type="submit"] {
	width: auto;
	padding: 10px 22px;
	font-size: 0.85rem;
}

.wpcf7 input[type="submit"]:focus,
.wpcf7 input[type="submit"]:focus-visible {
	outline: none;
	box-shadow: none;
}

/* Невалідні поля */
.wpcf7 input.wpcf7-not-valid,
.wpcf7 select.wpcf7-not-valid,
.wpcf7 textarea.wpcf7-not-valid {
	border-color: #ef4444 !important;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12) !important;
}

/* Підказки — спливаючий тултіп */
.form-group {
	position: relative;
}

.wpcf7-form-control-wrap {
	position: relative;
	display: block;
}

.wpcf7-not-valid-tip {
	position: absolute;
	bottom: calc(100% + 8px);
	left: 0;
	background: #1e293b;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 500;
	font-family: var(--font-body);
	padding: 6px 12px;
	border-radius: 6px;
	white-space: nowrap;
	pointer-events: none;
	z-index: 10;
	animation: tipFadeIn 0.2s ease;
}

.wpcf7-not-valid-tip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 16px;
	border: 5px solid transparent;
	border-top-color: #1e293b;
}

@keyframes tipFadeIn {
	from {
		opacity: 0;
		transform: translateY(4px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}