/* ========================================================================
   ВЕРТИКАЛЬ — Таможенное оформление и ВЭД
   Главный файл стилей лендинга
   ======================================================================== */

/* ------------------------------------------------------------------
   1. CSS-переменные (дизайн-токены)
   ------------------------------------------------------------------ */
:root {
	--green-primary: #16a34a;
	--green-dark: #15803d;
	--green-darker: #14532d;
	--green-deep: #052e16;
	--green-light: #dcfce7;
	--green-soft: #f0fdf4;
	--green-tint: #ecfdf5;

	--accent: #fbbf24;
	--accent-dark: #f59e0b;

	--text-dark: #0f172a;
	--text-body: #334155;
	--text-muted: #64748b;
	--text-light: #94a3b8;

	--bg-white: #ffffff;
	--bg-soft: #f8fafc;
	--bg-muted: #f1f5f9;

	--border: #e2e8f0;
	--border-strong: #cbd5e1;

	--shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
	--shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
	--shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.1);
	--shadow-green: 0 12px 32px rgba(22, 163, 74, 0.25);

	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-xl: 28px;

	--transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

	--container-max: 1240px;
}

/* ------------------------------------------------------------------
   2. Сброс и базовая типографика
   ------------------------------------------------------------------ */
* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

body {
	font-family:
		-apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "Helvetica Neue",
		Arial, sans-serif;
	color: var(--text-body);
	background-color: var(--bg-white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.2;
	margin: 0 0 0.5em;
}

h1 {
	font-size: clamp(2rem, 4.5vw, 3.5rem);
	letter-spacing: -0.02em;
}
h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	letter-spacing: -0.015em;
}
h3 {
	font-size: clamp(1.25rem, 2vw, 1.5rem);
}
h4 {
	font-size: 1.125rem;
}

p {
	margin: 0 0 1rem;
}

a {
	color: var(--green-primary);
	text-decoration: none;
	transition: color var(--transition);
}
a:hover {
	color: var(--green-dark);
}

img,
svg {
	max-width: 100%;
	height: auto;
}

::selection {
	background-color: var(--green-primary);
	color: #ffffff;
}

/* ------------------------------------------------------------------
   3. Layout-хелперы
   ------------------------------------------------------------------ */
.section {
	padding: clamp(60px, 8vw, 100px) 0;
}

.section--alt {
	background-color: var(--bg-soft);
}

.section--dark {
	background: linear-gradient(
		135deg,
		var(--green-darker) 0%,
		var(--green-deep) 100%
	);
	color: #e2e8f0;
}
.section--dark h2,
.section--dark h3,
.section--dark h4 {
	color: #ffffff;
}

.section-head {
	text-align: center;
	max-width: 760px;
	margin: 0 auto clamp(40px, 5vw, 60px);
}

.section-head .eyebrow {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--green-primary);
	margin-bottom: 12px;
	padding: 6px 14px;
	background-color: var(--green-light);
	border-radius: 999px;
}

.section--dark .section-head .eyebrow {
	color: #bbf7d0;
	background-color: rgba(34, 197, 94, 0.18);
}

.section-head .lead {
	font-size: 1.125rem;
	color: var(--text-muted);
	margin: 0;
}
.section--dark .section-head .lead {
	color: #a7f3d0;
}

/* ------------------------------------------------------------------
   4. Кнопки
   ------------------------------------------------------------------ */
.btn-v,
.btn-v-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-weight: 600;
	font-size: 0.95rem;
	padding: 14px 28px;
	border-radius: var(--radius-md);
	border: 2px solid transparent;
	cursor: pointer;
	transition: all var(--transition);
	text-decoration: none;
	white-space: nowrap;
	line-height: 1;
}

.btn-v {
	background-color: var(--green-primary);
	color: #ffffff;
	box-shadow: var(--shadow-green);
}
.btn-v:hover {
	background-color: var(--green-dark);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(22, 163, 74, 0.35);
}
.btn-v:active {
	transform: translateY(0);
}

