* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	outline-style: none;
}

li {
	list-style: none;
}

a {
	border: none;
	text-decoration: none;
}

a img {
	border: none;
}

input, textarea, button {
	font-weight: 400;
	font-family: 'Gilroy' !important;
}

:focus {
	outline: none;
}

::-webkit-input-placeholder { color: #37203f94; }
::-moz-placeholder { color: #37203f94; }
:-moz-placeholder { color: #37203f94; }
:-ms-input-placeholder { color: #37203f94; }

@keyframes ani {
	0% {transform: translateY(-150%);}
	100% {transform: translateY(0);}
}

@keyframes aniStop {
	0% {transform: translateY(0);}
	100% {transform: translateY(-150%);}
}

.d-none {
	display: none;
}

body {
	position: relative;
	overflow-x: hidden;
	min-height: 100%;
	height: 100%;
	font-size: 15px;
	font-family: Gilroy;
	color: var(--text);
	background: var(--white);
}

html, body {
	margin: 0;
	padding: 0;
	/* height: 100%; */
}

:root {
	--navy: #0B1B2B;
	--navy2: #132233;
	--accent: #D4522A;
	--accent2: #E8733F;
	--teal: #1A7A6E;
	--teal2: #21937F;
	--silver: #F4F5F7;
	--text: #1A2332;
	--muted: #5A6B7E;
	--border: rgba(10, 28, 50, 0.1);
	--white: #FFFFFF;
	--gold: #C4A24B;
	--r: 10px;
	--r-lg: 18px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

/* HEADER */
.header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--navy);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	gap: 32px;
	height: 64px;
	flex-wrap: wrap;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	margin: 10px 0px 20px 0px;
}

.logo img {
	height: 20px;
}

.logo-mark {
	width: 36px;
	height: 36px;
	background: var(--accent);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 700;
	color: white;
}

.logo-text {
	font-size: 15px;
	font-weight: 700;
	color: white;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

nav {
	display: flex;
	flex: 1;
	justify-content: center;
}

nav ul {
	display: flex;
	gap: 0px;
}

.pageHome .menu-item-7145 {
	display: none;
}

nav a {
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	padding: 8px 8px;
	border-radius: 6px;
	transition: all 0.2s;
}

nav a:hover,
nav .current-menu-item a {
	color: white;
	background: rgba(255, 255, 255, 0.08);
}

.header-contacts {
	display: flex;
	align-items: center;
	gap: 16px;
}

.phone {
	color: white;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.phone:hover {
	color: var(--accent2);
}

.btn-header {
	background: var(--accent);
	color: white;
	border: none;
	border-radius: 8px;
	padding: 9px 18px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s;
	white-space: nowrap;
}

.btn-header:hover {
	background: var(--accent2);
}

/* HERO */
.hero {
	background: var(--navy);
	padding: 60px 24px 90px;
	position: relative;
	overflow: hidden;
}

.heroOsn {
	padding: 60px 24px 40px;
}

.hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(212, 82, 42, 0.15) 0%, transparent 70%),
		radial-gradient(ellipse 40% 60% at 20% 80%, rgba(26, 122, 110, 0.1) 0%, transparent 60%);
	pointer-events: none;
}

.hero-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 480px;
	gap: 60px;
	align-items: center;
	position: relative;
}

.hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(212, 82, 42, 0.15);
	border: 1px solid rgba(212, 82, 42, 0.3);
	border-radius: 20px;
	padding: 6px 14px;
	margin-bottom: 24px;
	font-size: 12px;
	font-weight: 600;
	color: var(--accent2);
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.heroGos .hero-label {
    background: rgba(196, 162, 75, 0.15);
    border: 1px solid rgba(196, 162, 75, 0.3);
    color: var(--gold);
}

.hero-title {
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 700;
	line-height: 1.15;
	color: white;
	margin-bottom: 20px;
}

.heroGos .hero-title {
    max-width: 700px;
}

.hero-title span {
	color: var(--accent2);
}

.hero-sub {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 36px;
	max-width: 520px;
}

.hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 48px;
}

.btn-primary {
	background: var(--accent);
	color: white;
	border: none;
	border-radius: var(--r);
	padding: 14px 28px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
	text-align: center;
}

.btn-primary:hover {
	background: var(--accent2);
	transform: translateY(-1px);
}

.btn-ghost {
	background: transparent;
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: var(--r);
	padding: 14px 28px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-ghost:hover {
	border-color: rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
	display: flex;
	gap: 32px;
}

.heroGos .hero-card .hero-stats {
	display: flex;
	gap: 32px;
	margin-bottom: 30px;
	justify-content: center;
}

.heroGos .hero-card .stat {
	text-align: center;
}

.stat-num {
	font-size: 26px;
	font-weight: 800;
	color: white;
}

.heroGos .stat-num {
	font-size: 32px;
    font-weight: 800;
    color: var(--gold);
}

.stat-lbl {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 2px;
}

/* Hero form card */
.hero-card {
	background: white;
	border-radius: var(--r-lg);
	padding: 32px;
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.heroGos .hero-card {
	background: none;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
}

.rigid-badges {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.rigid-badges .rigid-badge {
	/* background: white; */
	border-radius: var(--r-lg);
	padding: 15px 30px;
	box-shadow: 0 0px 80px rgba(0, 0, 0, 0.4);
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--gold);
	/* background: rgba(196, 162, 75, 0.15); */
	border: 1px solid rgba(196, 162, 75, 0.3);
	color: var(--gold);
}

.rigid-badges .rigid-badge p {
	width: calc(100% - 30px);
	text-transform: uppercase;
	font-weight: 500;
}

.hero-card .b24-form-header {
	display: none;
}

.kolibri .hero-card .b24-form-content {
	padding: 0px;
}

.hero-card-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 6px;
}

.hero-card-sub {
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 24px;
}

.form-group {
	margin-bottom: 14px;
}

.form-group label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: var(--muted);
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.form-group input,
.form-group select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--border);
	border-radius: var(--r);
	font-size: 14px;
	color: var(--text);
	background: var(--silver);
	outline: none;
	transition: border 0.2s;
}

.form-group input:focus,
.form-group select:focus {
	border-color: var(--accent);
	background: white;
}

.form-group select {
	appearance: none;
	cursor: pointer;
}

.btn-form {
	width: 100%;
	background: var(--accent);
	color: white;
	border: none;
	border-radius: var(--r);
	padding: 14px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s;
	margin-top: 4px;
}

.btn-form:hover {
	background: var(--accent2);
}

.form-note {
	font-size: 11px;
	color: var(--muted);
	text-align: center;
	margin-top: 10px;
}

.form-badges {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.form-badge {
	font-size: 11px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 20px;
	background: rgba(26, 122, 110, 0.1);
	color: var(--teal);
	border: 1px solid rgba(26, 122, 110, 0.2);
}

.catCon {
	padding: 28px 24px;
}

.catCon .section-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 40px;
}

.catCon .left {
	width: 35%;
}

.catCon .left .block {
	margin: 0px 0px 15px 0px;
	display: flex;
	align-items: center;
}

.catCon .left .block i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	color: #000000;
	font-weight: 400;
	margin-right: 15px;
}

