/* ============================================================
   АЗИЯ ТЕХНИКС — Таможенное оформление и ВЭД
   Главный файл стилей
   ============================================================ */

/* ============== 1. CSS ПЕРЕМЕННЫЕ ============== */
:root {
	/* Цвета */
	--color-primary: #e11d2a; /* основной красный */
	--color-primary-dark: #9f0712; /* тёмно-красный */
	--color-primary-darker: #7f0712;
	--color-primary-light: #fee2e2; /* светло-розовый */
	--color-accent: #f59e0b; /* золотой акцент */
	--color-accent-dark: #d97706;

	--color-dark: #111827; /* почти чёрный */
	--color-text: #1f2937; /* основной текст */
	--color-muted: #6b7280; /* второстепенный */
	--color-light: #f3f4f6; /* светлый фон */
	--color-gray: #f9fafb; /* серый фон секций */
	--color-border: #e5e7eb;
	--color-white: #ffffff;

	/* Типографика */
	--font-body:
		"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-heading: "Montserrat", var(--font-body);

	/* Тени */
	--shadow-sm:
		0 1px 3px rgba(17, 24, 39, 0.06), 0 1px 2px rgba(17, 24, 39, 0.04);
	--shadow: 0 4px 16px rgba(17, 24, 39, 0.08);
	--shadow-lg: 0 12px 32px rgba(17, 24, 39, 0.12);
	--shadow-xl: 0 24px 60px rgba(17, 24, 39, 0.18);
	--shadow-red: 0 12px 28px rgba(225, 29, 42, 0.32);

	/* Радиусы */
	--radius-sm: 6px;
	--radius: 12px;
	--radius-lg: 20px;
	--radius-xl: 28px;

	/* Переходы */
	--t: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============== 2. СБРОС / БАЗА ============== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

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

body {
	font-family: var(--font-body);
	color: var(--color-text);
	background: var(--color-white);
	line-height: 1.65;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

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

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--t);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 800;
	line-height: 1.2;
	color: var(--color-text);
	margin: 0 0 0.6em;
}

p {
	margin: 0 0 1em;
}

::selection {
	background: var(--color-primary);
	color: var(--color-white);
}

/* ============== 3. УТИЛИТЫ КОМПОНЕНТОВ ============== */
.eyebrow {
	display: inline-block;
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 700;
	color: var(--color-primary);
	text-transform: uppercase;
	letter-spacing: 2.5px;
	margin-bottom: 14px;
	position: relative;
	padding-left: 38px;
}

.eyebrow::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 28px;
	height: 2px;
	background: var(--color-primary);
	transform: translateY(-50%);
}

.eyebrow--light {
	color: #fca5a5;
}

.eyebrow--light::before {
	background: #fca5a5;
}

.accent {
	color: var(--color-accent);
}

.req {
	color: var(--color-primary);
}

/* ============== 4. КНОПКИ ============== */
.btn {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 15px;
	padding: 13px 26px;
	border-radius: var(--radius-sm);
	letter-spacing: 0.3px;
	transition: all var(--t);
	border: 2px solid transparent;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	text-decoration: none;
}

.btn-brand {
	background: var(--color-primary);
	color: var(--color-white);
	border-color: var(--color-primary);
	box-shadow: var(--shadow-red);
}

.btn-brand:hover,
.btn-brand:focus {
	background: var(--color-primary-dark);
	border-color: var(--color-primary-dark);
	color: var(--color-white);
	transform: translateY(-2px);
	box-shadow: 0 16px 32px rgba(225, 29, 42, 0.42);
}

.btn-ghost {
	background: transparent;
	color: var(--color-white);
	border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--color-white);
	color: var(--color-white);
}

.btn-light {
	background: var(--color-white);
	color: var(--color-primary);
	border-color: var(--color-white);
}

.btn-light:hover {
	background: var(--color-light);
	color: var(--color-primary-dark);
	transform: translateY(-2px);
}

