:root {
	--bg-main: #020617;
	--bg-elevated: #020617;
	--bg-card: rgba(15, 23, 42, 0.9);
	--accent: #22c55e;
	--accent-soft: rgba(34, 197, 94, 0.15);
	--accent-strong: rgba(34, 197, 94, 0.45);
	--text-main: #e5e7eb;
	--text-muted: #9ca3af;
	--border-soft: rgba(148, 163, 184, 0.3);
	--shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.85);
	--radius-lg: 24px;
	--radius-md: 18px;
	--radius-sm: 999px;
	--transition-fast: 0.18s ease-out;
	--container-width: 1120px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans Armenian", sans-serif;
	background:
			radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.20), transparent 55%),
			radial-gradient(circle at 100% 100%, rgba(34, 197, 94, 0.15), transparent 55%),
			linear-gradient(135deg, #020617 0%, #020617 45%, #020617 100%);
	color: var(--text-main);
	min-height: 100vh;
}

.noise {
	position: fixed;
	inset: 0;
	pointer-events: none;
	opacity: 0.06;
	mix-blend-mode: soft-light;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='noStitch' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
	z-index: -1;
}

.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 16px;
}

header {
	position: sticky;
	top: 0;
	z-index: 40;
	backdrop-filter: blur(14px);
	background: linear-gradient(to bottom, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.82), transparent);
	border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 8px;
}

.logo-mark {
	width: 32px;
	height: 32px;
	border-radius: 12px;
	background: radial-gradient(circle at 30% 20%, #bbf7d0, #22c55e);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0b1120;
	font-weight: 800;
	font-size: 16px;
	box-shadow: 0 12px 24px rgba(22, 163, 74, 0.6);
}

.logo-text {
	line-height: 1.1;
}

.logo-main {
	font-size: 18px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 700;
}

.logo-main span {
	background: linear-gradient(135deg, #e5e7eb, #a7f3d0);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.logo-sub {
	font-size: 11px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: .14em;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 18px;
}

.nav-links a {
	font-size: 14px;
	color: var(--text-muted);
	text-decoration: none;
	position: relative;
	padding-bottom: 2px;
	transition: color var(--transition-fast);
}

.nav-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	border-radius: 999px;
	background: var(--accent);
	transition: width var(--transition-fast);
}

.nav-links a:hover {
	color: var(--text-main);
}

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

.nav-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid rgba(148, 163, 184, 0.4);
	background: rgba(15, 23, 42, 0.92);
	font-size: 13px;
	color: var(--text-main);
	text-decoration: none;
	transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.nav-cta span.icon {
	font-size: 15px;
}

.nav-cta:hover {
	background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.25), rgba(15, 23, 42, 0.95));
	transform: translateY(-1px);
	box-shadow: 0 14px 30px rgba(22, 163, 74, 0.55);
	border-color: rgba(34, 197, 94, 0.7);
}

.burger {
	display: none;
	flex-direction: column;
	gap: 4px;
	width: 24px;
	cursor: pointer;
}

.burger span {
	height: 2px;
	border-radius: 999px;
	background: #e5e7eb;
	transition: var(--transition-fast);
}

/* Скрываем мобильное меню по умолчанию на всех разрешениях */
.nav-mobile {
	display: none;
}

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

	.burger {
		display: flex;
	}

	.nav-mobile {
		display: none;
		flex-direction: column;
		gap: 10px;
		padding: 10px 0 14px;
	}

	.nav-mobile.open {
		display: flex;
	}

	.nav-mobile a {
		font-size: 14px;
		color: var(--text-muted);
		text-decoration: none;
		padding: 6px 0;
	}

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

	.nav-mobile .nav-cta {
		display: inline-flex;
		margin-top: 6px;
		padding: 6px 12px;
        justify-content: center;
	}
}

/* Hero */
.hero {
	position: relative;
	overflow: hidden;
	padding: 64px 0 80px;
}

.hero-inner {
	display: grid;
	gap: 32px;
	align-items: center;
}

@media (min-width: 900px) {
	.hero-inner {
		grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	}
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 12px;
	border-radius: 999px;
	border: 1px solid rgba(148, 163, 184, 0.4);
	font-size: 12px;
	color: var(--text-muted);
	background: rgba(15, 23, 42, 0.9);
	margin-bottom: 14px;
}

.hero-badge-dot {
	width: 9px;
	min-width: 9px;
	height: 9px;
	border-radius: 999px;
	background: var(--accent);
	box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
	animation: ping 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

@keyframes ping {
	0% { transform: scale(1); opacity: 1; }
	70% { transform: scale(2.4); opacity: 0; }
	100% { transform: scale(2.4); opacity: 0; }
}

.hero-title {
	font-size: clamp(32px, 5vw, 46px);
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin-bottom: 12px;
}

.hero-title span.accent {
	background: linear-gradient(135deg, #bbf7d0, #22c55e);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-subtitle {
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 20px;
}

.hero-subtitle strong {
	color: #e5e7eb;
	font-weight: 500;
}

.hero-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 18px;
	margin-bottom: 22px;
	font-size: 13px;
	color: var(--text-muted);
}

.hero-list span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.hero-list span::before {
	content: "●";
	color: var(--accent);
	font-size: 10px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.btn {
	border-radius: 999px;
	padding: 10px 18px;
	font-size: 14px;
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.btn-primary {
	background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.6), rgba(34, 197, 94, 0.3));
	color: #020617;
	font-weight: 600;
	box-shadow: 0 20px 42px rgba(22, 163, 74, 0.6);
}

.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 26px 52px rgba(22, 163, 74, 0.75);
}

