body {
	margin: 0;
	background-color: #000;
	font-family: 'Segoe UI', sans-serif;
}
html, body {
	overflow-x: hidden;
}

/* Header */
.main-header {
	background: #000;
	text-align: center;
	padding: 30px 0 20px;
	position: relative;
}

/* Logo */
.logo {
	color: #fff;
	font-size: 34px;
	font-weight: 700;
	letter-spacing: 3px;
}

.logo span {
	display: block;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 4px;
	margin-top: 5px;
}

/* Divider */
.header-line {
	border-top: 1px solid rgba(255,255,255,0.3);
	margin: 25px auto 0;
	width: 90%;
}

/* Desktop menu */
.main-nav {
	padding: 25px 0;
}

.main-nav .nav-link {
	color: #ccc;
	font-size: 20px;
	font-weight: 300;
	margin: 0 25px;
	transition: 0.3s;
}

.main-nav .nav-link:hover {
	color: #fff;
}

/* Burger button */
.burger-btn {
	position: absolute;
	right: 20px;
	top: 35px;
	border: none;
}

/* Offcanvas */
.offcanvas {
	background-color: #111;
}

.offcanvas .nav-link {
	color: #ddd;
	font-size: 22px;
	padding: 15px 0;
}

.offcanvas .nav-link:hover {
	color: #fff;
}

/* Hide desktop menu on mobile */
@media (max-width: 991px) {
	.main-nav {
		display: none;
	}
}

/* Hide burger on desktop */
@media (min-width: 992px) {
	.burger-btn {
		display: none;
	}
}

/* HERO IMAGE — стартовое состояние */
.hero-image img {
	opacity: 0;
	transform: translateY(30px) scale(0.98);
	transition: all 1.2s ease;
}
/* Когда страница загружена */
body.loaded .hero-image img {
	opacity: 1;
	transform: translateY(0) scale(1);
}

/* Language switch */
.lang-item {
	font-size: 30px;
	text-decoration: none;
	transition: 0.3s ease;
}

.lang-item:hover {
	transform: scale(1.15);
	filter: brightness(1.2);
}

.hero-section {
	background: #000;
	padding: 50px 0;
}

.hero-wrapper {
	position: relative;
}

.hero-image {
	text-align: right;
}

.hero-image img {
	max-width: 100%;
	height: auto;
}

/* Текст поверх картинки */
.hero-content {
	position: absolute;
	top: 2%;
	left: 0;
	max-width: 500px;
	z-index: 2;
}

/* MOBILE */
@media (max-width: 991px) {

	.hero-content {
		position: static;
		text-align: center;
		margin-bottom: 40px;
	}

	.hero-image {
		text-align: center;
	}
}

/* ===== CARD ===== */
.feature-card {
	background: linear-gradient(145deg, #0f0f0f, #070707);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 20px;
	padding: 20px 25px;
	text-align: center;
	color: #fff;
	height: 420px;
	border-radius: 20px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	align-items: flex-end;
	transition: 0.5s ease;
	
}

/* мягкая тень */
.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.7);
	border: 1px solid rgba(120,150,255,0.25);
}

/* картинка */
.feature-image img {
	max-width: 180px;
	margin-bottom: 25px;
	transition: 0.4s ease;
}

.feature-card:hover img {
	transform: scale(1.05);
}

/* текст */
.feature-content h5 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 10px;
}

.feature-content p {
	font-size: 15px;
	color: #aaa;
	margin: 0;
}

.white {color: #FFF}

.metrics-section {
	background: #000;
	color: #fff;
	padding: 50px 0;
}

.section-title {
	font-weight: 500;
	letter-spacing: 2px;
}

.metric-card {
	background: #0c0c0c;
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 16px;
	padding: 50px 30px;
	height: 100%;
	transition: 0.3s ease;
}

.metric-card:hover {
	border-color: rgba(0,120,255,0.5);
	box-shadow: 0 0 30px rgba(0,120,255,0.15);
}

.metric-value {
	font-size: 64px;
	font-weight: 600;
	letter-spacing: 3px;
	color: #4da6ff;
	line-height: 1;
}

.metric-value.static {
	font-size: 56px;
}

.metric-unit {
	font-size: 16px;
	color: #aaa;
	margin-bottom: 15px;
	letter-spacing: 2px;
}

.metric-card h5 {
	margin-top: 10px;
	font-weight: 500;
}

.metric-card p {
	font-size: 14px;
	color: #aaa;
	margin: 0;
}

.zoom-section {
	position: relative;
	height: 115vh;
	overflow: hidden;
	background: #000;
}

/* ===== ФОН ===== */
.zoom-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.zoom-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zoom-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom,
			rgba(0,0,0,0.95) 0%,
			rgba(0,0,0,0.3) 40%,
			rgba(0,0,0,0.95) 100%);
}