/* ============== 5. ВЕРХНЯЯ ПАНЕЛЬ ============== */
.top-bar {
	background: var(--color-dark);
	color: rgba(255, 255, 255, 0.78);
	font-size: 13.5px;
	padding: 9px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-info {
	display: flex;
	align-items: center;
	gap: 26px;
	flex-wrap: wrap;
}

.top-info--right {
	justify-content: flex-end;
}

.top-info span,
.top-info a {
	color: rgba(255, 255, 255, 0.85);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.top-info i {
	color: var(--color-primary);
}

.top-info a:hover {
	color: var(--color-white);
}

.top-phone {
	font-weight: 700;
	color: var(--color-white) !important;
}

/* ============== 6. ШАПКА ============== */
.site-header {
	background: var(--color-white);
	position: sticky;
	top: 0;
	z-index: 1030;
	box-shadow: var(--shadow-sm);
	transition:
		box-shadow var(--t),
		padding var(--t);
}

.site-header.is-scrolled {
	box-shadow: var(--shadow);
}

.navbar {
	padding: 14px 0;
}

.brand-logo {
	height: 56px;
	width: auto;
	transition: transform var(--t);
}

.brand-logo:hover {
	transform: scale(1.03);
}

.navbar-nav .nav-link {
	color: var(--color-text);
	font-weight: 600;
	font-size: 15px;
	padding: 10px 14px !important;
	position: relative;
	transition: color var(--t);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
	color: var(--color-primary);
}

.navbar-nav .nav-link.active {
	color: var(--color-primary);
}

.navbar-toggler {
	border: 2px solid var(--color-primary);
	padding: 6px 10px;
}

.navbar-toggler:focus {
	box-shadow: 0 0 0 0.2rem rgba(225, 29, 42, 0.25);
}

/* ============== 7. HERO ============== */
.hero {
	position: relative;
	background: var(--color-primary-darker);
	color: var(--color-white);
	overflow: hidden;
	padding: 80px 0 100px;
}

.hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

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

.hero__container {
	position: relative;
	z-index: 1;
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 8px 18px;
	border-radius: 100px;
	font-size: 13.5px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 26px;
	backdrop-filter: blur(6px);
}

.hero__badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-accent);
	box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.25);
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%,
	100% {
		box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.25);
	}
	50% {
		box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
	}
}

.hero__title {
	font-family: var(--font-heading);
	font-size: clamp(36px, 5.2vw, 62px);
	font-weight: 900;
	color: var(--color-white);
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin-bottom: 22px;
}

.hero__subtitle {
	font-size: clamp(15px, 1.5vw, 18px);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.85);
	max-width: 620px;
	margin-bottom: 28px;
}

.hero__list {
	list-style: none;
	padding: 0;
	margin: 0 0 36px;
}

.hero__list li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 6px 0;
	font-size: 15.5px;
	color: rgba(255, 255, 255, 0.95);
}

.hero__list i {
	color: var(--color-accent);
	font-size: 20px;
}

.hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

/* Hero stats */
.hero__stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	padding: 20px;
}

.hero__stat {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(8px);
	border-radius: var(--radius);
	padding: 28px 22px;
	text-align: center;
	transition: all var(--t);
}

.hero__stat:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--color-accent);
}

.hero__stat-num {
	font-family: var(--font-heading);
	font-size: 42px;
	font-weight: 900;
	color: var(--color-accent);
	line-height: 1;
	margin-bottom: 8px;
}

.hero__stat-text {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.45;
}

.hero__scroll {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.6);
	font-size: 26px;
	animation: bounce 2s ease-in-out infinite;
	z-index: 2;
}

.hero__scroll:hover {
	color: var(--color-white);
}

@keyframes bounce {
	0%,
	100% {
		transform: translate(-50%, 0);
	}
	50% {
		transform: translate(-50%, 10px);
	}
}

/* ============== 8. СЕКЦИИ ============== */
.section {
	padding: 90px 0;
	position: relative;
}

@media (max-width: 768px) {
	.section {
		padding: 60px 0;
	}
}

.section--light {
	background: var(--color-white);
}

.section--gray {
	background: var(--color-gray);
}

.section--dark {
	background: linear-gradient(135deg, var(--color-dark) 0%, #1f2937 100%);
	color: var(--color-white);
}

.section--dark .section__title {
	color: var(--color-white);
}

.section--dark .section__subtitle {
	color: rgba(255, 255, 255, 0.78);
}

.section__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 60px;
}

.section__head--light .section__title {
	color: var(--color-white);
}

.section__title {
	font-family: var(--font-heading);
	font-size: clamp(28px, 3.8vw, 44px);
	font-weight: 900;
	color: var(--color-text);
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0 0 18px;
}