.btn-secondary {
	background: rgba(15, 23, 42, 0.9);
	border-color: rgba(148, 163, 184, 0.5);
	color: var(--text-muted);
}

.btn-secondary:hover {
	border-color: rgba(148, 163, 184, 0.9);
	color: #e5e7eb;
	transform: translateY(-1px);
}

.btn-icon {
	font-size: 15px;
}

.hero-meta {
	font-size: 12px;
	color: var(--text-muted);
	margin-top: 6px;
}

.hero-visual {
	position: relative;
	border-radius: var(--radius-lg);
	padding: 20px 20px 18px;
	background:
			radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.18), transparent 55%),
			radial-gradient(circle at 100% 100%, rgba(34, 197, 94, 0.12), transparent 55%),
			rgba(15, 23, 42, 0.96);
	box-shadow: var(--shadow-soft);
	border: 1px solid rgba(148, 163, 184, 0.3);
	overflow: hidden;
}

.hero-visual::before {
	content: "";
	position: absolute;
	width: 260px;
	height: 260px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(34, 197, 94, 0.4), transparent 70%);
	top: -140px;
	right: -120px;
	opacity: 0.4;
	filter: blur(2px);
}

.hero-parallax-bg {
	position: absolute;
	inset: -20%;
	background:
			radial-gradient(circle at 20% 0, rgba(34, 197, 94, 0.2), transparent 55%),
			radial-gradient(circle at 80% 100%, rgba(34, 197, 94, 0.25), transparent 55%),
			linear-gradient(135deg, #020617, #020617);
	opacity: 0.35;
	z-index: -1;
}

@media (min-width: 1000px) {
	.hero-parallax-bg {
		background-attachment: fixed;
	}
}

.hero-map {
	position: relative;
	border-radius: 18px;
	padding: 18px 16px 16px;
	background: rgba(15, 23, 42, 0.96);
	border: 1px solid rgba(148, 163, 184, 0.4);
	overflow: hidden;
}

.hero-map-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 11px;
	color: var(--text-muted);
	margin-bottom: 10px;
}

.hero-map-badge {
	padding: 3px 8px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.9);
	border: 1px solid rgba(148, 163, 184, 0.6);
	letter-spacing: 0.1em;
}

.hero-map-body {
	position: relative;
	height: 190px;
}

.hero-route {
	position: absolute;
	inset: 8px 4px 22px;
	border-radius: 60% 70% 65% 75%;
	border: 1px solid rgba(148, 163, 184, 0.3);
	background:
			radial-gradient(circle at 20% 10%, rgba(34, 197, 94, 0.25), transparent 60%),
			radial-gradient(circle at 70% 80%, rgba(34, 197, 94, 0.25), transparent 60%),
			radial-gradient(circle at 50% 40%, rgba(15, 23, 42, 0.9), #020617);
}

.hero-route-line {
	position: absolute;
	left: 12%;
	right: 12%;
	top: 54%;
	height: 2px;
	border-radius: 999px;
	background-image: linear-gradient(90deg,
			rgba(148, 163, 184, 0.4),
			rgba(148, 163, 184, 0.5),
			rgba(34, 197, 94, 0.8));
	box-shadow: 0 0 18px rgba(34, 197, 94, 0.55);
}

.hero-node {
	position: absolute;
	width: 18px;
	height: 18px;
	border-radius: 999px;
	border: 2px solid #e5e7eb;
	background: #020617;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 9px;
	box-shadow: 0 0 0 1px rgba(15, 23, 42, 1), 0 0 16px rgba(34, 197, 94, 0.5);
}

.hero-node.am {
	left: 22%;
	top: 60%;
}

.hero-node.eu {
	right: 18%;
	top: 46%;
}

.hero-truck {
	position: absolute;
	top: 50%;
	left: 18%;
	width: 52px;
	height: 24px;
	border-radius: 999px;
	background: linear-gradient(135deg, #22c55e, #4ade80);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #020617;
	box-shadow: 0 14px 26px rgba(22, 163, 74, 0.75);
	animation: moveTruck 7s linear infinite;
}

@keyframes moveTruck {
	0% { transform: translateX(0); }
	50% { transform: translateX(180px); }
	100% { transform: translateX(0); }
}

.hero-map-footer {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: space-between;
	font-size: 11px;
	color: var(--text-muted);
}

.pill-small {
	padding: 2px 8px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.9);
	border: 1px solid rgba(148, 163, 184, 0.4);
}

main {
	padding-bottom: 64px;
}

section {
	padding: 40px 0;
}

.section-header {
	margin-bottom: 24px;
	max-width: 640px;
}

.section-kicker {
	font-size: 12px;
	color: var(--accent);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.section-title {
	font-size: 24px;
	letter-spacing: -0.03em;
	margin-bottom: 8px;
}

.section-subtitle {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.8;
}

.grid {
	display: grid;
	gap: 18px;
}

@media (min-width: 768px) {
	.grid-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.grid-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.card {
	border-radius: var(--radius-md);
	background: var(--bg-card);
	border: 1px solid var(--border-soft);
	padding: 16px 16px 14px;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
	position: relative;
	overflow: hidden;
}

.card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.18), transparent 55%);
	opacity: 0;
	transition: opacity var(--transition-fast);
	pointer-events: none;
}