.catCon .left .block a,
.catCon .left .block span {
	font-size: 14px;
	color: #000000;
	font-weight: 00;
	line-height: 1;
	width: calc(100% - 50px);
}

.catCon .map {
	width: 60%;
    border: 1px solid rgb(98 98 98 / 10%);
    border-radius: var(--r-lg);
    padding: 24px;
}

.catCon .map iframe {
	overflow: hidden;
	border-radius: var(--r-lg);
}

/* TRUST BAR */
.trust-bar {
	background: var(--silver);
	padding: 28px 24px;
	border-bottom: 1px solid var(--border);
}

.trustOsn {
	background: white;
}

.trust-bar-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(241px, 1fr));
	align-items: center;
	justify-content: space-between;
	padding: 0px;
}

.trustOsn .trust-bar-inner {
	align-items: flex-start;
}

.trust-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px 20px;
	text-align: center;
	border-right: 1px solid var(--border);
}

.trust-item:last-child {
	border-right: none;
}

.trust-icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: white;
	border: 1px solid var(--border);
	font-size: 18px;
	flex-shrink: 0;
	display: none;
}

.trust-item-title {
	font-size: 25px;
	font-weight: 700;
	color: var(--text);
}

.trustOsn .trust-item-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--text);
	line-height: 1;
	margin-bottom: 10px
}

.trust-item-sub {
	font-size: 12px;
	color: var(--muted);
}

.trustOsn .trust-item-sub {
	font-size: 13px;
	color: var(--muted);
}

/* TEST DRIVE BANNER */
.testdrive {
	background: linear-gradient(135deg, var(--teal) 0%, #0E5C53 100%);
	padding: 48px 24px;
	position: relative;
	overflow: hidden;
}

.testdrive-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

.testdrive-left {}

.testdrive-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	padding: 5px 12px;
	font-size: 11px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.9);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.testdrive-title {
	font-size: 28px;
	font-weight: 800;
	color: white;
	margin-bottom: 10px;
	line-height: 1.2;
}

.testdrive-sub {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.6;
	max-width: 500px;
}

.testdrive-list {
	margin-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.testdrive-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
}

.testdrive-check {
	width: 20px;
	height: 20px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	flex-shrink: 0;
}

.btn-testdrive {
	background: white;
	color: var(--teal);
	border: none;
	border-radius: var(--r);
	padding: 16px 32px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.2s;
	white-space: nowrap;
	flex-shrink: 0;
}

.btn-testdrive:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* SECTION */
section {
	padding: 72px 24px;
}

.fullText {
	padding: 72px 24px 0px 24px;
}

.textArt {
	margin: 40px 0px 0px 0px;
}

.textArt p {
	line-height: 1.4;
	margin: 20px 0px 20px 0px;
}

.textArt strong {
	font-weight: 400;
}

.textArt em {
	font-style: normal;
}

.textArt ul {
	margin-bottom: 20px
}

.textArt li {
	line-height: 1.4;
	font-weight: 400;
	font-size: 15px;
	padding-left: 40px;
	position: relative;
	margin-bottom: 10px;
}

.textArt li:before {
	content: '';
	position: absolute;
	display: inline-block;
	left: 20px;
	top: 8px;
	width: 6px;
	height: 6px;
	background: #d4522a;
	border-radius: 50%;
}

.textArt table {
	font-size: 15px;
	width: 100%;
	border-collapse: collapse;
	margin: 0px 0px 40px 0px;
}

.textArt table td,
.textArt table th {
	line-height: 1.4;
	border: 1px solid #eff3f7;
	padding: 10px;
}

.textArt table th {
	font-weight: 500;
}

.textArt h2 {
	font-size: 22px;
	line-height: 1;
	font-weight: 500;
	width: 100%;
	margin: 40px 0px 30px 0px;
}

.textArt h3 {
	font-size: 16px;
	line-height: 1;
	font-weight: 500;
	width: 100%;
	margin: 40px 0px 30px 0px;
}

.section-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.section-header {
	margin-bottom: 48px;
}

.section-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 10px;
}

.section-title {
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 700;
	color: var(--text);
	line-height: 1.2;
}

.section-sub {
	font-size: 16px;
	color: var(--muted);
	margin-top: 10px;
	max-width: 580px;
	line-height: 1.4;
}

/* SPECIALTIES */
.specs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
	gap: 16px;
	margin-bottom: 48px;
}

.spec-card {
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 24px 10px;
	text-align: center;
	cursor: pointer;
	transition: all 0.25s;
	text-decoration: none;
	color: var(--text);
	background: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.spec-card:hover {
	border-color: var(--accent);
	box-shadow: 0 8px 24px rgba(212, 82, 42, 0.12);
	transform: translateY(-3px);
}

a.spec-card[data-active] {
	border-color: var(--accent);
	background: rgba(212, 82, 42, 0.04);
}

.spec-card.active {
	border-color: var(--accent);
	background: rgba(212, 82, 42, 0.04);
}

.spec-icon {
	font-size: 32px;
	margin-bottom: 10px;
	display: block;
	display: none;
}

.spec-name {
	font-size: 14px;
	font-weight: 600;
}

.spec-count {
	font-size: 12px;
	color: var(--muted);
	margin-top: 3px;
}

/* PRODUCTS GRID */
.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 40px;
}

.product-card {
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
	background: white;
	transition: all 0.25s;
	display: flex;
	flex-direction: column;
}

.product-card:hover {
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
}

.product-img {
	/* background: var(--silver); */
	border-bottom: 1px solid var(--silver);
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	position: relative;
}