.section__head .section__title {
	text-align: center;
}

.section__subtitle {
	font-size: 17px;
	color: var(--color-muted);
	line-height: 1.65;
	margin: 0;
}

/* ============== 9. SERVICE CARDS ============== */
.service-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 36px 30px;
	height: 100%;
	position: relative;
	transition: all var(--t);
	overflow: hidden;
}

.service-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: var(--radius-lg);
	padding: 2px;
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-accent)
	);
	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity var(--t);
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	border-color: transparent;
}

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

.service-card__icon {
	width: 64px;
	height: 64px;
	border-radius: var(--radius);
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-primary-dark)
	);
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	margin-bottom: 24px;
	transition: transform var(--t);
}

.service-card:hover .service-card__icon {
	transform: rotate(-6deg) scale(1.08);
}

.service-card__icon--accent {
	background: linear-gradient(
		135deg,
		var(--color-accent),
		var(--color-accent-dark)
	);
}

.service-card__title {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 12px;
	color: var(--color-text);
}

.service-card__text {
	color: var(--color-muted);
	font-size: 15px;
	line-height: 1.65;
	margin-bottom: 18px;
}

.service-card__features {
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px dashed var(--color-border);
	padding-top: 18px;
}

.service-card__features li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 8px;
	font-size: 14px;
	color: var(--color-text);
	font-weight: 500;
}

.service-card__features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--color-primary);
	font-weight: 900;
}

/* ============== 10. ADVANTAGES ============== */
.advantage {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	padding: 32px 24px;
	height: 100%;
	transition: all var(--t);
	position: relative;
	overflow: hidden;
}

.advantage::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--color-accent);
	transition: width var(--t);
}

.advantage:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-6px);
	border-color: rgba(245, 158, 11, 0.4);
}

.advantage:hover::after {
	width: 100%;
}

.advantage__num {
	font-family: var(--font-heading);
	font-size: 36px;
	font-weight: 900;
	color: var(--color-accent);
	line-height: 1;
	margin-bottom: 14px;
	letter-spacing: -0.02em;
}

.advantage__title {
	color: var(--color-white);
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 10px;
}

.advantage__text {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14.5px;
	line-height: 1.6;
	margin: 0;
}

/* ============== 11. О КОМПАНИИ ============== */
.about__lead {
	font-size: 18px;
	color: var(--color-text);
	line-height: 1.7;
	margin-bottom: 18px;
	font-weight: 500;
}

.about__text {
	color: var(--color-muted);
	line-height: 1.7;
	margin-bottom: 32px;
}

.about__features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-bottom: 12px;
}

@media (max-width: 575px) {
	.about__features {
		grid-template-columns: 1fr;
	}
}

.about__feature {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 12px;
	border-radius: var(--radius-sm);
	transition: background var(--t);
}

.about__feature:hover {
	background: var(--color-light);
}

.about__feature i {
	width: 42px;
	height: 42px;
	border-radius: var(--radius-sm);
	background: var(--color-primary-light);
	color: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}

.about__feature strong {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 2px;
}

.about__feature span {
	font-size: 13.5px;
	color: var(--color-muted);
	line-height: 1.45;
}

.about__media {
	position: relative;
}

.about__img {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}

.about__badge {
	position: absolute;
	bottom: -20px;
	left: -20px;
	background: var(--color-primary);
	color: var(--color-white);
	padding: 24px 28px;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	text-align: center;
}

.about__badge-num {
	font-family: var(--font-heading);
	font-size: 42px;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 4px;
}

.about__badge-text {
	font-size: 13px;
	line-height: 1.3;
	opacity: 0.95;
}

/* ============== 12. ГЕОГРАФИЯ ============== */
.geo-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.geo-item {
	display: flex;
	gap: 16px;
	align-items: center;
	padding: 16px 18px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	transition: all var(--t);
}

.geo-item:hover {
	border-color: var(--color-primary);
	transform: translateX(6px);
	box-shadow: var(--shadow);
}

.geo-item__flag {
	font-size: 36px;
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-gray);
	border-radius: var(--radius-sm);
}

.geo-item__body h5 {
	font-size: 16px;
	font-weight: 800;
	color: var(--color-text);
	margin: 0 0 4px;
}

.geo-item__body p {
	font-size: 13.5px;
	color: var(--color-muted);
	margin: 0;
}