.card:hover::before {
	opacity: 1;
}

.card-icon {
	width: 30px;
	height: 30px;
	border-radius: 12px;
	background: rgba(15, 23, 42, 0.95);
	border: 1px solid rgba(148, 163, 184, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	margin-bottom: 10px;
}

.card-title {
	font-size: 15px;
	margin-bottom: 6px;
}

.card-text {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.7;
}

.bullets {
	font-size: 13px;
	color: var(--text-muted);
	margin-top: 6px;
}

.bullets li {
	margin-left: 16px;
	margin-bottom: 4px;
}

.list-check {
	list-style: none;
	padding: 0;
	margin: 0;
}

.list-check li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 6px;
	font-size: 13px;
	color: var(--text-muted);
}

.list-check li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--accent);
	font-size: 12px;
}

.stack {
	display: grid;
	gap: 16px;
}

@media (min-width: 900px) {
	.stack-horizontal {
		grid-template-columns: 1.1fr 0.9fr;
	}
}

.badge-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.badge {
	font-size: 11px;
	padding: 4px 9px;
	border-radius: 999px;
	border: 1px solid rgba(148, 163, 184, 0.4);
	background: rgba(15, 23, 42, 0.9);
	color: var(--text-muted);
}

.steps {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr; /* по умолчанию – одна колонка (мобилки) */
}

/* планшеты и обычные десктопы – делим на 2 колонки */
@media (min-width: 768px) {
    .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* очень широкий экран – можно 4 колонки, если захочешь */
/* @media (min-width: 1280px) { */
    /* .steps { */
        /* grid-template-columns: repeat(4, minmax(0, 1fr)); */
    /* } */
/* } */

.step {
    border-radius: 18px;
    background: var(--bg-card);
    border: 1px dashed rgba(148, 163, 184, 0.5);
    padding: 16px 14px 14px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
    height: auto;        /* на всякий случай */
    overflow: visible;   /* чтобы точно ничего не резалось */
}

.step-number {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent);
    margin-bottom: 4px;
}

.step-title {
    font-size: 15px;
    margin-bottom: 4px;
    color: #e5e7eb;
}

.step p {
    margin: 0;
}

/* Contact */
.contact-card {
	border-radius: var(--radius-lg);
	background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.16), transparent 55%),
				rgba(15, 23, 42, 0.97);
	border: 1px solid rgba(148, 163, 184, 0.35);
	padding: 18px 18px 18px;
	box-shadow: var(--shadow-soft);
}

.contact-layout {
	display: grid;
	gap: 18px;
}

@media (min-width: 800px) {
	.contact-layout {
		grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	}
}

.contact-meta {
	font-size: 13px;
	color: var(--text-muted);
	margin-top: 8px;
}

.contact-meta strong {
	color: #e5e7eb;
}

form {
	display: grid;
	gap: 10px;
}

.field-group {
	display: grid;
	gap: 6px;
}

.field-label {
	font-size: 12px;
	color: var(--text-muted);
}

.field-input,
.field-textarea {
	border-radius: 12px;
	border: 1px solid rgba(148, 163, 184, 0.5);
	background: rgba(15, 23, 42, 0.96);
	padding: 8px 10px;
	font-size: 13px;
	color: #e5e7eb;
	outline: none;
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.field-input::placeholder,
.field-textarea::placeholder {
	color: rgba(148, 163, 184, 0.7);
}

.field-input:focus,
.field-textarea:focus {
	border-color: rgba(34, 197, 94, 0.8);
	box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.5);
	background: rgba(15, 23, 42, 1);
	transform: translateY(-1px);
}

.field-textarea {
	min-height: 80px;
	resize: vertical;
}

footer {
	border-top: 1px solid rgba(15, 23, 42, 0.9);
	padding: 14px 0 20px;
	font-size: 11px;
	color: var(--text-muted);
}

.footer-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px;
}

.footer-inner a {
	color: var(--text-muted);
	text-decoration: none;
}

.footer-inner a:hover {
	text-decoration: underline;
}

.mono {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