.btn-v-outline {
	background-color: transparent;
	color: var(--green-primary);
	border-color: var(--green-primary);
}
.btn-v-outline:hover {
	background-color: var(--green-primary);
	color: #ffffff;
}

.btn-v-light {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-weight: 600;
	font-size: 0.95rem;
	padding: 14px 28px;
	border-radius: var(--radius-md);
	background-color: #ffffff;
	color: var(--green-darker);
	border: none;
	cursor: pointer;
	transition: all var(--transition);
}
.btn-v-light:hover {
	background-color: var(--accent);
	color: var(--text-dark);
	transform: translateY(-2px);
}

.btn-v-accent {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-weight: 700;
	font-size: 0.95rem;
	padding: 14px 28px;
	border-radius: var(--radius-md);
	background-color: var(--accent);
	color: var(--text-dark);
	border: none;
	cursor: pointer;
	transition: all var(--transition);
	box-shadow: 0 8px 24px rgba(251, 191, 36, 0.35);
}
.btn-v-accent:hover {
	background-color: var(--accent-dark);
	color: var(--text-dark);
	transform: translateY(-2px);
}

.btn-icon-end::after {
	content: "→";
	font-size: 1.1em;
	transition: transform var(--transition);
}
.btn-icon-end:hover::after {
	transform: translateX(4px);
}

/* ------------------------------------------------------------------
   5. Header / Навигация
   ------------------------------------------------------------------ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: saturate(180%) blur(12px);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--border);
	transition: box-shadow var(--transition);
}
.site-header.is-scrolled {
	box-shadow: var(--shadow-md);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
	gap: 20px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 800;
	font-size: 1.25rem;
	letter-spacing: 0.02em;
}
.brand:hover {
	color: var(--text-dark);
}

.brand-logo {
	width: 42px;
	height: 42px;
	flex-shrink: 0;
	transition: transform var(--transition);
}
.brand:hover .brand-logo {
	transform: translateY(-2px);
}

.brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}
.brand-name {
	font-size: 1.25rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: var(--text-dark);
}
.brand-tag {
	font-size: 0.7rem;
	font-weight: 500;
	color: var(--text-muted);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-top: 4px;
}

.nav-list {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav-list a {
	display: inline-block;
	padding: 8px 14px;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--text-body);
	border-radius: var(--radius-sm);
	transition: all var(--transition);
}
.nav-list a:hover {
	color: var(--green-primary);
	background-color: var(--green-soft);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}
.header-phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: 1rem;
	color: var(--text-dark);
	white-space: nowrap;
}
.header-phone svg {
	flex-shrink: 0;
}
.header-phone:hover {
	color: var(--green-primary);
}

.nav-toggle {
	display: none;
	background: transparent;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	width: 42px;
	height: 42px;
	padding: 0;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--text-dark);
}
.nav-toggle:hover {
	background-color: var(--green-soft);
}
.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background-color: currentColor;
	position: relative;
	transition: all var(--transition);
}
.nav-toggle span::before,
.nav-toggle span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: currentColor;
	transition: all var(--transition);
}
.nav-toggle span::before {
	top: -7px;
}
.nav-toggle span::after {
	top: 7px;
}
.nav-toggle.is-open span {
	background-color: transparent;
}
.nav-toggle.is-open span::before {
	transform: rotate(45deg);
	top: 0;
}
.nav-toggle.is-open span::after {
	transform: rotate(-45deg);
	top: 0;
}

/* ------------------------------------------------------------------
   6. Hero-секция
   ------------------------------------------------------------------ */