.product-badge-stock {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--teal);
	color: white;
	font-size: 10px;
	font-weight: 700;
	padding: 4px 8px;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.product-img a {
	display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.product-img img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.product-img-placeholder {
	font-size: 48px;
	opacity: 0.3;
}

.product-body {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.product-spec-tag {
	font-size: 11px;
	font-weight: 600;
	color: var(--teal);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 8px;
}

.product-name a {
	font-size: 17px;
	font-weight: 500;
	color: var(--text);
	margin-bottom: 6px;
	line-height: 1.1;
	display: inline-flex;
}

.product-desc {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.5;
	margin-bottom: 16px;
	flex: 1;
}

.product-price-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 20px 0px 15px 0px;
}

.price-range {
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
}

.price-label {
	font-size: 13px;
	color: var(--muted);
}

.product-price-from {
	font-size: 22px;
	font-weight: 600;
	color: var(--accent);
}

.product-price-from span {
	font-size: 17px;
	color: var(--muted);
	font-weight: 400;
}

.product-price-desc {
	font-size: 12px;
	color: var(--muted);
}

.product-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.btn-kp {
	flex: 1;
	background: var(--accent);
	color: white;
	border: none;
	border-radius: 8px;
	padding: 10px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
	text-align: center;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-kp:hover {
	background: var(--accent2);
}

.btn-detail {
	flex: 1;
	background: transparent;
	color: var(--text);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 10px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	text-align: center;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-detail:hover {
	border-color: var(--text);
}

.btn-testdrive-sm {
	width: 40px;
	background: rgba(26, 122, 110, 0.1);
	color: var(--teal);
	border: 1px solid rgba(26, 122, 110, 0.2);
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex-shrink: 0;
}

.btn-testdrive-sm:hover {
	background: var(--teal);
	color: white;
}

.section-des {
	margin-top: 60px
}

.section-des p {
	font-size: 15px;
	color: var(--text);
	line-height: 1.7;
	margin-bottom: 14px;
}

.section-des h2 {
	font-size: 22px;
	line-height: 1;
	font-weight: 500;
	width: 100%;
	margin: 40px 0px 30px 0px;
}

.section-des h3 {
	font-size: 18px;
	line-height: 1;
	font-weight: 500;
	width: 100%;
	margin: 30px 0px 20px 0px;
}

.section-des ul {
	padding-left: 40px;
	margin-bottom: 14px;
	list-style-type: disc;
}

.section-des li {
	font-size: 15px;
	color: var(--text);
	line-height: 1.7;
	margin-bottom: 6px;
	list-style: disc;
}


/* PRICE TABLE - new transparent approach */
.price-section {
	background: var(--silver);
}

.price-intro {
	max-width: 700px;
}

.price-cats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 16px;
	margin-top: 40px;
}

.price-cat {
	background: white;
	border-radius: var(--r-lg);
	padding: 24px;
	border: 1px solid var(--border);
}

.price-cat-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 6px;
}

.price-cat-range {
	font-size: 22px;
	font-weight: 800;
	color: var(--accent);
	margin-bottom: 4px;
}

.price-cat-desc {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.5;
	margin-bottom: 16px;
}

.price-cat-items {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.price-item {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	padding: 6px 0;
	border-bottom: 1px solid var(--border);
}

.price-item:last-child {
	border: none;
}

.price-item-name {
	color: var(--muted);
}

.price-item-val {
	font-weight: 600;
	color: var(--text);
}

.price-note {
	margin-top: 32px;
	font-size: 14px;
	color: var(--muted);
	line-height: 1.6;
	padding: 20px 24px;
	background: rgba(212, 82, 42, 0.05);
	border-radius: var(--r);
	border-left: 3px solid var(--accent);
}

/* WHY US */
.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.why-card {
	padding: 28px 24px;
	border-radius: var(--r-lg);
	background: white;
	border: 1px solid var(--border);
	transition: all 0.25s;
}

.why-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
	transform: translateY(-2px);
}

.why-num {
	font-size: 36px;
	font-weight: 800;
	color: var(--accent);
	line-height: 1;
	margin-bottom: 6px;
}

.why-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 8px;
}

.why-desc {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.6;
}

/* CASES */
.cases-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 20px;
}

.case-card {
	border-radius: var(--r-lg);
	overflow: hidden;
	background: white;
	border: 1px solid var(--border);
	padding: 28px;
}

.case-header {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 16px;
}

.case-logo {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: var(--silver);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 14px;
	color: var(--navy);
	flex-shrink: 0;
	border: 1px solid var(--border);
}

.case-info {}

.case-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
}

.case-city {
	font-size: 12px;
	color: var(--muted);
}

.case-spec {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	background: rgba(26, 122, 110, 0.1);
	color: var(--teal);
	padding: 2px 8px;
	border-radius: 4px;
	margin-top: 4px;
}

.case-quote {
	font-size: 14px;
	color: var(--text);
	line-height: 1.6;
	font-style: italic;
	margin-bottom: 16px;
}

.case-result {
	display: flex;
	gap: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--border);
}

.case-metric {}

.case-metric-val {
	font-size: 18px;
	font-weight: 800;
	color: var(--accent);
}

.case-metric-lbl {
	font-size: 11px;
	color: var(--muted);
}

/* GOV BANNER */
.gov-banner {
	background: var(--navy);
	padding: 60px 24px;
}

.gov-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.gov-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 12px;
}

.gov-title {
	font-size: 32px;
	font-weight: 700;
	color: white;
	margin-bottom: 16px;
	line-height: 1.25;
}

.gov-desc {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.7;
	margin-bottom: 28px;
}

.gov-docs {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.gov-doc {
	display: flex;
	align-items: center;
	gap: 10px;
}

.gov-doc-icon {
	font-size: 20px;
}

.gov-doc-text {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
}

.gov-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.gov-stat {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--r-lg);
	padding: 24px;
}

.gov-stat:nth-child(3) .gov-stat-num {
	font-size: 20px;
	line-height: 1.2;
}

.gov-stat-num {
	font-size: 32px;
	font-weight: 800;
	color: var(--gold);
	line-height: 1;
}

.gov-stat-lbl {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 4px;
	line-height: 1.4;
}

.btn-gov {
	margin-top: 28px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--gold);
	color: var(--navy);
	border: none;
	border-radius: var(--r);
	padding: 14px 28px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-gov:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

/* WHATSAPP FLOAT */
.wa-float {
	position: fixed;
	bottom: 28px;
	right: 28px;
	z-index: 200;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25D366;
	box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s;
	font-size: 28px;
}