/* ===== WRAPPER ===== */
.zoom-wrapper {
	position: sticky;
	top: 0;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	padding: 80px 0 60px;
	z-index: 2;
	text-align: center;
	color: #fff;
}

/* ===== TOP SLOGAN ===== */
.zoom-top {
	opacity: 0;
	transform: translateY(-40px);
	transition: 0.4s ease;
}

.zoom-top h1 {
	font-size: 48px;
	letter-spacing: 4px;
	font-weight: 600;
}

.zoom-top p {
	color: #bbb;
	letter-spacing: 2px;
}

/* ===== PRODUCT ===== */
.zoom-image {
	width: 100%;
	max-width: 1200px;
	transition: transform 0.1s linear;
}

/* ===== BOTTOM METRICS ===== */
.zoom-bottom {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 90px;
	width: 100%;
	opacity: 0;
	transform: translateY(40px);
	transition: 0.4s ease;
}

.mini-spec {
	width: 280px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center; /* ВАЖНО — центрирование */
}

/* ===== ИКОНКИ КРУПНЕЕ ===== */
/* ===== SUPER LARGE ICONS ===== */
.mini-icon {
	font-size: 180px;   /* было 56px */
	color: #4da6ff;
	margin-bottom: 24px;
	line-height: 1;
}

/* ===== ЦИФРЫ ===== */
.mini-spec strong {
	font-size: 56px;
	font-weight: 700;
	letter-spacing: 3px;
	line-height: 1.1;
	margin-bottom: 12px;
}

/* ===== ПОДПИСЬ ===== */
.mini-spec span {
	font-size: 16px;
	color: #bbb;
	letter-spacing: 1.5px;
}

.spec-icon {
	font-size: 80px;
	line-height: 1;
	margin-bottom: 25px;
}

.feature-card {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s ease;
}

.feature-card.active {
	opacity: 1;
	transform: translateY(0);
}

.feature-card.active {
	box-shadow: 0 0 40px rgba(0, 140, 255, 0.3);
}

.feature-card {
	transition: all 0.8s ease, box-shadow 1.2s ease;
}

/* ===== INITIAL STATE ===== */
.metric-card {
	background: #0c0c0c;
	border: 1px solid rgba(255,255,255,0.05);
	border-radius: 16px;
	padding: 50px 30px;
	height: 100%;

	opacity: 0;
	transform: translateY(40px);
	filter: blur(8px);

	transition: all 0.8s ease;
}

/* ===== ACTIVE STATE ===== */
.metric-card.active {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);

	box-shadow:
		0 0 25px rgba(0, 140, 255, 0.2),
		0 0 60px rgba(0, 140, 255, 0.1);
}

.metric-card:nth-child(1) { transition-delay: 0.1s; }
.metric-card:nth-child(2) { transition-delay: 0.3s; }
.metric-card:nth-child(3) { transition-delay: 0.5s; }


@media (max-width: 768px) {

	.zoom-bottom {
		flex-direction: column;
		gap: 50px;
		align-items: center;
		text-align: center;
	}

	.mini-spec {
		align-items: center;
		text-align: center;
	}

	.mini-icon {
		font-size: 48px;
	}

	.mini-spec strong {
		font-size: 42px;
	}
}