.hero {
	position: relative;
	padding: clamp(60px, 8vw, 100px) 0 clamp(60px, 8vw, 100px);
	background:
		radial-gradient(
			ellipse 80% 50% at 50% -20%,
			rgba(22, 163, 74, 0.1),
			transparent 60%
		),
		radial-gradient(
			ellipse 60% 50% at 90% 10%,
			rgba(251, 191, 36, 0.08),
			transparent 50%
		),
		linear-gradient(180deg, var(--green-soft) 0%, #ffffff 100%);
	overflow: hidden;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(40px, 5vw, 60px);
	align-items: center;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: #ffffff;
	color: var(--green-darker);
	border: 1px solid var(--green-light);
	padding: 8px 16px;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 24px;
	box-shadow: var(--shadow-sm);
}
.hero-eyebrow .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--green-primary);
	box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.2);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%,
	100% {
		box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.2);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(22, 163, 74, 0);
	}
}

.hero-title {
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	font-weight: 800;
	line-height: 1.05;
	margin-bottom: 24px;
	color: var(--text-dark);
}
.hero-title .accent {
	background: linear-gradient(
		135deg,
		var(--green-primary),
		var(--green-darker)
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	white-space: nowrap;
}

.hero-lead {
	font-size: 1.15rem;
	color: var(--text-body);
	margin-bottom: 36px;
	max-width: 540px;
}

.hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 40px;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 520px;
}
.hero-stat {
	border-left: 3px solid var(--green-primary);
	padding-left: 16px;
}
.hero-stat-num {
	display: block;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 800;
	color: var(--green-darker);
	line-height: 1;
}
.hero-stat-label {
	display: block;
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-top: 6px;
}

.hero-illustration {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-illustration img {
	width: 100%;
	max-width: 600px;
	filter: drop-shadow(0 24px 48px rgba(15, 23, 42, 0.1));
}
.hero-illustration::before {
	content: "";
	position: absolute;
	inset: -10%;
	background: radial-gradient(circle, rgba(22, 163, 74, 0.08), transparent 70%);
	z-index: -1;
}

/* Floating info card on hero illustration */
.hero-float {
	position: absolute;
	background-color: #ffffff;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 14px 18px;
	box-shadow: var(--shadow-lg);
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 2;
}
.hero-float--top {
	top: 8%;
	left: -4%;
	animation: floatY 4s ease-in-out infinite;
}
.hero-float--bottom {
	bottom: 12%;
	right: -2%;
	animation: floatY 4s ease-in-out infinite reverse;
}
@keyframes floatY {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}
.hero-float-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--green-light);
	color: var(--green-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.hero-float-icon svg {
	width: 22px;
	height: 22px;
}
.hero-float-text strong {
	display: block;
	font-size: 0.95rem;
	color: var(--text-dark);
	line-height: 1.2;
}
.hero-float-text span {
	font-size: 0.8rem;
	color: var(--text-muted);
}

/* ------------------------------------------------------------------
   7. Услуги (Service cards)
   ------------------------------------------------------------------ */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
}

.service-card {
	position: relative;
	background-color: #ffffff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	transition: all var(--transition);
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--green-primary), var(--green-dark));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--transition);
}
.service-card:hover {
	border-color: var(--green-light);
	box-shadow: var(--shadow-lg);
	transform: translateY(-6px);
}
.service-card:hover::before {
	transform: scaleX(1);
}

.service-icon {
	width: 64px;
	height: 64px;
	border-radius: var(--radius-md);
	background: linear-gradient(135deg, var(--green-light), #ffffff);
	color: var(--green-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	border: 1px solid var(--green-light);
}
.service-icon svg {
	width: 36px;
	height: 36px;
}

.service-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 12px;
}

.service-desc {
	color: var(--text-muted);
	font-size: 0.95rem;
	margin-bottom: 20px;
	flex-grow: 1;
}

.service-list {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	font-size: 0.9rem;
}
.service-list li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 8px;
	color: var(--text-body);
}
.service-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--green-primary);
	font-weight: 700;
	font-size: 1rem;
}

.service-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--green-primary);
	margin-top: auto;
}
.service-link::after {
	content: "→";
	font-size: 1.1em;
	transition: transform var(--transition);
}
.service-card:hover .service-link::after {
	transform: translateX(4px);
}