.wa-float:hover {
	transform: scale(1.1);
	box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.wa-label {
	position: absolute;
	right: 66px;
	background: var(--text);
	color: white;
	font-size: 13px;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 8px;
	white-space: nowrap;
	opacity: 0;
	transform: translateX(8px);
	transition: all 0.2s;
	pointer-events: none;
}

.wa-float:hover .wa-label {
	opacity: 1;
	transform: translateX(0);
}

/* CTA SECTION */
.cta-section {
	background: linear-gradient(135deg, #0B1B2B 0%, #132233 100%);
	padding: 80px 24px;
	text-align: center;
}

.cta-title {
	font-size: 38px;
	font-weight: 700;
	color: white;
	margin-bottom: 16px;
}

.cta-sub {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 40px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.cta-form {
	max-width: 480px;
	margin: 0 auto;
}

.cta-row {
	display: flex;
	gap: 10px;
}

.cta-input {
	flex: 1;
	padding: 14px 18px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--r);
	background: rgba(255, 255, 255, 0.07);
	color: white;
	font-size: 14px;
	outline: none;
	transition: border 0.2s;
}

.cta-input::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

.cta-input:focus {
	border-color: var(--accent);
	background: rgba(255, 255, 255, 0.1);
}

.cta-btn {
	background: var(--accent);
	color: white;
	border: none;
	border-radius: var(--r);
	padding: 14px 24px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s;
	white-space: nowrap;
}

.cta-btn:hover {
	background: var(--accent2);
}

.cta-note {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.35);
	margin-top: 14px;
}

/* FOOTER */
.footer {
	background: #070F18;
	color: rgba(255, 255, 255, 0.5);
	padding: 48px 24px 32px;
}

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-brand {}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.footer-desc {
	font-size: 13px;
	line-height: 1.7;
	max-width: 280px;
}

.footer-contact {
	margin-top: 20px;
}

.footer-phone {
	font-size: 16px;
	font-weight: 700;
	color: white;
	text-decoration: none;
	display: block;
}

.footer-email {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
	text-decoration: none;
}

.footer-col-title {
	font-size: 13px;
	font-weight: 700;
	color: white;
	margin-bottom: 14px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-links a {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
	text-decoration: none;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	padding-top: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 12px;
	gap: 16px;
	flex-wrap: wrap;
}

.footer-copy {}

.footer-legal {
	color: rgba(255, 255, 255, 0.25);
	font-size: 11px;
	text-align: right;
	max-width: 400px;
}

footer {
	display: flex;
	align-items: center;
	flex-direction: column;
	width: 100%;
	margin: 0px 0px 0px 0px;
	padding: 22px 0px 20px 0px;
	background: linear-gradient(135deg, #0B1B2B 0%, #132233 100%);
	padding: 20px 24px 80px 24px;
}

footer .section-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

footer .topSide {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	padding: 0px 0px 20px 0px;
	border-bottom: 2px dotted #ffffff1a;
}

footer .topSide .logo {
	display: inline-flex;
	align-items: center;
}

footer .topSide .logo img {
	display: inline-flex;
	height: 27px;
}

footer .topSide .text {
	width: 100%;
	max-width: 300px;
	font-size: 16px;
	text-align: right;
	line-height: 1.2;
	color: #ffffff;
}

footer .topSide .text span {
	color: var(--accent);
}

footer .leftSide {
	width: 40%;
	padding: 40px 5% 0px 0px;
	border-right: 2px dotted #ffffff1a;
}

footer .leftSide .textTitle {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 25px;
	margin: 0px 0px 10px 0px;
	color: #ffffff;
	text-align: center;
}

footer .leftSide .textTitle span {
	color: var(--accent);
}

footer .leftSide p {
	display: inline-flex;
	font-size: 16px;
	font-weight: 300;
	margin: 10px 0px 10px 0px;
	line-height: 1;
	color: #ffffff;
	text-align: center;
}

.kolibri footer .leftSide .b24-form-header {
	display: none;
}

.kolibri footer .leftSide .b24-form-content {
	padding: 10px 0px 20px 0px;
}

.kolibri footer .leftSide .b24-form-control-icon-after .b24-form-control {
	background: #ffffff;
}

footer .leftSide .info {
	display: inline-flex;
	font-size: 14px;
	font-weight: 300;
	margin: 0px 0px 40px 0px;
	line-height: 1;
	color: #ffffff;
}

footer .rightSide {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 56%;
	padding: 40px 0px 0px 0px;
}

footer .rightSide .textTitle:nth-of-type(2) {
	margin-top: 30px;
} 

footer .rightSide .textTitle {
	text-transform: uppercase;
	font-weight: 500;
	line-height: 1;
	font-size: 20px;
	margin: 0px 0px 15px 0px;
	width: 100%;
	color: var(--accent);
}

footer .rightSide .footerMenu {
	display: flex;
	flex-wrap: wrap;
	margin: 0px 0px 0px 0px;
	justify-content: space-between;
}

footer .rightSide .footerMenu .block {
	width: 48%;
	margin-bottom: 25px;
	flex-direction: column;
	display: inline-flex;
}

footer .rightSide .footerMenu .display a {
	color: #ffffff;
	font-size: 15px;
	text-align: left;
	font-weight: 300;
	transition: 0.2s linear;
	margin: 4px 0px;
	display: inline-flex;
	line-height: 1.3;
}

footer .rightSide .footerMenu .display a:hover {
	color: var(--gold);
}

footer .footerMenu .item {
	display: flex;
	align-items: center;
	margin-top: 6px;
}

footer .footerMenu .item span,
footer .footerMenu .item a {
	color: #ffffff;
	font-size: 15px;
	text-align: left;
	line-height: 1;
	font-weight: 300;
	transition: 0.2s linear;
}

footer .footerMenu .block a:hover {
	color: var(--gold);
}

footer .footerMenu .block i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	margin-right: 5px;
	color: #ffffff;
}

footer .rightSide .info {
	display: flex;
	width: 100%;
	margin: 20px 0px 20px 0px;
	color: #ffffff;
	font-weight: 300;
	font-size: 13px;
}

footer .rightSide .copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	margin: 0px 0px 0px 0px;
	color: #ffffff;
	font-weight: 300;
	font-size: 13px;
}

#cookie_notification {
	display: none;
	align-items: flex-end;
	justify-content: space-between;
	position: fixed;
	bottom: 10px;
	left: 10px;
	width: 655px;
	padding: 20px;
	background-color: #ffffff;
	box-shadow: 2px 3px 17px rgba(0, 0, 0, 0.5);
	border-radius: 24px;
	z-index: 1000000;
}

#cookie_notification.show{
	display: flex !important;
	text-align: left;
}

#cookie_notification .left {
	width: calc(100% - 140px);
}

#cookie_notification .heading {
	font-size: 18px;
	margin: 0px 0px 10px 0px;
	text-transform: uppercase;
	color: #000000;
	font-weight: 700;
}

#cookie_notification p a {
	color: var(--accent);
	font-weight: 500;
}

#cookie_notification p {
	margin: 0;
	font-size: 15px;
	text-align: left;
	color: #000000;
	line-height: 1.2;
	width: 100%;
}

#cookie_notification button {
	padding: 0;
	border: none;
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
	text-transform: uppercase;
	line-height: normal;
	height: 37px;
	background: var(--accent);
	width: 125px;
	margin: 15px 0px 0px 0px;
	border-radius: 8px;
	transition: 0.2s linear;
	cursor: pointer;
}

#cookie_notification button:hover {
	background-color: var(--accent2);
	color: #ffffff;
}

.toolBar {
	position: fixed;
	display: none;
	justify-content: space-between;
	width: 100%;
	left: 0;
	bottom: 0;
	padding: 10px 5px;
	box-shadow: 0px -10px 50px 0px #00000054;
	background: #ffffff;
	z-index: 111;
}

.toolBar a {
	width: 24%;
}

.toolBarItem {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.price .toolBarItem i:before {
	content: '1';
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	right: -15px;
	top: -5px;
	border-radius: 50%;
	font-style: normal;
	font-size: 13px;
	background: #3d4b52;
	color: #ffffff;
}

.toolBarItem img {
	width: 25px;
	height: 25px;
	object-fit: contain;
	margin-bottom: 5px;
}

.toolBarItem i {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.toolBar a:nth-child(1) .toolBarItem i {
	background: url(images/informatsiya.svg) center / contain no-repeat;
}

.toolBar a:nth-child(2) .toolBarItem i {
	background: url(images/video.svg) center / contain no-repeat;
}

.toolBar a:nth-of-type(3) .toolBarItem i {
	background: url(images/rubl.svg) center / contain no-repeat;
}

.toolBar a:nth-of-type(4) .toolBarItem i {
	background: url(images/document.svg) center / contain no-repeat;
}

.toolBarItem p {
	color: #403c4e;
	font-size: 12px;
	font-weight: 500;
	text-align: center;
	margin-top: 5px;
}

.kolibri .__jivoMobileButton {
	bottom: 50px;
}

.basketFooter {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	bottom: 60px;
	right: 23px;
	padding: 10px;
	z-index: 999;
	cursor: pointer;
	transition: 0.5s ease-out;
	background-color: #ffffff;
	color: #000000;
	box-shadow: 0px 0px 15px 2px #0000001a;
	border-radius: 50%;
	display: none;
}

.basketFooter .count {
    position: absolute;
    top: -9px;
    left: -8px;
    font-size: 13px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    line-height: 28px;
    text-align: center;
    overflow: hidden;
    background: #11645a;
    color: #ffffff;
    box-shadow: 0px 0px 15px 2px #0000001a;
}

.basketFooter i {
	color: #c4a24b;
	font-size: 25px;
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 0;
	position: relative;
}

.step {
	padding: 32px 28px;
	position: relative;
	border-right: 1px solid var(--border);
}

.step:last-child {
	border-right: none;
}

.step-num {
	font-size: 48px;
	font-weight: 800;
	color: rgba(212, 82, 42, 0.12);
	line-height: 1;
	margin-bottom: 10px;
}

.step-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 8px;
}

.step-desc {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.6;
}


/* BREADCRUMB */
.breadcrumb {
	padding: 14px 24px;
	background: var(--silver);
	border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--muted);
	flex-wrap: wrap;
}