/* ============== 13. TIMELINE ============== */
.timeline {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	position: relative;
}

@media (max-width: 991px) {
	.timeline {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.timeline {
		grid-template-columns: 1fr;
	}
}

.timeline__item {
	position: relative;
	padding: 36px 28px;
	background: var(--color-white);
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
	transition: all var(--t);
}

.timeline__item:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: var(--color-primary-light);
}

.timeline__dot {
	width: 48px;
	height: 48px;
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-primary-dark)
	);
	color: var(--color-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 900;
	margin-bottom: 18px;
	box-shadow: 0 8px 20px rgba(225, 29, 42, 0.32);
}

.timeline__title {
	font-size: 18px;
	font-weight: 800;
	color: var(--color-text);
	margin-bottom: 10px;
}

.timeline__text {
	font-size: 14.5px;
	color: var(--color-muted);
	line-height: 1.6;
	margin: 0;
}

/* ============== 14. CTA ============== */
.cta {
	position: relative;
	background: linear-gradient(
		135deg,
		var(--color-primary) 0%,
		var(--color-primary-dark) 100%
	);
	color: var(--color-white);
	padding: 70px 0;
	overflow: hidden;
}

.cta__bg {
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(
			circle at 20% 30%,
			rgba(255, 255, 255, 0.12) 0%,
			transparent 40%
		),
		radial-gradient(
			circle at 80% 70%,
			rgba(245, 158, 11, 0.18) 0%,
			transparent 50%
		);
}

.cta > .container {
	position: relative;
	z-index: 1;
}

.cta__title {
	font-family: var(--font-heading);
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 900;
	color: var(--color-white);
	margin-bottom: 12px;
	letter-spacing: -0.02em;
}

.cta__subtitle {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.65;
	margin: 0;
	max-width: 640px;
}

/* ============== 15. КОНТАКТЫ ============== */
.contact-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 36px 32px;
	box-shadow: var(--shadow-sm);
}

.contact-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 18px 0;
	border-bottom: 1px solid var(--color-border);
}

.contact-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.contact-item:first-child {
	padding-top: 0;
}

.contact-item__icon {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-sm);
	background: var(--color-primary-light);
	color: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}

.contact-item__body {
	flex: 1;
}

.contact-item__label {
	display: block;
	font-size: 12.5px;
	color: var(--color-muted);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 4px;
	font-weight: 600;
}

.contact-item__value {
	display: block;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 800;
	color: var(--color-text);
	line-height: 1.3;
}

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

.contact-item__body small {
	display: block;
	margin-top: 4px;
	font-size: 13px;
	color: var(--color-muted);
}

/* ============== 16. ФОРМА ============== */
.contact-form {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 40px 36px;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
}

.contact-form::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.contact-form__title {
	font-size: 26px;
	font-weight: 900;
	margin-bottom: 8px;
	color: var(--color-text);
}

.contact-form__subtitle {
	color: var(--color-muted);
	margin-bottom: 28px;
	font-size: 15px;
}

.form-label {
	font-weight: 600;
	font-size: 14px;
	color: var(--color-text);
	margin-bottom: 6px;
}

.form-control,
.form-select {
	padding: 12px 16px;
	font-size: 15px;
	border-radius: var(--radius-sm);
	border: 1.5px solid var(--color-border);
	transition: all var(--t);
	background: var(--color-white);
	color: var(--color-text);
}

.form-control:focus,
.form-select:focus {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(225, 29, 42, 0.12);
}

.form-control::placeholder {
	color: #9ca3af;
}

.form-check-input {
	width: 1.1em;
	height: 1.1em;
	margin-top: 0.18em;
	border: 1.5px solid var(--color-border);
	cursor: pointer;
}

.form-check-input:checked {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
}

.form-check-input:focus {
	box-shadow: 0 0 0 3px rgba(225, 29, 42, 0.15);
	border-color: var(--color-primary);
}

.form-check-label {
	font-size: 13.5px;
	color: var(--color-muted);
	cursor: pointer;
	line-height: 1.5;
}

.form-check-label a {
	color: var(--color-primary);
	text-decoration: underline;
}

/* ============== 17. FOOTER ============== */
.site-footer {
	background: var(--color-dark);
	color: rgba(255, 255, 255, 0.7);
	padding: 70px 0 24px;
}