/* ------------------------------------------------------------------
   8. Преимущества (Features / Why us)
   ------------------------------------------------------------------ */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}

.feature {
	padding: 28px 24px;
	background-color: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-lg);
	transition: all var(--transition);
	text-align: left;
}
.feature:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: rgba(187, 247, 208, 0.3);
	transform: translateY(-4px);
}
.feature-icon {
	width: 56px;
	height: 56px;
	border-radius: var(--radius-md);
	background-color: rgba(187, 247, 208, 0.15);
	color: #bbf7d0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}
.feature-icon svg {
	width: 30px;
	height: 30px;
}
.feature-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 10px;
}
.feature-desc {
	font-size: 0.92rem;
	color: #a7f3d0;
	margin: 0;
	line-height: 1.55;
}

/* ------------------------------------------------------------------
   9. Этапы работы (Process steps)
   ------------------------------------------------------------------ */
.process-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	position: relative;
}

.process-step {
	position: relative;
	padding: 32px 24px 28px;
	background-color: #ffffff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	transition: all var(--transition);
}
.process-step:hover {
	border-color: var(--green-light);
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}

.process-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
	color: #ffffff;
	font-weight: 800;
	font-size: 1.1rem;
	margin-bottom: 18px;
	box-shadow: 0 6px 16px rgba(22, 163, 74, 0.25);
}

.process-title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 8px;
}

.process-desc {
	font-size: 0.9rem;
	color: var(--text-muted);
	margin: 0;
	line-height: 1.55;
}

/* ------------------------------------------------------------------
   10. Статистика (Numbers / Counter)
   ------------------------------------------------------------------ */
.stats-section {
	background:
		linear-gradient(
			135deg,
			rgba(21, 128, 61, 0.92) 0%,
			rgba(5, 46, 22, 0.95) 100%
		),
		radial-gradient(
			ellipse at top right,
			rgba(251, 191, 36, 0.15),
			transparent 60%
		);
	position: relative;
	overflow: hidden;
}
.stats-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(
			circle at 20% 30%,
			rgba(255, 255, 255, 0.05) 0,
			transparent 40%
		),
		radial-gradient(
			circle at 80% 70%,
			rgba(255, 255, 255, 0.05) 0,
			transparent 40%
		);
	pointer-events: none;
}
.stats-section .section-head {
	position: relative;
	z-index: 1;
}
.stats-section .section-head h2,
.stats-section .section-head .lead {
	color: #ffffff;
}
.stats-section .section-head .lead {
	color: #bbf7d0;
}
.stats-section .section-head .eyebrow {
	background-color: rgba(187, 247, 208, 0.18);
	color: #bbf7d0;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 24px;
	position: relative;
	z-index: 1;
}

.stat-card {
	text-align: center;
	padding: 28px 16px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-card:last-child {
	border-right: none;
}
.stat-num {
	display: block;
	font-size: clamp(2.25rem, 4vw, 3.25rem);
	font-weight: 800;
	color: #ffffff;
	line-height: 1;
	margin-bottom: 8px;
	font-variant-numeric: tabular-nums;
}
.stat-num .stat-suffix {
	color: var(--accent);
}
.stat-label {
	font-size: 0.95rem;
	color: #bbf7d0;
	font-weight: 500;
}

/* ------------------------------------------------------------------
   11. Контакты / CTA-секция
   ------------------------------------------------------------------ */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 60px);
	align-items: start;
}

.contact-info h2 {
	margin-bottom: 16px;
}
.contact-info .lead {
	color: var(--text-muted);
	font-size: 1.05rem;
	margin-bottom: 32px;
}

.contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.contact-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 18px 20px;
	background-color: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	transition: all var(--transition);
}
.contact-item:hover {
	border-color: var(--green-light);
	background-color: var(--green-soft);
}
.contact-icon {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-sm);
	background-color: var(--green-light);
	color: var(--green-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.contact-icon svg {
	width: 22px;
	height: 22px;
}
.contact-label {
	display: block;
	font-size: 0.8rem;
	color: var(--text-muted);
	margin-bottom: 4px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-weight: 600;
}
.contact-value {
	display: block;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--text-dark);
}
a.contact-value:hover {
	color: var(--green-primary);
}