@media (max-width: 768px) {
	#services .col-md-4 {
		margin-bottom: 30px;
	}
	
	.spec-icon {
		font-size: 50px;
		line-height: 1;
		margin-bottom: 25px;
	}
	.logo img {
		height: 55px;   /* можно 28px–36px подобрать */
		width: auto;
	}
}
@media (max-width: 768px) {

	.zoom-section {
		height: 130vh;
	}

	.zoom-wrapper {
		position: sticky;
		top: 0;
		height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.zoom-image {
		max-height: 70dvh;
		width: auto;
		transform-origin: center bottom;
		will-change: transform; /* убирает микро-рывки */
	}
	
	.hero-image img {
		transform: scale(1.15);  /* увеличиваем */
		transform-origin: center;
	}
	
	.hero-section {
		background: #000;
		padding: 20px 0;
	}
}




.about-hero {
	background: radial-gradient(circle at center, #111 0%, #000 70%);
	padding: 120px 0;
}

.about-card {
	background: #0c0c0c;
	border: 1px solid rgba(255,255,255,0.05);
	border-radius: 16px;
	padding: 30px;
}

.team-card {
	background: #0c0c0c;
	border: 1px solid rgba(255,255,255,0.05);
	border-radius: 16px;
	padding: 30px;
}

/* HERO */
.products-hero {
	background: linear-gradient(135deg,#0b1a2b,#02060c);
	padding: 140px 0;
}

.hero-title {
	font-size: 48px;
	font-weight: 600;
	letter-spacing: 2px;
}

.hero-subtitle {
	opacity: 0.8;
	margin-top: 20px;
}

/* PRODUCT IMAGE */
.product-main-image {
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* TECHNOLOGY */
.technology-section {
	background: radial-gradient(circle at center,#0f2742,#050b14);
}

.tech-card {
	padding: 40px;
	background: rgba(255,255,255,0.05);
	border-radius: 20px;
	backdrop-filter: blur(8px);
	transition: 0.4s;
}

.tech-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 0 30px rgba(0,140,255,0.4);
}

/* OEM */
.oem-card {
	padding: 30px;
	border-radius: 15px;
	background: #f8f9fa;
	transition: 0.3s;
}

.oem-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* CTA */
.products-cta {
	padding: 120px 0;
	background: linear-gradient(135deg,#0a1f35,#000);
}

/* ===== DARK HISTORY ===== */

.history-dark {
	background: #000;
	position: relative;
}

.history-dark::before {
	content: "";
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(0,140,255,0.2) 0%, transparent 70%);
	top: 10%;
	left: 50%;
	transform: translateX(-50%);
	filter: blur(120px);
	z-index: 0;
}

.year-card {
	position: relative;
	z-index: 2;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(0,140,255,0.15);
	border-radius: 20px;
	padding: 50px;
	margin-bottom: 50px;
	color: white;
	transition: 0.5s ease;
	backdrop-filter: blur(8px);
}



.year-card:hover {
	transform: translateY(-10px);
	box-shadow:
		0 0 25px rgba(0,140,255,0.3),
		0 0 60px rgba(0,140,255,0.15);
}

.year-number {
	font-size: 60px;
	font-weight: 700;
	color: #0d6efd;
	margin-bottom: 20px;
	text-shadow: 0 0 20px rgba(0,140,255,0.5);
}

/* ANIMATION */

.fade-glow {
	opacity: 0;
	transform: translateY(40px);
	filter: blur(8px);
	transition: all 0.8s ease;
}

.fade-glow.active {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

/* HQ Section */

.hq-section {
	background: #000;
}

.map-wrapper iframe {
	width: 100%;
	height: 350px;
	border-radius: 20px;
	filter: grayscale(1) contrast(1.2);
}

/* GLOBAL */

.global-section {
	background: radial-gradient(circle at center,#0f2742,#000);
}

.info-card {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	padding: 30px;
	border-radius: 20px;
	color: white;
	transition: 0.4s;
}

.info-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 0 30px rgba(0,140,255,0.3);
}

.highlight-card {
	border: 1px solid rgba(0,140,255,0.4);
	box-shadow: 0 0 40px rgba(0,140,255,0.2);
}

/* CONTACT PAGE */

.contacts-hero {
	background: linear-gradient(135deg,#001d3d,#000);
	padding: 120px 0;
}

.contact-section {
	background: #000;
}

.contact-card {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(0,140,255,0.2);
	padding: 50px;
	border-radius: 20px;
	backdrop-filter: blur(8px);
	color: white;
}

.form-control,
.form-select {
	background: #111;
	border: 1px solid rgba(255,255,255,0.1);
	color: white;
}

.form-control:focus,
.form-select:focus {
	border-color: #0d6efd;
	box-shadow: 0 0 15px rgba(13,110,253,0.3);
	background: #111;
	color: white;
}