.breadcrumb a {
	color: var(--muted);
	text-decoration: none;
}

.breadcrumb a:hover {
	color: var(--accent);
}

.breadcrumb-sep {
	opacity: 0.4;
}

/* PRODUCT MAIN */
.product-main {
	padding: 48px 24px;
}

.product-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 40px;
}

/* Gallery */
.gallery {}

.gallery-main-img {
	border-radius: var(--r-lg);
	height: 440px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border);
	margin-bottom: 12px;
	position: relative;
}

.gallery-main-img a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.gallery-main-img a img {
	display: flex;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.gallery-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--teal);
	color: white;
	font-size: 11px;
	font-weight: 700;
	padding: 5px 10px;
	border-radius: 6px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.gallery-placeholder {
	font-size: 80px;
	opacity: 0.2;
}

.gallery-thumbs {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.gallery-thumb {
	width: 80px;
	height: 80px;
	border-radius: 8px;
	border: 2px solid var(--silver);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	opacity: 0.4;
	transition: all 0.2s;
	overflow: hidden;
}

.gallery-thumb:hover {
	opacity: 0.8;
	border-color: var(--border);
}

.gallery-thumb.active {
	border-color: var(--accent);
	opacity: 1;
}

.gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Sidebar */
.product-sidebar {}

.product-breadtag {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--teal);
	margin-bottom: 18px;
}

.product-h1 {
	font-size: 26px;
	font-weight: 700;
	color: var(--text);
	line-height: 1.2;
	margin-bottom: 16px;
}

.product-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 20px;
}

.pbadge {
	font-size: 11px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 20px;
}

.pbadge-green {
	background: rgba(26, 122, 110, 0.1);
	color: var(--teal);
	border: 1px solid rgba(26, 122, 110, 0.2);
}

.pbadge-blue {
	background: rgba(11, 27, 43, 0.06);
	color: var(--navy);
	border: 1px solid rgba(11, 27, 43, 0.12);
}

.price-block {
	background: var(--silver);
	border-radius: var(--r-lg);
	padding: 24px;
	margin-bottom: 20px;
}

.price-block-label {
	font-size: 12px;
	color: var(--muted);
	margin-bottom: 4px;
}

.price-main {
	font-size: 32px;
	font-weight: 600;
	color: #d4522a;
}

.price-from {
	font-size: 14px;
	font-weight: 500;
	color: var(--muted);
}

.price-sub {
	font-size: 13px;
	color: var(--muted);
	margin-top: 8px;
	line-height: 1.5;
}

.price-sub strong {
	color: var(--text);
}

.product-cta {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
}

/* DOCS */
.docs-section {
	background: var(--silver);
}

.docs-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.docs-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.doc-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: white;
	border-radius: var(--r);
	padding: 18px;
	border: 1px solid var(--border);
	transition: all 0.2s;
	cursor: pointer;
	text-decoration: none;
	color: var(--text);
}

.doc-item:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
	border-color: var(--accent);
}

.doc-item-icon {
	font-size: 28px;
	flex-shrink: 0;
	display: none;
}

.doc-item-title {
	font-size: 16px;
	font-weight: 500;
}

.doc-item-desc {
	font-size: 12px;
	color: var(--muted);
	margin-top: 3px;
	line-height: 1.4;
}

.doc-item-action {
	margin-left: auto;
	font-size: 12px;
	font-weight: 600;
	color: var(--accent);
	white-space: nowrap;
}

/* TENDERS TABLE */
.tender-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 40px;
}

.tender-table th {
	background: var(--navy);
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 14px 16px;
	text-align: left;
}

.tender-table td {
	padding: 14px 16px;
	font-size: 13px;
	border-bottom: 1px solid var(--border);
	vertical-align: middle;
}

.tender-table tr:hover td {
	background: var(--silver);
}

.tender-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 4px;
	text-transform: uppercase;
}

.tb-won {
	background: rgba(26, 122, 110, 0.1);
	color: var(--teal);
}

.tender-sum {
	font-weight: 700;
	font-size: 14px;
}

/* KP FORM */
.kp-section {
	background: var(--navy);
	padding: 72px 24px;
}

.kp-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 480px;
	gap: 60px;
	align-items: start;
}

.kp-info {}

.kp-title {
	font-size: 34px;
	font-weight: 700;
	color: white;
	margin-bottom: 16px;
	line-height: 1.25;
}

.kp-desc {
	font-size: 15px;
	color: #ffffff;
	line-height: 1.7;
	margin-bottom: 32px;
}

.kp-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.kp-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.kp-check {
	width: 22px;
	height: 22px;
	background: rgba(212, 82, 42, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	flex-shrink: 0;
	margin-top: 1px;
	color: var(--accent2);
	font-weight: 700;
}

.kp-item-text {
	font-size: 14px;
	color: #ffffff;
	line-height: 1.5;
}

.kp-form-card {
	background: white;
	border-radius: var(--r-lg);
	padding: 36px;
}

.kolibri .kp-form-card .b24-form-header {
	display: none;
}

.kolibri .kp-form-card .b24-form-content {
	padding: 0;
}

.kp-form-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 6px;
}

.kp-form-sub {
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 24px;
}

.btn-testdrive-full {
	background: rgba(26, 122, 110, 0.1);
	color: var(--teal);
	border: 1px solid rgba(26, 122, 110, 0.25);
	border-radius: var(--r);
	padding: 14px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s;
	text-align: center;
	text-decoration: none;
	display: block;
}

.btn-testdrive-full:hover {
	background: var(--teal);
	color: white;
}

.btn-outline {
	background: transparent;
	color: var(--text);
	border: 1px solid var(--border);
	border-radius: var(--r);
	padding: 13px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	text-align: center;
	text-decoration: none;
	display: block;
}

.btn-outline:hover {
	border-color: var(--text);
}

.contact-block {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
}

.contact-icon {
	font-size: 18px;
}

.contact-text a {
	color: var(--accent);
	text-decoration: none;
	font-weight: 600;
}

.contact-text .clabel {
	font-size: 12px;
	color: var(--muted);
	display: block;
}

.delivery-block {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.delivery-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--muted);
}

.delivery-icon {
	font-size: 16px;
}

/* TABS */
.product-detail {
	padding: 0 24px 72px;
}

.detail-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.tabs {
	display: flex;
	border-bottom: 2px solid var(--border);
	margin-bottom: 40px;
	gap: 0;
}

.tab {
	padding: 14px 24px;
	font-size: 14px;
	font-weight: 600;
	color: var(--muted);
	cursor: pointer;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	transition: all 0.2s;
	background: none;
	border-top: none;
	border-left: none;
	border-right: none;
	font-family: inherit;
}