/* Форма */
.contact-form {
	background-color: #ffffff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: clamp(24px, 4vw, 36px);
	box-shadow: var(--shadow-md);
}
.contact-form h3 {
	margin-bottom: 8px;
}
.contact-form .form-lead {
	font-size: 0.95rem;
	color: var(--text-muted);
	margin-bottom: 24px;
}
.form-field {
	margin-bottom: 18px;
}
.form-field label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 8px;
}
.form-control {
	display: block;
	width: 100%;
	font-family: inherit;
	font-size: 0.95rem;
	color: var(--text-dark);
	padding: 12px 14px;
	background-color: var(--bg-soft);
	border: 1.5px solid var(--border);
	border-radius: var(--radius-sm);
	transition: all var(--transition);
}
.form-control:focus {
	outline: none;
	background-color: #ffffff;
	border-color: var(--green-primary);
	box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}
textarea.form-control {
	resize: vertical;
	min-height: 110px;
}
.form-check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: 18px;
}
.form-check input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--green-primary);
	cursor: pointer;
	flex-shrink: 0;
}
.form-submit {
	width: 100%;
	font-size: 1rem;
	padding: 16px 28px;
}

.form-status {
	margin-top: 16px;
	padding: 12px 16px;
	border-radius: var(--radius-sm);
	font-size: 0.9rem;
	display: none;
}
.form-status.is-success {
	display: block;
	background-color: var(--green-light);
	color: var(--green-darker);
	border: 1px solid var(--green-primary);
}
.form-status.is-error {
	display: block;
	background-color: #fee2e2;
	color: #991b1b;
	border: 1px solid #dc2626;
}

/* ------------------------------------------------------------------
   12. Footer
   ------------------------------------------------------------------ */
.site-footer {
	background-color: var(--green-deep);
	color: #cbd5e1;
	padding: 60px 0 24px;
}
.site-footer h4 {
	color: #ffffff;
	font-size: 1rem;
	margin-bottom: 18px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: clamp(24px, 4vw, 48px);
	margin-bottom: 40px;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
	text-decoration: none;
	color: #ffffff;
}
.footer-brand .brand-logo {
	width: 40px;
	height: 40px;
}
.footer-brand .brand-name {
	color: #ffffff;
	font-size: 1.2rem;
}
.footer-about {
	font-size: 0.9rem;
	color: #94a3b8;
	margin: 0 0 20px;
	line-height: 1.6;
}
.footer-socials {
	display: flex;
	gap: 10px;
}
.social-link {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all var(--transition);
}
.social-link:hover {
	background-color: var(--green-primary);
	color: #ffffff;
	transform: translateY(-2px);
}
.social-link svg {
	width: 18px;
	height: 18px;
}

.footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-list li {
	margin-bottom: 10px;
	font-size: 0.9rem;
}
.footer-list a {
	color: #cbd5e1;
	transition: color var(--transition);
}
.footer-list a:hover {
	color: #bbf7d0;
}

.footer-contacts .contact-item {
	background-color: transparent;
	border: none;
	padding: 0 0 12px;
	gap: 12px;
}
.footer-contacts .contact-item:hover {
	background-color: transparent;
	border: none;
}
.footer-contacts .contact-icon {
	width: 36px;
	height: 36px;
	background-color: rgba(187, 247, 208, 0.12);
	color: #bbf7d0;
}
.footer-contacts .contact-icon svg {
	width: 18px;
	height: 18px;
}
.footer-contacts .contact-label {
	font-size: 0.7rem;
	color: #94a3b8;
}
.footer-contacts .contact-value {
	font-size: 0.92rem;
	color: #ffffff;
	font-weight: 500;
}