.footer__logo {
	height: 60px;
	margin-bottom: 24px;
	filter: brightness(0) invert(1);
	/* Поскольку у нас logo-white.svg, фильтр не нужен, оставляем чистый svg */
}

.footer__about {
	font-size: 14.5px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.7);
	max-width: 380px;
	margin-bottom: 24px;
}

.footer__title {
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 800;
	color: var(--color-white);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 22px;
}

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

.footer__list li {
	margin-bottom: 10px;
}

.footer__list a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14.5px;
	transition: all var(--t);
}

.footer__list a:hover {
	color: var(--color-white);
	padding-left: 6px;
}

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

.footer__contacts li {
	margin-bottom: 14px;
	font-size: 14.5px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer__contacts i {
	color: var(--color-primary);
	width: 18px;
	text-align: center;
}

.footer__contacts a {
	color: rgba(255, 255, 255, 0.85);
}

.footer__contacts a:hover {
	color: var(--color-white);
}

.footer__socials {
	display: flex;
	gap: 10px;
}

.footer__socials a {
	width: 42px;
	height: 42px;
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: all var(--t);
}

.footer__socials a:hover {
	background: var(--color-primary);
	color: var(--color-white);
	transform: translateY(-3px);
}

.footer__divider {
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin: 40px 0 20px;
}

.footer__bottom {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
}

.footer__link {
	color: rgba(255, 255, 255, 0.7);
}

.footer__link:hover {
	color: var(--color-white);
}

/* ============== 18. SCROLL-TO-TOP ============== */
.scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--color-primary);
	color: var(--color-white);
	border: none;
	box-shadow: var(--shadow-red);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	cursor: pointer;
	z-index: 1020;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all var(--t);
}

.scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-top:hover {
	background: var(--color-primary-dark);
	transform: translateY(-4px);
}

/* ============== 19. АНИМАЦИИ ПОЯВЛЕНИЯ ============== */
.js-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}

.js-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ============== 20. ТОСТ УВЕДОМЛЕНИЕ ============== */
.toast-notification {
	position: fixed;
	top: 30px;
	right: 30px;
	background: var(--color-white);
	border-left: 4px solid var(--color-primary);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-xl);
	padding: 18px 24px;
	z-index: 9999;
	max-width: 380px;
	transform: translateX(420px);
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast-notification.is-visible {
	transform: translateX(0);
}

.toast-notification__title {
	font-weight: 800;
	color: var(--color-text);
	margin-bottom: 4px;
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.toast-notification__title i {
	color: var(--color-primary);
}

.toast-notification__text {
	font-size: 14px;
	color: var(--color-muted);
	margin: 0;
}

.toast-notification--success {
	border-left-color: #10b981;
}

.toast-notification--success .toast-notification__title i {
	color: #10b981;
}

/* ============== 21. АДАПТИВНЫЕ ДОПРАВКИ ============== */
@media (max-width: 991px) {
	.hero {
		padding: 60px 0 80px;
	}

	.hero__stats {
		margin-top: 40px;
	}

	.navbar-collapse {
		background: var(--color-white);
		margin-top: 16px;
		padding: 18px;
		border-radius: var(--radius);
		box-shadow: var(--shadow);
	}
}

@media (max-width: 767px) {
	.top-bar {
		font-size: 12px;
	}

	.top-info {
		gap: 14px;
	}

	.brand-logo {
		height: 46px;
	}

	.hero__buttons .btn {
		width: 100%;
		justify-content: center;
	}

	.contact-form,
	.contact-card {
		padding: 28px 22px;
	}

	.about__badge {
		bottom: -10px;
		left: 10px;
		padding: 16px 22px;
	}

	.about__badge-num {
		font-size: 32px;
	}
}

/* ============== 22. ПЕЧАТЬ ============== */
@media print {
	.top-bar,
	.site-header,
	.hero__scroll,
	.scroll-top,
	.cta,
	.site-footer {
		display: none;
	}

	.hero {
		background: var(--color-white);
		color: var(--color-text);
		padding: 30px 0;
	}

	.hero__title,
	.hero__subtitle,
	.hero__list {
		color: var(--color-text);
	}
}

/* ============== 23. ДОСТУПНОСТЬ ============== */
@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;
	}
}

:focus-visible {
	outline: 3px solid var(--color-accent);
	outline-offset: 2px;
}