.tab:hover {
	color: var(--text);
}

.tab.active {
	color: var(--accent);
	border-bottom-color: var(--accent);
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}

.desc-body h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
	margin-top: 28px;
}

.desc-body h2 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 25px;
	margin-top: 28px;
}

.desc-body h3:first-child,
.desc-body h2:first-child {
	margin-top: 0;
}

.desc-body p {
	font-size: 15px;
	color: var(--text);
	line-height: 1.7;
	margin-bottom: 14px;
}

.desc-body ul {
	padding-left: 20px;
	margin-bottom: 14px;
	list-style-type: disc;
}

.desc-body li {
	font-size: 15px;
	color: var(--text);
	line-height: 1.7;
	margin-bottom: 6px;
	list-style: disc;
}

.desc-body .bsta {
	margin: 0;
	padding: 0;
}

.desc-body .bsta li {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	margin: 0px 1% 10px 1%;
	padding: 10px 15px;
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	position: relative;
	line-height: 1;
}

.desc-body .bsta .imfd {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid #646f75;
	transition: 0.5s;
	transform-origin: left top;
}

.desc-body .bsta .imfd img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transition: 200ms linear;
	position: relative;
}

.desc-body .bsta .imfd:hover {
	transform: scale(4);
	z-index: 1;
	transition: 0.5s;
	background: #ffffff;
	padding: 5px;
}

.desc-body .bsta p {
	display: inline-flex;
	flex-direction: column;
	width: calc(100% - 90px);
	font-weight: 400;
	font-size: 15px;
	line-height: 1;
	color: #000000;
	transition: 0.2s linear;
	margin: 0;
}

.specs-body h3 {
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 12px;
	margin-top: 28px;
}

.specs-body h2 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 25px;
	margin-top: 28px;
}

.specs-body h3:first-child,
.specs-body h2:first-child {
	margin-top: 0;
}

.specs-body p {
	font-size: 15px;
	color: var(--text);
	line-height: 1.7;
	margin-bottom: 14px;
}

.specs-body ul {
	padding-left: 20px;
	margin-bottom: 14px;
}

.specs-body li {
	font-size: 15px;
	color: var(--text);
	line-height: 1.7;
	margin-bottom: 6px;
	list-style: disc;
}

.specs-body table {
	width: 100%;
	border-collapse: collapse;
}

.specs-body th {
	background: var(--silver);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--muted);
	padding: 12px 16px;
	text-align: left;
}

.specs-body td {
	padding: 13px 16px;
	font-size: 14px;
	border-bottom: 1px solid var(--border);
}

.specs-body tr:last-child td {
	border: none;
}

.specs-body td:first-child {
	color: var(--text);
	width: 40%;
	font-weight: 500;
}

.specs-body td:last-child {
	font-weight: 400;
	color: var(--text);
}

.tab-content .features {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 40px 0px 40px 0px;
}

.tab-content .features .left,
.tab-content .features .right {
	width: 49%;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	border: 1px solid var(--border);
	border-radius: 24px;
	overflow: hidden;
}

.tab-content .features .left p {
	color: #ff0d0d;
	font-weight: 600;
	font-size: 26px;
	width: 100%;
	padding: 20px 30px 20px 30px;
}

.tab-content .features .left span {
	color: #000000;
	font-weight: 400;
	font-size: 21px;
	width: 100%;
	padding: 10px 30px 20px 30px;
}

