@charset "UTF-8";

/* =========================================================
   EQUIPNXT — BASE DESIGN SYSTEM
   ========================================================= */

:root {
	--bg: #f5f7fa;
	--surface: #ffffff;
	--surface-soft: #eef2f6;

	--navy-950: #07111f;
	--navy-900: #0a1728;
	--navy-800: #10233a;
	--navy-700: #173452;

	--text: #152232;
	--text-soft: #667487;
	--text-light: #c7d1dd;
	--white: #ffffff;

	--blue: #168cff;
	--blue-hover: #39a2ff;
	--cyan: #44c7e8;

	--orange: #c77b38;

	--border: #dce3ea;
	--border-dark: rgba(255, 255, 255, 0.10);

	--shadow-sm: 0 8px 24px rgba(8, 22, 40, 0.07);
	--shadow-md: 0 18px 50px rgba(8, 22, 40, 0.12);

	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 22px;

	--container: 1240px;
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--text);
	font-family:
		Inter,
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		Roboto,
		Arial,
		sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--blue);
	text-decoration: none;
	transition:
		color 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

a:hover {
	color: var(--blue-hover);
}

button,
input,
textarea,
select {
	font: inherit;
}


/* =========================================================
   COMMON CONTAINER
   ========================================================= */

.site-container {
	width: min(calc(100% - 40px), var(--container));
	margin-left: auto;
	margin-right: auto;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.skip-link {
	position: fixed;
	left: 16px;
	top: -100px;
	z-index: 9999;

	padding: 10px 16px;

	background: var(--white);
	color: var(--navy-950);

	border-radius: 0 0 8px 8px;
	box-shadow: var(--shadow-sm);
}

.skip-link:focus {
	top: 0;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;

	background:
		linear-gradient(
			135deg,
			rgba(7, 17, 31, 0.98),
			rgba(10, 29, 50, 0.98)
		);

	border-bottom: 1px solid var(--border-dark);
	box-shadow: 0 8px 30px rgba(3, 12, 24, 0.18);

	backdrop-filter: blur(14px);
}

.header-inner {
	min-height: 78px;

	display: flex;
	align-items: center;
	gap: 32px;
}


/* =========================================================
   LOGO
   ========================================================= */

.site-logo {
	display: flex;
	flex-direction: column;
	align-items: flex-start;

	min-width: 180px;

	color: var(--white);
	line-height: 1;
}

.site-logo:hover {
	color: var(--white);
}

.site-logo-name {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.site-logo-name::after {
	content: "";
	display: inline-block;

	width: 7px;
	height: 7px;

	margin-left: 5px;
	margin-bottom: 3px;

	background: var(--blue);

	border-radius: 50%;
	box-shadow: 0 0 14px rgba(22, 140, 255, 0.8);
}

.site-logo-tagline {
	margin-top: 7px;

	color: #8293a7;

	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.04em;
	white-space: nowrap;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.main-nav {
	display: flex;
	align-items: center;
	justify-content: center;

	gap: 26px;

	margin-left: auto;
}

.main-nav a {
	position: relative;

	padding: 29px 0 27px;

	color: #c7d2df;

	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.main-nav a:hover {
	color: var(--white);
}

.main-nav a::after {
	content: "";

	position: absolute;
	left: 0;
	right: 0;
	bottom: 19px;

	height: 2px;

	background: var(--blue);

	transform: scaleX(0);
	transform-origin: center;

	transition: transform 0.2s ease;

	border-radius: 2px;
}

.main-nav a:hover::after {
	transform: scaleX(1);
}


/* =========================================================
   HEADER CTA
   ========================================================= */

.header-rfq {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 44px;
	padding: 0 20px;

	color: var(--white);
	background:
		linear-gradient(
			135deg,
			#087ee8,
			#159dff
		);

	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 9px;

	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;

	box-shadow:
		0 8px 25px rgba(0, 126, 230, 0.22);
}

.header-rfq:hover {
	color: var(--white);
	background:
		linear-gradient(
			135deg,
			#1490ff,
			#35afff
		);

	transform: translateY(-1px);
}


/* =========================================================
   MAIN
   ========================================================= */

.site-main {
	min-height: 60vh;

	background:
		radial-gradient(
			circle at 80% 5%,
			rgba(22, 140, 255, 0.05),
			transparent 32%
		),
		var(--bg);
}


/*
   Временная защита для старого содержимого главной страницы.
   Позже оно будет заменено полноценной главной EQUIPNXT.
*/

.site-main > * {
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}


/* =========================================================
   BASIC CONTENT
   ========================================================= */

.site-main h1,
.site-main h2,
.site-main h3 {
	color: var(--navy-950);
	line-height: 1.2;
}

.site-main h1 {
	font-size: clamp(32px, 5vw, 56px);
}

.site-main h2 {
	font-size: clamp(26px, 4vw, 38px);
}

.site-main p {
	color: var(--text-soft);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
	background:
		linear-gradient(
			145deg,
			var(--navy-950),
			#08182b
		);

	color: var(--text-light);

	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-main {
	display: grid;

	grid-template-columns:
		minmax(260px, 1.6fr)
		repeat(3, minmax(150px, 1fr));

	gap: 56px;

	padding-top: 64px;
	padding-bottom: 52px;
}

.footer-brand {
	max-width: 350px;
}

.footer-logo {
	margin-bottom: 18px;

	color: var(--white);

	font-size: 25px;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.footer-brand p {
	margin: 0;

	color: #8494a7;

	font-size: 14px;
	line-height: 1.7;
}

.footer-column {
	display: flex;
	flex-direction: column;

	gap: 11px;
}

.footer-column strong {
	margin-bottom: 7px;

	color: var(--white);

	font-size: 13px;
	font-weight: 700;

	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.footer-column a {
	color: #92a2b5;

	font-size: 14px;
}

.footer-column a:hover {
	color: var(--white);
}

.footer-bottom {
	min-height: 72px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 30px;

	border-top: 1px solid rgba(255, 255, 255, 0.08);

	color: #67798e;

	font-size: 12px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

	.header-inner {
		gap: 20px;
	}

	.main-nav {
		gap: 17px;
	}

	.main-nav a {
		font-size: 13px;
	}

	.site-logo-tagline {
		display: none;
	}

	.site-logo {
		min-width: auto;
	}

}


@media (max-width: 900px) {

	.header-inner {
		min-height: auto;

		flex-wrap: wrap;

		padding-top: 16px;
		padding-bottom: 16px;
	}

	.main-nav {
		order: 3;

		width: 100%;

		justify-content: flex-start;

		overflow-x: auto;

		padding-bottom: 3px;
	}

	.main-nav a {
		padding: 5px 0;
	}

	.main-nav a::after {
		bottom: 0;
	}

	.header-rfq {
		margin-left: auto;
	}

	.footer-main {
		grid-template-columns: 1fr 1fr;
	}

}


@media (max-width: 620px) {

	.site-container {
		width: min(calc(100% - 28px), var(--container));
	}

	.site-logo-name {
		font-size: 20px;
	}

	.header-rfq {
		padding: 0 13px;

		font-size: 12px;
	}

	.main-nav {
		gap: 20px;
	}

	.footer-main {
		grid-template-columns: 1fr;

		gap: 34px;

		padding-top: 46px;
		padding-bottom: 38px;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;

		gap: 4px;

		padding-top: 20px;
		padding-bottom: 20px;
	}

}
/* =========================================================
   EQUIPNXT HERO BLOCK
   ========================================================= */

.hero-home {
	position: relative;
	overflow: hidden;

	padding: 52px 0 72px;

	background:
		radial-gradient(circle at 78% 18%, rgba(22, 140, 255, 0.10), transparent 24%),
		radial-gradient(circle at 88% 38%, rgba(68, 199, 232, 0.08), transparent 20%),
		linear-gradient(180deg, #f6f8fb 0%, #eef3f8 100%);
}

.hero-home::before {
	content: "";

	position: absolute;
	inset: 0;

	background:
		linear-gradient(135deg, rgba(255,255,255,0.32), transparent 35%),
		linear-gradient(90deg, rgba(8, 20, 36, 0.02) 1px, transparent 1px),
		linear-gradient(rgba(8, 20, 36, 0.02) 1px, transparent 1px);

	background-size:
		auto,
		36px 36px,
		36px 36px;

	pointer-events: none;
}

.hero-home__inner {
	position: relative;
	z-index: 1;

	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
	gap: 44px;
	align-items: center;
}

.hero-home__content {
	max-width: 820px;
}

.hero-home__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;

	margin-bottom: 22px;

	color: #0b74d7;

	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero-home__eyebrow::before {
	content: "";
	display: block;

	width: 26px;
	height: 2px;

	background: linear-gradient(90deg, #168cff, #44c7e8);
	border-radius: 2px;
}

.hero-home__title {
	margin: 0 0 24px;

	color: #08172a;

	font-size: clamp(44px, 6vw, 76px);
	line-height: 0.98;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.hero-home__text {
	max-width: 760px;
	margin: 0 0 34px;

	color: #5e7086;

	font-size: 21px;
	line-height: 1.65;
}

.hero-home__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;

	margin-bottom: 26px;
}

.hero-home__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 54px;
	padding: 0 24px;

	border-radius: 12px;

	font-size: 15px;
	font-weight: 700;

	border: 1px solid transparent;

	box-shadow: 0 10px 30px rgba(12, 28, 52, 0.10);
}

.hero-home__btn--primary {
	color: #ffffff;
	background: linear-gradient(135deg, #0a83ee, #2da8ff);
}

.hero-home__btn--primary:hover {
	color: #ffffff;
	transform: translateY(-1px);
	background: linear-gradient(135deg, #1590ff, #49b4ff);
}

.hero-home__btn--secondary {
	color: #0d2440;
	background: rgba(255,255,255,0.88);
	border-color: #d7e0ea;
}

.hero-home__btn--secondary:hover {
	color: #0d2440;
	background: #ffffff;
	transform: translateY(-1px);
}

.hero-home__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hero-home__tags a {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 38px;
	padding: 0 14px;

	color: #21415f;
	background: rgba(255,255,255,0.78);

	border: 1px solid #dbe4ee;
	border-radius: 999px;

	font-size: 13px;
	font-weight: 600;
}

.hero-home__tags a:hover {
	color: #0d2440;
	background: #ffffff;
	border-color: #bfd0e2;
}

.hero-home__visual {
	position: relative;
	min-height: 540px;
}

.hero-home__visual::before {
	content: "";

	position: absolute;
	inset: 44px 18px 18px 44px;

	background:
		radial-gradient(circle at 30% 72%, rgba(31, 145, 255, 0.36), transparent 26%),
		radial-gradient(circle at 84% 18%, rgba(199, 123, 56, 0.22), transparent 18%),
		linear-gradient(145deg, rgba(7, 17, 31, 1) 0%, rgba(6, 24, 44, 0.98) 58%, rgba(10, 33, 59, 1) 100%);

	border-radius: 34px;

	box-shadow:
		0 36px 90px rgba(6, 18, 34, 0.26),
		inset 0 0 0 1px rgba(255,255,255,0.06);

	transform: rotate(-4deg);
}

.hero-home__visual::after {
	content: "";

	position: absolute;
	left: 44px;
	right: 34px;
	top: 58px;
	bottom: 34px;

	background:
		linear-gradient(135deg, rgba(255,255,255,0.06), transparent 38%),
		linear-gradient(325deg, rgba(255,255,255,0.03), transparent 30%),
		repeating-linear-gradient(
			135deg,
			rgba(255,255,255,0.025) 0 1px,
			transparent 1px 22px
		);

	border-radius: 30px;

	opacity: 0.95;
}

.hero-home__visual-card {
	position: relative;
	z-index: 2;

	height: 100%;

	display: flex;
	flex-direction: column;
	justify-content: flex-end;

	padding: 62px 42px 44px;
}

.hero-home__visual-badge {
	display: inline-flex;
	align-items: center;

	width: fit-content;
	margin-bottom: 24px;
	padding: 10px 14px;

	color: #d9e5f3;
	background: rgba(255,255,255,0.05);

	border: 1px solid rgba(255,255,255,0.09);
	border-radius: 999px;

	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.hero-home__visual-card h2 {
	margin: 0 0 16px;

	color: #ffffff;

	font-size: clamp(38px, 5vw, 72px);
	line-height: 0.98;
	font-weight: 800;
	letter-spacing: -0.04em;

	text-transform: uppercase;

	text-shadow:
		0 4px 30px rgba(22, 140, 255, 0.16);
}

.hero-home__visual-card p {
	max-width: 520px;
	margin: 0 0 24px;

	color: #c5d0dd;

	font-size: 15px;
	line-height: 1.75;
}

.hero-home__visual-list {
	margin: 0;
	padding: 0;

	list-style: none;

	display: grid;
	gap: 12px;
}

.hero-home__visual-list li {
	position: relative;

	padding-left: 24px;

	color: #edf4fc;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
}

.hero-home__visual-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;

	width: 10px;
	height: 10px;

	border-radius: 50%;

	background: linear-gradient(135deg, #1ca0ff, #5dd8ff);
	box-shadow: 0 0 18px rgba(28, 160, 255, 0.7);
}


/* Подчищаем базовые стили внутри hero */
.hero-home h1,
.hero-home h2,
.hero-home p {
	margin-top: 0;
}

.hero-home ul {
	margin-bottom: 0;
}


/* =========================================================
   RESPONSIVE HERO
   ========================================================= */

@media (max-width: 1180px) {
	.hero-home__inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.hero-home__content {
		max-width: none;
	}

	.hero-home__visual {
		min-height: 460px;
	}
}

@media (max-width: 860px) {
	.hero-home {
		padding: 36px 0 52px;
	}

	.hero-home__title {
		font-size: clamp(36px, 8vw, 56px);
	}

	.hero-home__text {
		font-size: 18px;
	}

	.hero-home__visual {
		min-height: 400px;
	}

	.hero-home__visual-card {
		padding: 44px 28px 32px;
	}
}

@media (max-width: 640px) {
	.hero-home__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hero-home__btn {
		width: 100%;
	}

	.hero-home__visual {
		min-height: 340px;
	}

	.hero-home__visual::before {
		inset: 26px 8px 8px 26px;
	}

	.hero-home__visual::after {
		left: 24px;
		right: 18px;
		top: 38px;
		bottom: 20px;
	}

	.hero-home__visual-card h2 {
		font-size: 34px;
	}
}
/* =========================================================
   EQUIPNXT HERO V2 — IMAGE BASED
   ========================================================= */

.hero-home {
	position: relative;
	overflow: hidden;

	padding: 56px 0 84px;

	background:
		radial-gradient(circle at 75% 18%, rgba(22, 140, 255, 0.08), transparent 24%),
		linear-gradient(180deg, #f4f7fb 0%, #eef3f8 100%);
}

.hero-home::before {
	content: "";

	position: absolute;
	inset: 0;

	background:
		linear-gradient(90deg, rgba(14, 28, 47, 0.03) 1px, transparent 1px),
		linear-gradient(rgba(14, 28, 47, 0.03) 1px, transparent 1px);

	background-size: 36px 36px;
	pointer-events: none;
	opacity: 0.55;
}

.hero-home__inner {
	position: relative;
	z-index: 1;

	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
	gap: 54px;
	align-items: center;
}

.hero-home__content {
	max-width: 760px;
	padding: 20px 0;
}

.hero-home__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;

	margin-bottom: 26px;

	color: #127ef0;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hero-home__eyebrow::before {
	content: "";
	display: block;

	width: 28px;
	height: 2px;

	background: linear-gradient(90deg, #168cff, #49c7ff);
	border-radius: 2px;
}

.hero-home__title {
	margin: 0 0 28px;

	color: #08172a;

	font-size: clamp(44px, 5.2vw, 76px);
	line-height: 0.96;
	font-weight: 800;
	letter-spacing: -0.035em;
}

.hero-home__text {
	max-width: 700px;
	margin: 0 0 34px;

	color: #5d7086;
	font-size: 20px;
	line-height: 1.6;
}

.hero-home__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;

	margin-bottom: 26px;
}

.hero-home__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 56px;
	padding: 0 24px;

	border-radius: 12px;
	border: 1px solid transparent;

	font-size: 16px;
	font-weight: 700;

	box-shadow: 0 12px 30px rgba(10, 28, 48, 0.10);
}

.hero-home__btn--primary {
	color: #ffffff;
	background: linear-gradient(135deg, #0a83ee, #30a8ff);
}

.hero-home__btn--primary:hover {
	color: #ffffff;
	background: linear-gradient(135deg, #1690ff, #4bb4ff);
	transform: translateY(-1px);
}

.hero-home__btn--secondary {
	color: #0d2440;
	background: rgba(255,255,255,0.88);
	border-color: #d7e0ea;
}

.hero-home__btn--secondary:hover {
	color: #0d2440;
	background: #ffffff;
	transform: translateY(-1px);
}

.hero-home__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hero-home__tags a {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 38px;
	padding: 0 14px;

	color: #25425f;
	background: rgba(255,255,255,0.82);

	border: 1px solid #d9e3ed;
	border-radius: 999px;

	font-size: 13px;
	font-weight: 600;
}

.hero-home__tags a:hover {
	color: #0d2440;
	background: #ffffff;
	border-color: #c7d6e5;
}

.hero-home__visual {
	position: relative;
	min-height: 620px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-home__visual::before {
	content: "";

	position: absolute;
	inset: 8% 6% 10% 8%;

	background:
		radial-gradient(circle at 50% 50%, rgba(22, 140, 255, 0.17), transparent 45%);

	filter: blur(30px);
	opacity: 0.9;
	z-index: 0;
}

.hero-home__visual-frame {
	position: relative;
	z-index: 1;

	width: 100%;
	aspect-ratio: 960 / 760;
	overflow: hidden;

	border-radius: 34px;
	border: 1px solid rgba(255,255,255,0.10);

	background: #07111f;

	box-shadow:
		0 40px 90px rgba(6, 18, 34, 0.24),
		0 12px 30px rgba(6, 18, 34, 0.10);
}

.hero-home__visual-frame::after {
	content: "";

	position: absolute;
	inset: 0;

	background:
		linear-gradient(135deg, rgba(255,255,255,0.10), transparent 20%),
		linear-gradient(180deg, rgba(255,255,255,0.00), rgba(4, 10, 20, 0.04));

	pointer-events: none;
}

.hero-home__visual-frame img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}


/* HERO overrides for typography inside main */
.hero-home h1,
.hero-home p {
	margin-top: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1280px) {
	.hero-home__inner {
		grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
		gap: 38px;
	}

	.hero-home__visual {
		min-height: 540px;
	}
}

@media (max-width: 1100px) {
	.hero-home__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.hero-home__content {
		max-width: none;
	}

	.hero-home__visual {
		min-height: auto;
	}
}

@media (max-width: 860px) {
	.hero-home {
		padding: 40px 0 56px;
	}

	.hero-home__title {
		font-size: clamp(36px, 8vw, 56px);
	}

	.hero-home__text {
		font-size: 18px;
	}

	.hero-home__visual-frame {
		border-radius: 24px;
	}
}

@media (max-width: 640px) {
	.hero-home__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hero-home__btn {
		width: 100%;
	}

	.hero-home__title {
		font-size: 34px;
		line-height: 1.02;
	}

	.hero-home__text {
		font-size: 17px;
	}

	.hero-home__tags {
		gap: 8px;
	}
}