.footer-bottom {
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
	font-size: 0.85rem;
	color: #94a3b8;
}
.footer-bottom a {
	color: #cbd5e1;
}
.footer-bottom a:hover {
	color: #bbf7d0;
}

/* ------------------------------------------------------------------
   13. Back to top
   ------------------------------------------------------------------ */
.to-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: var(--green-primary);
	color: #ffffff;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-green);
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all var(--transition);
	z-index: 999;
}
.to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.to-top:hover {
	background-color: var(--green-dark);
	color: #ffffff;
	transform: translateY(-3px);
}
.to-top svg {
	width: 22px;
	height: 22px;
}

/* ------------------------------------------------------------------
   14. Cookie-уведомление
   ------------------------------------------------------------------ */
.cookie-banner {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	max-width: 480px;
	margin-left: auto;
	background-color: #ffffff;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 18px 20px;
	box-shadow: var(--shadow-lg);
	z-index: 1100;
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 0.85rem;
	color: var(--text-body);
	transform: translateY(140%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.is-visible {
	transform: translateY(0);
}
.cookie-banner p {
	margin: 0;
	line-height: 1.5;
}
.cookie-banner .btn-v {
	padding: 8px 16px;
	font-size: 0.85rem;
	white-space: nowrap;
	box-shadow: none;
}
.cookie-banner .btn-v:hover {
	box-shadow: var(--shadow-green);
}

/* ------------------------------------------------------------------
   15. Адаптив
   ------------------------------------------------------------------ */
@media (max-width: 992px) {
	.hero-grid {
		grid-template-columns: 1fr;
		text-align: left;
	}
	.hero-illustration {
		order: -1;
		max-width: 520px;
		margin: 0 auto;
	}
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.nav-list {
		display: none;
	}
	.nav-toggle {
		display: inline-flex;
	}
	.header-phone span {
		display: none;
	}
	.header-phone::before {
		content: "";
		width: 18px;
		height: 18px;
		background:
			no-repeat center / contain
			url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>");
		flex-shrink: 0;
	}
	.header-phone {
		gap: 0;
		width: 42px;
		height: 42px;
		border: 1px solid var(--border);
		border-radius: var(--radius-sm);
		justify-content: center;
	}
	.hero-stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 14px;
	}
	.hero-float {
		display: none;
	}
	.nav-mobile-open .nav-list {
		display: flex;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: #ffffff;
		border-bottom: 1px solid var(--border);
		box-shadow: var(--shadow-md);
		flex-direction: column;
		align-items: stretch;
		padding: 12px 20px 20px;
		gap: 4px;
	}
	.nav-mobile-open .nav-list a {
		padding: 12px 14px;
		border-radius: var(--radius-sm);
	}
	.stat-card {
		border-right: none;
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
	.cookie-banner {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}
	.process-grid::before {
		display: none;
	}
}

@media (max-width: 480px) {
	.hero-cta {
		flex-direction: column;
		align-items: stretch;
	}
	.hero-cta .btn-v,
	.hero-cta .btn-v-outline {
		width: 100%;
	}
	.btn-v,
	.btn-v-outline,
	.btn-v-light,
	.btn-v-accent {
		padding: 12px 22px;
	}
}

/* ------------------------------------------------------------------
   16. Утилиты
   ------------------------------------------------------------------ */
.text-center {
	text-align: center;
}
.text-green {
	color: var(--green-primary);
}
.bg-soft {
	background-color: var(--bg-soft);
}
.mt-0 {
	margin-top: 0;
}
.mb-0 {
	margin-bottom: 0;
}
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* ------------------------------------------------------------------
   17. Анимации появления при скролле
   ------------------------------------------------------------------ */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}
.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.reveal[data-delay="100"] {
	transition-delay: 0.1s;
}
.reveal[data-delay="200"] {
	transition-delay: 0.2s;
}
.reveal[data-delay="300"] {
	transition-delay: 0.3s;
}
.reveal[data-delay="400"] {
	transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