.tab-content .features .left a,
.tab-content .features .right a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.tab-content .features .left a img,
.tab-content .features .right a img {
	display: inline-flex;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.tab-content .features .image {
	display: inline-flex;
	justify-content: center;
}

.tab-content .features .image img {
	display: inline-flex;
	width: 70%;
}

.tab-content .features .blockLeft {
	width: 72%;
	display: inline-flex;
	justify-content: space-between;
}

.tab-content .features .blockLeft img {
	width: 30%;
	height: 100%;
	object-fit: contain;
}

.tab-content .features .blockLeft .text {
	width: 65%;
}

.tab-content .features .text strong {
	display: flex;
	font-weight: 600;
	margin: 15px 0px 5px 0px;
}

.tab-content .features .text span {
	display: flex;
	font-weight: 400;
	margin: 0px 0px 5px 0px;
	font-size: 14px;
}

.tab-content .features .blockRight {
	width: 25%;
	display: inline-flex;
	align-items: center;
	flex-direction: column;
}

.tab-content .features .blockRight img {
	width: 90%;
	height: 100%;
	object-fit: contain;
}

.tab-content .features .blockRight .text {
	width: 100%;
	margin-top: 20px;
	border: 1px solid #eff3f7;
	padding: 0px 20px 15px 20px;
	text-align: center;
}

.tab-content .accessories {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 40px 0px 60px 0px;
}

.tab-content .accessories .left,
.tab-content .accessories .right {
	width: 49%;
	display: inline-flex;
	border: 1px solid #f5f5f5;
}

.tab-content .accessories .left a,
.tab-content .accessories .right a {
	display: inline-flex;
	padding: 20px;
}

.tab-content .accessories .left a img,
.tab-content .accessories .right a img {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.related {
	padding: 72px 24px;
	background: var(--silver);
}

.get_content {
	padding: 72px 24px 0px 24px;
}

.the_content p {
	font-size: 15px;
	color: var(--text);
	line-height: 1.7;
	margin-bottom: 14px;
}

.instruments {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 20px;
}

.instruments .block {
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
	background: white;
	transition: all 0.25s;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.instruments .block:hover {
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
}

.instruments .block .image {
	border-bottom: 1px solid var(--silver);
	height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 24px;
	position: relative;
}

.instruments .block .image a {
	display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.instruments .block .image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.instruments .block .top {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.instruments .block .text {
	padding: 20px;
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
}

.instruments .block .text a {
	font-size: 16px;
	font-weight: 500;
	color: var(--text);
	margin-bottom: 6px;
	line-height: 1.1;
	display: inline-flex;
	text-align: center;
	justify-content: center;
}

.instruments .block .bottom {
	padding: 0px 20px 20px 20px;
}

.bstaLi {
	margin-top: 40px;
}

.bstaLi .block {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	margin: 0px 1% 10px 1%;
	padding: 4px 15px;
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	gap: 10px;
	transition: all 0.25s;
}

.bstaLi .block:hover {
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
}

.bstaLi .block .number {
	display: inline-flex;
	width: 10%;
}

.bstaLi .block .imfd {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid #646f75;
	transition: 0.5s;
	transform-origin: center;
	background: #ffffff;
}

.bstaLi .block .imfd img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transition: 200ms linear;

}

.bstaLi .block .imfd:hover {
	transform: scale(4);
	z-index: 8;
	transition: 0.5s;
	background: #ffffff;
	padding: 5px;
}

.bstaLi .block h3 {
	display: inline-flex;
	flex-direction: column;
	width: calc(60% - 90px);
	font-weight: 400;
	font-size: 15px;
	line-height: 1;
	color: #000000;
	transition: 0.2s linear;
}

.bstaLi .block h3 a {
	color: #000000;
}

.bstaLi .block .price {
	width: 15%;
	color: #fd0d0d;
    font-weight: 500;
    font-size: 15px;
	text-align: center;
}

.rigid-products {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 16px;
	margin-top: 40px;
}

.rigid-card {
	background: white;
	border-radius: var(--r-lg);
	padding: 24px;
	border: 1px solid var(--border);
}

.rigid-card h3 {
	font-size: 18px;
	font-weight: 600;
	color: var(--accent);
	margin-bottom: 16px;
	line-height: 1
}

.rigid-card p {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.5;
	margin-bottom: 16px;
}

.rigid-card ul {
	display: flex;
    flex-direction: column;
    gap: 6px;
}

.rigid-card ul li {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	padding: 6px 0;
	border-bottom: 1px solid var(--border);
}

.rigid-card ul li:last-child {
	border: none;
}

.rigid-card ul li a {
	color: var(--text);
	transition: 0.25s linear;
}

.rigid-card ul li a:hover {
	color: var(--accent);
}

.osnashenie .products-grid {
	margin-bottom: 48px;
}

.osnashenie .section__head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
	padding-bottom: 14px;
	border-bottom: 1px solid #e8e8e8;
}

.osnashenie .section__num {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background: #f4f4f4;
	border: 2px solid var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 600;
	color: var(--accent);
	flex-shrink: 0;
	margin-top: 3px;
}

.osnashenie .section__name {
	font-size: 20px;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 3px;
}

.osnashenie .section__desc {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.5;
}

.docs-block {
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
	background: white;
	padding: 24px 28px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.docs-block__text {}

.docs-block__title {
	font-size: 17px;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 15px;
}

.docs-block__desc {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.55;
	margin-bottom: 30px
}

.docs-block__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 14px;
}

.docs-block__tag {
	font-size: 14px;
	padding: 8px 10px;
	border-radius: 8px;
	background: rgba(26, 122, 110, 0.1);
	color: var(--teal);
	border: 1px solid rgba(26, 122, 110, 0.2);
	font-weight: 600;
}

.pagin {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 40px 0px 0px 0px;
}

.pagin nav {
	flex: 0;
}

.pagination .screen-reader-text {
	display: none;
}

.pagination .nav-links {
	display: flex;
	align-items: center;
}

.pagin a {
	color: var(--text);
	font-size: 14px;
	margin: 0px 10px;
	font-weight: 400;
}

.pagin a:hover {
	color: var(--muted);
}

.pagin span {
	color: var(--accent);
	font-size: 14px;
	margin: 0px 10px;
}

.articles {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 20px;
}

.articles .block {
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
	background: white;
	transition: all 0.25s;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.articles .block:hover {
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
}

.articles .block .text {
	padding: 20px;
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
}

.articles .block .text a {
	font-size: 15px;
	font-weight: 500;
	color: var(--text);
	margin-bottom: 6px;
	line-height: 1.1;
	display: inline-flex;
	text-align: center;
	justify-content: center;
}

.articles .block .bottom {
	padding: 0px 20px 20px 20px;
}

.news {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 20px;
}

.news .block {
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
	background: white;
	transition: all 0.25s;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.news .block:hover {
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
}

.news .block .image {
	border-bottom: 1px solid var(--silver);
	height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.news .block .image a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
}

.news .block .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: 0.3s linear;
	position: relative;
}

.news .block .top {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.news .block .text {
	padding: 20px;
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
}

.news .block .text a {
	font-size: 15px;
	font-weight: 500;
	color: var(--text);
	margin-bottom: 6px;
	line-height: 1.1;
	display: inline-flex;
	text-align: center;
	justify-content: center;
}

.news .block .bottom {
	padding: 0px 20px 20px 20px;
}

.newsInfo {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin: 40px 0px 0px 0px;
}

.newsInfo .textArt {
	margin-top: 0;
}

.newsInfo .textArt h3 {
	margin: 20px 0px
}

.newsInfo .videosNew {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.newsInfo .videosNew .block {
	width: 100%;
}

.newsInfo .videosNew video {
	box-shadow: 0px 0px 20px 0px #0009180d;
	border-radius: 8px;
	height: 250px;
	width: 100%;
	object-fit: cover;
}

.cooperation {
	background: #eeeeee36;
	padding: 70px 24px;
}

.cooperation .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
}

.cooperation .image {
	width: 20%;
}

.cooperation .image img {
	width: 100%;
	border-radius: 24px;
	box-shadow: 0px 0px 20px 0px #0009180d;
}

.cooperation .right {
	width: 57%;
	padding-left: 5%;
}

.cooperation .section-title {
	margin-bottom: 40px
}

.cooperation .right p {
	line-height: 1.4;
	font-weight: 400;
	font-size: 15px;
	margin: 10px 0px 20px 0px;
}

.cooperation .right h3 {
	display: flex;
	line-height: 1.4;
	margin-bottom: 30px;
	font-size: 15px;
	font-weight: 400;
}

.cooperation .right ul {
	margin-bottom: 20px
}

.cooperation .right li {
	line-height: 1.4;
	font-weight: 400;
	font-size: 15px;
	padding-left: 40px;
	position: relative;
	margin-bottom: 10px;
}

.cooperation .right li:before {
	content: '';
	position: absolute;
	display: inline-block;
	left: 20px;
	top: 8px;
	width: 6px;
	height: 6px;
	background: #d4522a;
	border-radius: 50%;
}

.detail-inner .ctaWrap {
	margin-top: 40px;
}

.ctaWrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
	background: #fbfbf8;
	padding: 25px 35px;
}

.ctaWrap .ctaLeft {
	width: 60%;
}

.ctaWrap .ctaLeft .ctaLabel {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 10px;
}

.ctaWrap .ctaLeft .ctaTitle {
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 700;
	color: var(--text);
	line-height: 1;
}

.ctaWrap .ctaLeft .ctaDesc {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.55;
	margin-top: 20px
}

.ctaWrap .ctaRight {
	width: 35%;
}

.ctaWrap .ctaRight .b24-form-header {
	display: none;
}

.kolibri .ctaWrap .b24-form-control-icon-after .b24-form-control {
	background: #ffffff;
}

.ctaWrap .ctaRight .b24-form-field-email,
.ctaWrap .ctaRight .b24-form-field-string {
	display: none;
}

.st-vr .section-header {
	display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.st-vr__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.st-vr__rating-num {
    font-size: 40px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.st-vr__stars {
    display: block;
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.st-vr__rating-count {
    display: block;
    font-size: 13px;
    color: var(--muted);
}

.st-vr__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.st-vr__card {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s, transform 0.2s;
}

.st-vr__card:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,0.10);
	transform: translateY(-2px);
}

/* Видео */
.st-vr__video-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #0d1b26;
	cursor: pointer;
	overflow: hidden;
}

.st-vr__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.st-vr__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.30);
	transition: background 0.2s, opacity 0.2s;
}

.st-vr__video-wrap:hover .st-vr__overlay {
	background: rgba(0, 0, 0, 0.15);
}

.st-vr__overlay--hidden {
	opacity: 0;
	pointer-events: none;
}

.st-vr__play {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(255,255,255,0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.15s;
}

.st-vr__video-wrap:hover .st-vr__play {
	transform: scale(1.10);
}

.st-vr__play svg {
	width: 22px;
	height: 22px;
	fill: #0F6E56;
	margin-left: 3px;
}

.st-vr__info {
	padding: 14px 16px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.st-vr__org {
	font-size: 14px;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0;
	line-height: 1.3;
}

.st-vr__meta {
	display: flex;
	flex-wrap: wrap;
}

.st-vr__city {
	font-size: 12px;
	color: #999;
	width: 100%;
	margin-bottom: 7px;
}

.st-vr__dot {
	font-size: 10px;
	color: #ccc;
}

.st-vr__spec {
	font-size: 11px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 20px;
	background: rgba(26, 122, 110, 0.1);
	color: var(--teal);
	border: 1px solid rgba(26, 122, 110, 0.2);
	display: inline-flex;
}

.st-vr__card-stars {
	color: var(--gold);
	font-size: 13px;
	letter-spacing: 1px;
	margin-top: 2px;
}

.st-vr__footer {
	margin-top: 28px;
	padding: 16px 20px;
	background: linear-gradient(135deg, var(--teal) 0%, #0E5C53 100%);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.st-vr__footer-text {
	font-size: 14px;
	color: #ffffff;
	margin: 0;
	line-height: 1.5;
	display: inline-flex;
	align-items: center;
}

.st-vr__footer-text svg {
	fill: #ffffff;
	width: 20px;
	height: 20px;
}

.st-vr__cta {
	background: white;
	color: var(--teal);
	border: none;
	border-radius: var(--r);
	padding: 16px 32px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.2s;
	white-space: nowrap;
	flex-shrink: 0;
}

.st-vr__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1150px) {
	header nav {
		display: flex;
		flex: 1;
		justify-content: flex-end;
		margin-right: 0;
	}

	header nav .toggle {
		display: inline-flex;
		align-items: center;
		width: 30px;
		height: 22px;
		transition: 0.3s linear;
		opacity: 1;
		cursor: pointer;
	}
	
	header nav .toggle .icon {
		display: inline-flex;
		transition-duration: 0.5s;
		position: relative;
		height: 1px;
		width: 30px;
		background-color: #ffffff;
	}

	header nav .toggle .icon:before,
	header nav .toggle .icon:after {
		content: "";
		position: absolute;
		width: 30px;
		height: 1px;
		background-color: #ffffff;
		transition-duration: 0.5s;
	}
	
	header nav .toggle .icon:before {
		top: -8px;
	}
	
	header nav .toggle .icon:after {
		top: 8px;
	}

	header nav .toggle:hover {
		opacity: 0.4;
	}

	header nav .toggle.open {
		opacity: 0;
	}

	header nav .toggle_close {
		display: inline-flex;
		align-items: center;
		position: absolute;
		width: 30px;
		height: 30px;
		right: 15px;
		top: 15px;
		opacity: 0.5;
		cursor: pointer;
		transition: 0.3s linear;
	}

	header nav .toggle_close .icon {
		display: inline-flex;
		width: 30px;
		height: 30px;
	}

	header nav .toggle_close .icon:before,
	header nav .toggle_close .icon:after {
		content: '';
		position: absolute;
		height: 33px;
		width: 2px;
		left: 15px;
		background-color: #ffffff;
	}
	
	header nav .toggle_close .icon:before {
		transform: rotateZ(45deg);
	}
	
	header nav .toggle_close .icon:after {
		transform: rotateZ(-45deg);
	}
	
	header nav .toggle_close:hover {
		opacity: 1;
	}

	header nav .popout {
		flex-direction: column;
		align-items: flex-start;
		position: fixed;
		height: 100vh;
		width: 250px;
		padding: 60px 0px 0px 0px;
		background: rgb(61 75 82 / 94%);
		top: 0;
		left: -100%;
		overflow: auto;
		z-index: 999;
	}

	header nav .popout .display {
		flex-direction: column;
	}

	header nav .popout a {
		padding: 10px 20px;
		width: 100%;
		margin: 0;
		display: flex;
	}

	header nav .popout a:before {
		content: none;
	}
}

@media (max-width: 900px) {
	.product-inner {
		grid-template-columns: 1fr;
	}

	.gallery-main-img {
		height: 280px;
	}
	
	.st-vr__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.hero-grid {
		grid-template-columns: 1fr;
	}

	.hero-card {
		display: none;
	}

	nav {
		display: none;
	}

	.gov-inner {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.cta-row {
		flex-direction: column;
	}

	.hero-stats {
		gap: 20px;
	}

	.trust-item {
		padding: 20px 0px;
		border-bottom: 1px solid var(--border);
	}

	.trust-item:nth-child(2) {
		border-right: none;
	}

	.trust-item:nth-child(3),
	.trust-item:last-child {
		border-bottom: none;
	}

	.trust-item-title {
		font-size: 20px;
	}

	.header-inner {
		height: auto;
		padding-bottom: 10px;
		gap: 0;
	}

	.header-contacts {
		width: 100%;
		justify-content: space-between;
	}

	.phone {
		font-size: 19px
	}

	.btn-header {
		font-size: 15px;
		width: 48%;
		text-align: center;
	}

	footer .leftSide {
		width: 100%;
		border-right: none;
		padding: 40px 0px 0px 0px;
	}

	footer .topSide {
		justify-content: center;
	}

	footer .rightSide {
		width: 100%;
		padding: 0;
	}

	footer .rightSide .footerMenu {
		flex-wrap: wrap-reverse;
	}

	footer .rightSide .footerMenu .block {
		width: 100%;
	}

	.docs-intro {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.tender-table thead {
		display: none;
	}

	.tender-table tbody tr {
		display: block;
		margin-bottom: 20px;
		border: 1px solid #e0e0e0;
		border-radius: 8px;
		padding: 15px;
		background: #fff;
	}

	.tender-table tbody td {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 8px 0;
		border-bottom: 1px solid #f0f0f0;
		font-size: 14px;
		text-align: right;
	}

	.tender-table tbody td:last-child {
		border-bottom: none;
	}

	.tender-table tbody td::before {
		content: attr(data-label);
		font-weight: 600;
		color: #555;
		min-width: 120px;
		text-align: left;
	}

	.tender-table .tender-sum::before {
		font-weight: 700;
		color: var(--navy);
	}

	.tender-table tbody tr:last-child {
		margin-bottom: 0;
	}

	.kp-inner {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.trust-bar-inner {
		grid-template-columns: repeat(auto-fill, minmax(241px, 1fr));
	}

	.catCon .left,
	.catCon .map {
		width: 100%;
	}

	.newsInfo {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.cooperation .image {
		width: 49%;
		order: 2;
	}

	.cooperation .right {
		width: 100%;
		padding: 0px;
		margin-bottom: 30px;
	}
}

@media all and (max-width: 600px) {
	.trust-bar-inner {
		grid-template-columns: repeat(auto-fill, minmax(183px, 1fr));
	}
	
	#cookie_notification {
		width: calc(100% - 20px);
		align-items: center;
		padding: 20px 20px 20px 20px;
		flex-wrap: wrap;
	}
	
	#cookie_notification .left {
		width: 83%;
	}
	
	.st-vr__grid {
		grid-template-columns: 1fr;
	}
	
	.st-vr__head {
		flex-direction: column;
		align-items: flex-start;
	}
}