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

html {
 scroll-behavior: smooth;
}

body {
 font-family: 'Unbounded', sans-serif;
 color: #000;
 background-color: #fff;
 -webkit-font-smoothing: antialiased;
}

a {
 text-decoration: none;
 color: inherit;
}

ul, li {
 list-style: none;
}

button {
 font-family: inherit;
 cursor: pointer;
 border: none;
 background: none;
 color: inherit;
}

img {
 display: block;
}

a.hero-cta {
 display: inline-flex;
}

/* ======================== */
/* CONTAINER */
/* ======================== */
.container {
 max-width: 1440px;
 margin: 0 auto;
 padding: 0 clamp(16px, 3vw, 40px);
}

/* ======================== */
/* HEADER */
/* ======================== */
.header {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 z-index: 1000;
 padding: 16px 0;
}

.header-inner {
 position: relative;
 border-radius: 20px;
 padding: 0 clamp(12px, 1.5vw, 20px);
 height: clamp(56px, 6.1vw, 88px);
 display: flex;
 align-items: center;
 gap: clamp(10px, 1.2vw, 24px);
 z-index: 1;
}

.header-inner::before {
 content: '';
 position: absolute;
 inset: 0;
 background: rgba(225, 225, 225, 0.7);
 backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
 border-radius: inherit;
 z-index: -1;
}

.header-logo {
 flex-shrink: 0;
 display: flex;
 align-items: center;
}

.header-logo img {
 height: clamp(36px, 3.2vw, 46px);
 width: auto;
 flex-shrink: 0;
}

/* ======================== */
/* ЕДИНОЕ МЕНЮ (ДЕСКТОП) */
/* ======================== */
.nav-wrapper {
 display: flex;
 align-items: center;
 flex: 1;
 justify-content: flex-start;
}

.mobile-nav-header,
.mobile-cta {
 display: none;
}

.main-nav {
 display: flex;
 align-items: center;
 gap: clamp(10px, 1.2vw, 24px);
}

.main-nav > li > a {
 font-size: clamp(12px, 1.1vw, 16px);
 font-weight: 400;
 white-space: nowrap;
 display: flex;
 align-items: center;
 gap: 4px;
}

.dropdown {
 position: relative;
}

.dropdown-toggle {
 font-size: clamp(12px, 1.1vw, 16px);
 font-weight: 400;
 white-space: nowrap;
 display: flex;
 align-items: center;
 gap: 4px;
 padding: 8px 0;
 width: 100%;
}

.dropdown-toggle svg {
 width: 14px;
 height: 14px;
 flex-shrink: 0;
 transition: transform 0.3s ease;
}

.dropdown-menu {
 position: absolute;
 top: 100%;
 left: 50%;
 transform: translateX(-50%);
 padding-top: 8px;
 z-index: 100;
 display: none;
}

.dropdown-menu-inner {
 background: #ffffffe0;
 border-radius: 20px;
 padding: 16px 20px;
 min-width: clamp(180px, 17vw, 240px);
 box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
 display: flex;
 flex-direction: column;
 gap: 10px;
 backdrop-filter: blur(10px);
}

.dropdown-menu-inner a {
 font-size: clamp(12px, 1.1vw, 16px);
 font-weight: 400;
 white-space: nowrap;
 padding: 6px 0;
 transition: color 0.2s;
}

.dropdown-menu-inner a:hover {
 color: #888;
}

@media (min-width: 901px) {
 .dropdown:hover .dropdown-menu {
 display: block;
 }
 
 .dropdown:hover .dropdown-toggle svg {
 transform: rotate(180deg);
 }
}

/* ======================== */
/* КНОПКИ ДЕЙСТВИЙ */
/* ======================== */
.header-actions {
 display: flex;
 align-items: center;
 gap: clamp(10px, 1.2vw, 24px);
 flex-shrink: 0;
}

.header-phone {
 font-size: clamp(12px, 1.2vw, 16px);
 font-weight: 700;
 white-space: nowrap;
}

.header-cta {
 display: inline-flex;
 background: #CAFF3B;
 color: #000;
 border-radius: 14px;
 padding: clamp(6px, 0.7vw, 10px) clamp(10px, 1.2vw, 18px);
 font-size: clamp(10px, 0.9vw, 13px);
 font-weight: 500;
 line-height: 1.3;
 text-align: right;
 white-space: nowrap;
}

.header-burger {
 display: none;
 width: 32px;
 height: 32px;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
}

.header-burger svg {
 width: 28px;
 height: 28px;
}

/* ======================== */
/* HERO */
/* ======================== */
.hero {
 background: url('/img/bg.jpg') no-repeat center bottom;
 background-size: cover;
 background-color: #f0f0f0;
 max-height: 900px;
 display: flex;
 flex-direction: column;
 position: relative;
 z-index: 999;
 box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-content {
 flex: 1;
 display: grid;
 grid-template-columns: repeat(12, 1fr);
 gap: 20px;
 align-content: end;
 padding-bottom: clamp(30px, 6.7vw, 96px);
 padding-top: 210px;
}

.hero-title {
 grid-column: 1 / 6;
 font-size: clamp(24px, 2.6vw, 37px);
 font-weight: 700;
 text-transform: uppercase;
 line-height: 1.15;
}

.hero-subtitle {
 grid-column: 1 / 6;
 font-size: clamp(13px, 1.1vw, 16px);
 font-weight: 400;
 line-height: 1.5;
 margin-top: 8px;
}

.hero-bottom {
 grid-column: 1 / -1;
 display: grid;
 grid-template-columns: repeat(12, 1fr);
 gap: 20px;
 align-items: end;
 margin-top: 24px;
}

.hero-stats {
 grid-column: 1 / 6;
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 20px;
}

.stat-card {
 border-radius: 20px;
 padding: clamp(20px, 3.5vw, 50px) clamp(12px, 2.1vw, 30px);
 box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stat-accent {
 background: #CAFF3B;
}

.stat-white {
 background: #fff;
}

.stat-number {
 font-size: clamp(28px, 2.8vw, 40px);
 font-weight: 900;
 text-transform: uppercase;
 line-height: 1.1;
 margin-bottom: 8px;
}

.stat-label {
 font-size: clamp(12px, 1.1vw, 16px);
 font-weight: 400;
 line-height: 1.3;
}

.hero-cta-wrapper {
 grid-column: 9 / 13;
 display: flex;
 align-items: flex-end;
 justify-content: stretch;
}

.hero-cta {
 width: 100%;
 height: clamp(64px, 5.4vw, 78px);
 display: flex;
 align-items: center;
 justify-content: space-between;
 background: #000;
 color: #fff;
 font-size: clamp(18px, 1.8vw, 26px);
 font-weight: 700;
 text-transform: uppercase;
 border-radius: 100px;
 padding: 0 clamp(24px, 2.8vw, 40px);
 white-space: nowrap;
 transition: box-shadow 0.5s ease;
}

.hero-cta:hover {
 box-shadow: 0 0 30px rgba(202, 255, 59, 0.6), 0 0 60px rgba(202, 255, 59, 0.3);
}

.hero-cta svg {
 width: clamp(32px, 3vw, 40px);
 height: clamp(32px, 3vw, 40px);
 flex-shrink: 0;
 animation: arrow-bounce 1.9s ease-in-out infinite;
}

@keyframes arrow-bounce {
 0%, 100% { transform: translateX(0); }
 50% { transform: translateX(8px); }
}

.ihero {
 background: var(--hero-bg) no-repeat center bottom;
 background-color: #eff0ee;
 min-height: clamp(420px, 46vw, 600px);
 display: flex;
 flex-direction: column;
 box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.vst {
 flex: 1;
 display: grid;
 grid-template-columns: repeat(12, 1fr);
 gap: 20px;
 align-content: end;
 padding-bottom: clamp(30px, 6.7vw, 60px);
 padding-top: clamp(120px, 14vw, 180px);
}
.vtitle {
 grid-column: 1 / 6;
 font-size: clamp(24px, 2.6vw, 37px);
 font-weight: 700;
 text-transform: uppercase;
 line-height: 1.15;
}
.vsubtitle {
 grid-column: 1 / 6;
 font-size: clamp(13px, 1.1vw, 16px);
 font-weight: 400;
 line-height: 1.5;
 margin-top: 8px;
}

.vcta {
 grid-column: 1 / 6;
 align-self: end;
 display: flex;
 align-items: end;
}
.sled {display: flex;align-items: center;flex-wrap: wrap;font-size: 14px;padding: clamp(15px, 4vw, 40px) 0;color: #787878;font-weight: 300;}
.sled a {text-decoration: none;display: flex;align-items: center;}
.sled a::after {content: "›";margin: 0 10px;pointer-events: none;}
.sled span {}


/* ======================== */
/* фильтр */
/* ======================== */
.filters {
 display: flex;
 justify-content: left;
 flex-wrap: wrap;
 gap: 10px;
 margin-bottom: 38px;
}

.filter-btn {
 padding: 11px 20px;
 cursor: pointer;
 border: 1px solid #ddd;
 background: #f7f7f7;
 color: #222;
 border-radius: 999px;
 font-size: 15px;
 font-weight: 600;
 line-height: 1.2;
 transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-btn:hover {
 background: #efefef;
 border-color: #ccc;
}

.filter-btn.active {
 background: #222;
 color: #fff;
 border-color: #222;
}

/* Галерея */
.gallery {
 display: grid;
 grid-template-columns: repeat(12, 1fr);
 gap: 12px;
}

/* Блоки категорий не ломают сетку */
.gallery > div {
 display: contents;
}

/* Скрытие категории */
.gallery > div.hidden-category {
 display: none !important;
}

/* Ссылки-карточки */
.gallery a.ulightbox {
 grid-column: span 3;
 display: block;
 aspect-ratio: 1 / 1;
 border-radius: 14px;
 overflow: hidden;
 background: #f3f3f3;
 text-decoration: none !important;
 border: none !important;
 outline: none;
 box-shadow: none;
 transform: translateY(0);
 transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Убираем подчёркивание у ссылок на всех состояниях */
.gallery a.ulightbox:hover,
.gallery a.ulightbox:focus,
.gallery a.ulightbox:active,
.gallery a.ulightbox:visited {
 text-decoration: none !important;
 border: none !important;
 outline: none;
}

/* Картинки */
.gallery a.ulightbox img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
 border: none !important;
 transition: transform 0.25s ease;
}

/* Плавная анимация при наведении */
.gallery a.ulightbox:hover {
 transform: translateY(-3px);
 box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.gallery a.ulightbox:hover img {
 transform: scale(1.04);
}

/* ======================== */
/* НАШИ КЛИЕНТЫ */
/* ======================== */
.clients {
 padding: clamp(50px, 6vw, 100px) 0;
}

.clients h2 {
 font-size: clamp(28px, 4vw, 46px);
 font-weight: 700;
 text-transform: uppercase;
 margin-bottom: clamp(30px, 4vw, 50px);
 line-height: 1.1;
}

.slider-clients {
 overflow: hidden;
 mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
 -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.track-clients {
 display: flex;
 align-items: center;
 gap: 40px;
 width: max-content;
 animation: scroll-clients 20s linear infinite;
 will-change: transform;
}

.track-clients:hover {
 animation-play-state: paused;
}

.track-clients img {
 height: 80px;
 object-fit: contain;
 cursor: pointer;
 transition: transform 0.3s;
 transform: translateZ(0);
 backface-visibility: hidden;
}

.track-clients img:hover {
 transform: scale(1.1) translateZ(0);
}

@keyframes scroll-clients {
 to { transform: translate3d(calc(-50% - 20px), 0, 0); }
}

/* ======================== */
/* EQUIPMENT SECTION */
/* ======================== */
.equipment {
 padding-top: clamp(50px, 6vw, 80px);
}

.equipmentgrid {
 display: grid;
 grid-template-columns: repeat(12, 1fr);
 gap: 20px;
 align-items: stretch;
}

.equipmentleft {
 grid-column: 1 / 6;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
}

.equipmentright {
 grid-column: 6 / 13;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
}

.equipmenttext {
 display: flex;
 flex-direction: column;
 gap: 30px;
 margin-bottom: 40px;
}

.equipmenttext h2 {
 font-size: 46px;
 font-weight: 700;
 max-width: 480px;
}

.equipmenttext p:first-of-type {
 font-size: 26px;
 font-weight: 700;
 line-height: 1.25;
 max-width: 450px;
}

.equipmenttext p:last-of-type {
 font-size: 26px;
 font-weight: 400;
 line-height: 1.3;
 max-width: 440px;
}

.equipment-img-wrapper {
 border-radius: 16px;
 overflow: hidden;
 width: 100%;
}

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

.equipment-img-small {
 aspect-ratio: 4 / 3.8;
 margin-top: auto;
}

.equipment-img-large {
 height: 100%;
 min-height: 400px;
 margin-bottom: 20px;
}

.equipment-btn {
 display: flex;
 align-items: center;
 justify-content: center;
 background-color: #CAFF3B;
 color: #000000;
 text-decoration: none;
 padding: 30px 40px;
 border-radius: 16px;
 font-size: 22px;
 font-weight: 900;
 text-transform: uppercase;
 position: relative;
 transition: background-color 0.3s ease, transform 0.2s ease;
 width: 100%;
 text-align: center;
}

.equipment-btn:hover {
 background-color: #b8e600;
 transform: translateY(-2px);
}

.equipment-btn span {
 position: relative;
 z-index: 2;
}

.equipment-btn svg {
 position: absolute;
 right: 40px;
 top: 50%;
 transform: translateY(-50%);
 width: 40px;
 height: 40px;
}

/* ======================== */
/* CATALOG SECTION */
/* ======================== */
.catalog {
 padding: clamp(50px, 6vw, 80px) 0;
}

.catalog__header {
 margin-bottom: clamp(30px, 4vw, 40px);
}

.catalog__title {
 font-size: clamp(28px, 4vw, 46px);
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: -0.02em;
 margin-bottom: clamp(16px, 2vw, 20px);
}

.catalog__desc {
 font-size: clamp(14px, 1.5vw, 16px);
 font-weight: 400;
 line-height: 1.4;
 color: #222;
}

.catalog__grid {
 display: grid;
 grid-template-columns: repeat(12, 1fr);
 gap: 20px;
}

.catalog-card {
 position: relative;
 background-color: #EEEEEE;
 border-radius: 20px;
 overflow: hidden;
 display: block;
 text-decoration: none;
 color: #000;
 height: clamp(300px, 35vw, 446px);
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalog-card:hover {
 transform: translateY(-4px);
 box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.catalog-card__name {
 position: absolute;
 top: clamp(16px, 2vw, 24px);
 left: clamp(16px, 2vw, 24px);
 font-size: clamp(14px, 1.5vw, 16px);
 font-weight: 400;
 z-index: 2;
 max-width: 70%;
}

.catalog-card__price {
 position: absolute;
 bottom: clamp(16px, 2vw, 24px);
 right: clamp(16px, 2vw, 24px);
 background-color: #CAFF3B;
 padding: clamp(8px, 1vw, 10px) clamp(16px, 2vw, 20px);
 border-radius: 16px;
 font-size: clamp(14px, 1.5vw, 16px);
 font-weight: 400;
 z-index: 2;
}

.catalog-card__img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
}

.span-4 { grid-column: span 4; }
.span-6 { grid-column: span 6; }
.span-3 { grid-column: span 3; }

.catalog-banner {
 grid-column: span 12;
 display: flex;
 background-color: #EEEEEE;
 border-radius: 20px;
 min-height: 320px;
}

.catalog-banner__content {
 flex: 0 0 50%;
 position: relative;
 padding: clamp(20px, 3vw, 32px) clamp(20px, 3vw, 32px) clamp(70px, 6vw, 80px) clamp(20px, 3vw, 32px);
 display: flex;
 flex-direction: column;
 justify-content: center;
}

.catalog-banner__title {
 font-size: clamp(18px, 2vw, 22px);
 font-weight: 400;
 margin-bottom: 16px;
 line-height: 1.2;
}

.catalog-banner__text {
 font-size: clamp(14px, 1.5vw, 16px);
 margin-bottom: 12px;
 font-weight: 300;
}

.catalog-banner__price {
 position: absolute;
 bottom: clamp(16px, 2vw, 24px);
 right: clamp(16px, 2vw, 24px);
 background-color: #CAFF3B;
 padding: clamp(8px, 1vw, 10px) clamp(16px, 2vw, 20px);
 border-radius: 16px;
 font-size: clamp(14px, 1.5vw, 16px);
 font-weight: 400;
 z-index: 2;
}

.catalog-banner__image-wrapper {
 flex: 0 0 50%;
 position: relative;
}

.catalog-banner__image-wrapper img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 position: absolute;
 top: 0;
 left: 0;
 border-radius: 0 20px 20px 0;
}

/* ======================== */
/* WORKS SECTION */
/* ======================== */
#works {
 padding: clamp(50px, 6vw, 80px) 0;
}

#works .top {
 display: flex;
 justify-content: space-between;
 align-items: flex-end;
 margin-bottom: clamp(24px, 3.5vw, 40px);
}

#works h2 {
 font-size: clamp(28px, 4vw, 46px);
 font-weight: 700;
 line-height: 1;
 text-transform: uppercase;
}

#works .nav {
 display: flex;
 gap: clamp(10px, 1.5vw, 20px);
}

#works button {
 background: none;
 border: none;
 cursor: pointer;
 color: #000;
 width: clamp(36px, 4vw, 48px);
 height: clamp(36px, 4vw, 48px);
 display: grid;
 place-items: center;
 transition: 0.2s;
}

#works button svg {
 width: clamp(20px, 2.5vw, 28px);
 height: clamp(20px, 2.5vw, 28px);
}

#works button:hover {
 opacity: 0.5;
 transform: scale(1.05);
}

#works .slider {
 position: relative;
 --offset: calc(max(0px, (100% - 1440px) / 2) + clamp(16px, 3vw, 40px));
 --gap: 20px;
}

#works .track {
 display: flex;
 overflow-x: auto;
 scroll-behavior: smooth;
 scroll-snap-type: x mandatory;
 scroll-padding-left: var(--offset);
 scrollbar-width: none;
}

#works .track::-webkit-scrollbar {
 display: none;
}

#works .track::before {
 content: '';
 flex: 0 0 var(--offset);
}

#works .track::after {
 content: '';
 flex: 0 0 max(0px, calc(var(--offset) - var(--gap)));
}

#works .track img {
 flex: 0 0 clamp(240px, 25vw, 325px);
 width: clamp(240px, 25vw, 325px);
 aspect-ratio: 4 / 5.36;
 height: auto;
 object-fit: cover;
 margin-right: var(--gap);
 scroll-snap-align: start;
 background: #eee;
 border-radius: 8px;
 display: block;
}

#works .fade {
 position: absolute;
 top: 0;
 right: 0;
 bottom: 0;
 width: var(--offset);
 background: linear-gradient(to right, transparent, white 90%);
 pointer-events: none;
}

@media (max-width: 480px) {
 #works .nav {
 display: none;
 }
}

/* ======================== */
/* DARK PROMO СЕКЦИЯ */
/* ======================== */
.dark-promo {
 background-color: #000000;
 color: #ffffff;
 padding: clamp(60px, 8vw, 100px) 0;
}

.promo-row {
 display: flex;
 align-items: stretch;
 gap: clamp(30px, 4vw, 60px);
 margin-bottom: clamp(60px, 8vw, 100px);
}

.promo-row:last-child {
 margin-bottom: 0;
}

.promo-row.reverse {
 flex-direction: row-reverse;
}

.promotextcol {
 flex: 0 0 calc(50% - (clamp(30px, 4vw, 60px) / 2));
 display: flex;
 flex-direction: column;
 justify-content: center;
}

.promotextcol h2 {
 color: #CAFF3B;
 font-size: clamp(28px, 3.5vw, 46px);
 font-weight: 700;
 line-height: 1.1;
 text-transform: uppercase;
 margin-bottom: clamp(16px, 2vw, 24px);
}

.promotextcol > p {
 font-size: clamp(14px, 1.5vw, 16px);
 font-weight: 400;
 line-height: 1.4;
 margin-bottom: clamp(24px, 3vw, 40px);
}

.promogrid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 16px;
}

.promo-card {
 background-color: #ffffff;
 color: #000000;
 border-radius: 20px;
 padding: clamp(16px, 2vw, 20px);
 display: flex;
 flex-direction: column;
 gap: 8px;
}

.promo-card p:first-child {
 font-size: clamp(14px, 1.5vw, 16px);
 font-weight: 700;
 text-transform: uppercase;
}

.promo-card p:last-child {
 font-size: clamp(13px, 1.4vw, 15px);
 font-weight: 200;
}

.promo-actions {
 display: flex;
 flex-direction: column;
 gap: 16px;
}

.promo-actions a {
 border-radius: 20px;
 padding: clamp(14px, 1.5vw, 18px) clamp(16px, 2vw, 20px);
 font-size: clamp(12px, 1.2vw, 16px);
 font-weight: 500;
 text-align: left;
 display: flex;
 align-items: center;
 justify-content: flex-start;
 color: #000000;
}

.promo-actions a:first-child {
 background-color: #ffffff;
 justify-content: space-between;
}

.promo-green {
 background-color: #CAFF3B;
}

.promo-gallery {
 flex: 0 0 calc(50% - (clamp(30px, 4vw, 60px) / 2));
 display: grid;
 grid-template-columns: 1fr 1fr;
 grid-template-rows: 1fr 1fr;
 border-radius: 20px;
 overflow: hidden;
 aspect-ratio: 1 / 1;
}

.promo-gallery img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
}

/* ======================== */
/* WB PROMO */
/* ======================== */
.wb-promo {
 background: linear-gradient(90deg, #3a3a3a 0%, #000 40%);
 color: #fff;
 padding: clamp(16px, 4vw, 80px);
}

.wb-inner {
 display: grid;
 grid-template-columns: 3fr 7fr;
 gap: 60px;
 align-items: stretch;
}

.wb-left,
.wb-right {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
}

.wb-logo {
 max-width: 268px;
 width: 100%;
 margin: 0 auto;
}

.wb-actions {
 display: flex;
 flex-direction: column;
}

.wb-rating {
 display: flex;
 align-items: center;
 gap: 12px;
 margin-bottom: 24px;
}

.wb-vet {
 height: 32px;
 width: auto;
}

.wb-rating-score {
 font-size: 32px;
 font-weight: 400;
 line-height: 1;
}

.wb-rating-text {
 display: flex;
 flex-direction: column;
 font-size: 14px;
 font-weight: 700;
 line-height: 1.2;
 text-transform: uppercase;
}

.wb-text {
 display: flex;
 flex-direction: column;
}

.wb-title {
 font-size: 46px;
 font-weight: 700;
 margin-bottom: 1%;
}

.wb-desc {
 font-size: 16px;
 font-weight: 100;
}

.wb-gallery {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 20px;
}

.wb-gallery img {
 width: 100%;
 aspect-ratio: 3 / 4;
 object-fit: cover;
}

.wb-btn {
 display: flex;
 align-items: center;
 width: 100%;
 max-width: 326px;
 background: #fff;
 border-radius: 20px;
 color: #000;
 overflow: hidden;
}

.wb-btn-icon {
 width: 92px;
 height: 92px;
 background: linear-gradient(180deg, #f327ff 0%, #8f00ff 100%);
 color: #fff;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 54px;
 font-weight: 700;
 line-height: 1;
 flex-shrink: 0;
}

.wb-btn-text {
 flex: 1;
 padding: 0 20px;
 font-size: 16px;
 font-weight: 700;
 line-height: 1.2;
 text-transform: uppercase;
}

.wb-btn-arrow {
 width: 55px;
 height: 55px;
 margin-right: 20px;
 flex-shrink: 0;
 color: #000;
}

/* ======================== */
/* БЛОК: КАК СДЕЛАТЬ ЗАКАЗ */
/* ======================== */
.order-steps {
 padding-bottom: clamp(50px, 6vw, 80px);
}

.order-steps h2 {
 font-size: clamp(28px, 4vw, 46px);
 font-weight: 700;
 text-transform: uppercase;
 margin-bottom: clamp(30px, 4vw, 50px);
}

.order-steps .cards {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 20px;
}

.order-steps .cards > div {
 background-color: #ffffff;
 border-radius: 20px;
 padding: clamp(24px, 2.5vw, 32px);
 box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
 display: flex;
 flex-direction: column;
 transition: transform 0.3s, box-shadow 0.3s;
}

.order-steps .cards > div:hover {
 transform: translateY(-5px);
 box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.order-steps .cards h3 {
 font-size: clamp(16px, 2vw, 20px);
 font-weight: 700;
 margin-bottom: 12px;
}

.order-steps .cards p {
 font-size: clamp(13px, 1.5vw, 16px);
 margin-bottom: clamp(10px, 1.5vw, 30px);
 flex-grow: 1;
}

.order-steps .cards img {
 width: 100%;
 max-width: clamp(100px, 12vw, 140px);
 margin: 0 auto;
}

/* ======================== */
/* БЛОК КОНТАКТОВ */
/* ======================== */
.contact-module {
 padding-top: clamp(50px, 6vw, 80px);
}

.cm-grid {
 display: grid;
 grid-template-columns: repeat(12, 1fr);
 gap: 20px;
 align-items: stretch;
}

.cm-panel {
 grid-column: span 6;
 border-radius: clamp(24px, 3vw, 40px);
 padding: clamp(30px, 4vw, 50px) clamp(24px, 3.5vw, 40px);
 display: flex;
 flex-direction: column;
 justify-content: center;
}

.cm-info {
 background: #CAFF3B url('/img/mail.png') no-repeat right -20px bottom -20px;
 background-size: clamp(340px, 23vw, 390px);
 justify-content: space-between;
 min-height: clamp(400px, 40vw, 480px);
 padding-top: 60px;
 padding-bottom: 75px;
}

.cm-info h2 {
 font-size: clamp(20px, 2.5vw, 26px);
 font-weight: 700;
 text-transform: uppercase;
 line-height: 1.3;
 margin-bottom: clamp(30px, 4vw, 50px);
 position: relative;
 z-index: 2;
}

.cm-cards {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 20px;
 position: relative;
 z-index: 2;
}

.cm-cards a {
 display: flex;
 flex-direction: column;
 justify-content: center;
 gap: 10px;
 height: clamp(110px, 12vw, 146px);
 padding: 0 clamp(16px, 2vw, 24px);
 background-color: #ffffff;
 border-radius: 20px;
 color: #000000;
 text-decoration: none;
 transition: all 0.3s ease;
}

.cm-cards a:hover {
 transform: translateY(-3px);
 box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.cm-cards a span:first-child {
 font-size: clamp(12px, 1.5vw, 16px);
 font-weight: 700;
 text-transform: uppercase;
 line-height: 1.2;
}

.cm-cards a span:last-child {
 font-size: clamp(12px, 1.1vw, 14px);
 font-weight: 500;
}

.cm-form-block {
 background-color: #EEEEEE;
 box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
}

.cm-form-block h2 {
 font-size: clamp(26px, 3.5vw, 40px);
 font-weight: 700;
 text-transform: uppercase;
 line-height: 1.1;
 margin-bottom: 12px;
}

.cm-form-block p {
 font-size: clamp(12px, 1.2vw, 14px);
 font-weight: 500;
 margin-bottom: clamp(24px, 3vw, 30px);
}

.cm-form-block form > input {
 width: 100%;
 height: clamp(54px, 5vw, 64px);
 border-radius: clamp(16px, 2vw, 20px);
 font-family: inherit;
 outline: none;
 padding: 0 clamp(16px, 2vw, 24px);
 margin-bottom: 20px;
 border: 1px solid #D1D1D1;
 font-size: clamp(14px, 1.2vw, 15px);
 transition: border-color 0.3s;
}

.cm-form-block form > input:focus {
 border-color: #000000;
}

.cm-form-row {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 20px;
 margin-bottom: clamp(20px, 2vw, 24px);
}

.cm-form-row label,
.cm-form-row button {
 width: 100%;
 height: clamp(54px, 5vw, 64px);
 border-radius: clamp(16px, 2vw, 20px);
 font-family: inherit;
 transition: all 0.3s;
}

.cm-form-row label {
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 border: 1px solid #D1D1D1;
 background: #ffffff;
 cursor: pointer;
 gap: 2px;
 padding: 0 10px;
 text-align: center;
 max-width: 285px;
}

.cm-form-row label:hover {
 border-color: #000000;
}

.cm-form-row label input {
 display: none;
}

.cm-form-row label span:first-of-type {
 font-weight: 900;
 font-size: clamp(11px, 1.1vw, 13px);
 white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;
 max-width: 100%;
}

.cm-form-row label span:last-of-type {
 font-weight: 500;
 font-size: 10px;
 color: #888;
}

.cm-form-row button {
 background: #000000;
 color: #ffffff;
 font-weight: 900;
 font-size: clamp(12px, 1.1vw, 14px);
 text-transform: uppercase;
 border: none;
 cursor: pointer;
}

.cm-form-row button:hover {
 opacity: 0.8;
 transform: translateY(-2px);
}

.cm-checkbox {
 display: flex;
 align-items: flex-start;
 gap: 12px;
 cursor: pointer;
}

.cm-checkbox {
 position: relative;
}
.cm-checkbox > input {
 position: absolute;
 opacity: 0;
 left: 2px;
 top: 8px;
 width: 16px;
 height: 16px;
 margin: 0;
 cursor: pointer;
}

.cm-checkbox > div {
 width: 20px;
 height: 20px;
 border: 2px solid #000000;
 border-radius: 4px;
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
 margin-top: 1px;
}

.cm-checkbox > div svg {
 width: 14px;
 height: 14px;
 opacity: 0;
 transition: 0.2s;
}

.cm-checkbox > input:checked + div svg {
 opacity: 1;
}

.cm-checkbox > span {
 font-size: clamp(10px, 1vw, 11px);
 font-weight: 500;
 line-height: 1.4;
}

/* ============================================= */
/* БЛОК FAQ */
/* ============================================= */
.faq-section {
 padding: clamp(50px, 6vw, 80px) 0 0;
}

.faq-title {
 font-size: clamp(28px, 4vw, 46px);
 font-weight: 700;
 text-transform: uppercase;
 margin-bottom: clamp(30px, 4vw, 40px);
}

.faq-layout {
 display: grid;
 grid-template-columns: repeat(12, 1fr);
 gap: 20px;
 align-items: start;
}

.faq-list {
 grid-column: 1 / 10;
 display: flex;
 flex-direction: column;
 gap: 16px;
}

.faq-item {
 display: flex;
 flex-direction: column;
}

.faq-question {
 display: flex;
 justify-content: space-between;
 align-items: center;
 background-color: #000;
 color: #fff;
 padding: 24px 32px;
 border-radius: 16px;
 border: none;
 cursor: pointer;
 font-family: inherit;
 font-size: 18px;
 text-align: left;
 line-height: 1.4;
 transition: border-radius 0.3s ease;
}

.faq-icon {
 flex-shrink: 0;
 width: 24px;
 height: 24px;
 position: relative;
 margin-left: 20px;
}

.faq-icon::before,
.faq-icon::after {
 content: '';
 position: absolute;
 background-color: #fff;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 border-radius: 2px;
 transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::before {
 width: 18px;
 height: 3px;
}

.faq-icon::after {
 width: 3px;
 height: 18px;
}

.faq-answer-wrapper {
 display: grid;
 grid-template-rows: 0fr;
 transition: grid-template-rows 0.35s ease;
}

.faq-answer-content {
 overflow: hidden;
 background-color: #CAFF3B;
 color: #000;
 padding: 0 32px;
 font-size: 16px;
 font-weight: 300;
 line-height: 1.4;
 border-radius: 0 0 16px 16px;
 opacity: 0;
 transition: padding 0.35s ease, opacity 0.35s ease;
}

.faq-item.is-active .faq-question {
 border-radius: 16px 16px 0 0;
}

.faq-item.is-active .faq-icon::after {
 transform: translate(-50%, -50%) rotate(90deg);
 opacity: 0;
}

.faq-item.is-active .faq-answer-wrapper {
 grid-template-rows: 1fr;
}

.faq-item.is-active .faq-answer-content {
 padding: 24px 32px 32px 32px;
 opacity: 1;
}

.faq-sidebar {
 grid-column: 10 / 13;
 position: sticky;
 top: 100px;
}

.faq-card {
 background-color: #fff;
 border-radius: 20px;
 padding: clamp(24px, 3vw, 42px);
 box-shadow: 0 20px 50px rgba(0, 0, 0, 0.11);
}

.faq-card h3 {
 font-size: 20px;
 font-weight: 700;
 line-height: 1.2;
 margin-bottom: 20px;
}

.faq-card p {
 font-size: 16px;
 font-weight: 400;
 line-height: 1.4;
 margin-bottom: 12px;
}

.faq-card p:last-of-type {
 margin-bottom: 24px;
}

.faq-btn {
 display: block;
 width: 100%;
 text-align: center;
 background-color: #CAFF3B;
 color: #000;
 text-decoration: none;
 font-family: inherit;
 font-size: 16px;
 font-weight: 400;
 padding: 22px 14px;
 border-radius: 20px;
 border: none;
 cursor: pointer;
 transition: background-color 0.2s ease;
}

.faq-btn:hover {
 background-color: #bdf21a;
}

/* ============================================= */
/* 1024px */
/* ============================================= */
@media (max-width: 1024px) {
 .hero-title,
 .hero-subtitle,
 .hero-stats {
 grid-column: 1 / 7;
 }
 
 .hero-cta-wrapper {
 grid-column: 8 / 13;
 }
 .gallery a.ulightbox {
 grid-column: span 4;
 }
 .equipmenttext h2 { font-size: 38px; }
 .equipmenttext p:first-of-type { font-size: 20px; }
 .equipmenttext p:last-of-type { font-size: 18px; }
 .equipment-btn { font-size: 18px; padding: 25px 30px; }
 .equipment-btn svg { right: 30px; width: 32px; height: 32px; }
 .equipmentleft { grid-column: 1 / 7; }
 .equipmentright { grid-column: 7 / 13; }
 
 .span-4, .span-3, .span-6 { grid-column: span 6; }
 .catalog-card:nth-child(5) { grid-column: span 12; }
 
 .wb-inner {
 grid-template-columns: 1fr;
 gap: 40px;
 }
 
 .wb-left,
 .wb-right {
 justify-content: flex-start;
 align-items: center;
 gap: 32px;
 }
 
 .wb-text {
 text-align: center;
 }
 
 .wb-title {
 font-size: 38px;
 }
 
 .wb-desc {
 font-size: 15px;
 }
 
 .wb-gallery {
 width: 100%;
 }
 
 .order-steps .cards {
 grid-template-columns: repeat(2, 1fr);
 }
 
 .faq-list,
 .faq-sidebar {
 grid-column: 1 / -1;
 }
 
 .faq-sidebar {
 position: static;
 margin-top: 10px;
 }
}

/* ============================================= */
/* 900px */
/* ============================================= */
@media (max-width: 900px) {
 .header-actions {
 flex: 1;
 display: flex;
 justify-content: center;
 position: relative;
 }
 
 .header-burger {
 display: flex;
 position: absolute;
 right: 0;
 top: 50%;
 transform: translateY(-50%);
 }
 
 .nav-wrapper {
 display: none;
 position: fixed;
 top: 0;
 left: 0;
 width: 100vw;
 height: 100vh;
 background: rgba(255, 255, 255, 0.95);
 backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
 flex-direction: column;
 padding: 20px;
 overflow-y: auto;
 z-index: 2000;
 }
 
 .nav-wrapper.is-open {
 display: flex;
 }
 
 .mobile-nav-header {
 display: flex;
 align-items: center;
 justify-content: space-between;
 margin-bottom: 40px;
 width: 100%;
 }
 
 .mobile-nav-header .header-logo img {
 height: 40px;
 }
 
 .mobile-menu-close {
 width: 32px;
 height: 32px;
 display: flex;
 align-items: center;
 justify-content: center;
 }
 
 .mobile-menu-close svg {
 width: 28px;
 height: 28px;
 }
 
 .mobile-cta {
 background: #CAFF3B;
 color: #000;
 border-radius: 20px;
 padding: 16px 24px;
 font-size: 16px;
 font-weight: 700;
 text-align: center;
 width: 100%;
 margin-top: auto;
 justify-content: center;
 display: flex;
 }
 
 .main-nav {
 flex-direction: column;
 align-items: flex-start;
 gap: 24px;
 margin-bottom: 40px;
 width: 100%;
 }
 
 .main-nav > li > a,
 .dropdown-toggle {
 font-size: 20px;
 font-weight: 700;
 text-align: left;
 }
 
 .dropdown {
 width: 100%;
 }
 
 .dropdown-menu {
 position: static;
 transform: none;
 padding-top: 0;
 display: none;
 }
 
 .dropdown-menu-inner {
 background: transparent;
 box-shadow: none;
 padding: 22px 0 0 0;
 border-radius: 0;
 gap: 12px;
 }
 
 .dropdown-menu-inner a {
 font-size: 16px;
 color: #666;
 white-space: normal;
 }
 
 .dropdown.is-open .dropdown-menu {
 display: block;
 }
 
 .dropdown.is-open .dropdown-toggle svg {
 transform: rotate(180deg);
 }
 
 .hero-content {
 padding-top: 100px;
 }
 
 .hero-title,
 .hero-subtitle,
 .hero-cta-wrapper {
 grid-column: 1 / -1;
 }
 
 .hero-bottom {
 grid-template-columns: 1fr;
 }
 
 .hero-stats {
 grid-column: 1 / -1;
 grid-template-columns: 1fr 1fr;
 }
 
 .ihero {background: linear-gradient(to right,#d2d8d7 0%,#d2d8d7 35%,rgba(210, 216, 215, 0.85) 55%,rgba(210, 216, 215, 0) 100%), var(--hero-bg) no-repeat center bottom / cover;}
 .vtitle, .vsubtitle, .vcta {grid-column: 1 / 9;}
 
 
 
 .equipment { padding: 50px 0; }
 .equipmentgrid { display: flex; flex-direction: column; gap: 0; }
 .equipmentleft, .equipmentright { display: contents; }
 .equipmenttext { order: 1; margin-bottom: 30px; }
 .equipmenttext h2, .equipmenttext p:first-of-type, .equipmenttext p:last-of-type { max-width: 100%; }
 .equipment-img-large { order: 2; min-height: 350px; margin-bottom: 0; }
 .equipment-img-small {
 order: 3;
 width: 70%;
 aspect-ratio: 4 / 3;
 align-self: flex-start;
 margin-top: -80px;
 margin-bottom: 30px;
 position: relative;
 z-index: 5;
 border: 8px solid #ffffff;
 border-radius: 24px;
 box-shadow: 0 10px 30px rgba(0,0,0,0.08);
 }
 .equipment-btn { order: 4; }
 
 .promo-row, .promo-row.reverse { flex-direction: column; }
 .promotextcol, .promo-gallery { flex: none; width: 100%; }
 .promo-gallery { aspect-ratio: auto; grid-auto-rows: minmax(150px, 25vw); }
 
 .cm-panel { grid-column: span 12; }
}

/* ============================================= */
/* 768px */
/* ============================================= */
@media (max-width: 768px) {
 .span-4,
 .span-6,
 .span-3,
 .catalog-card:nth-child(5) {
 grid-column: span 12;
 }
 
 .catalog-banner {
 flex-direction: column;
 }
 
 .catalog-banner__content {
 flex: none;
 width: 100%;
 }
 
 .catalog-banner__image-wrapper {
 flex: none;
 width: 100%;
 min-height: 250px;
 }
 
 .catalog-banner__image-wrapper img {
 position: relative;
 border-radius: 0 0 20px 20px;
 }
 
 .order-steps .cards {
 grid-template-columns: 1fr;
 }
 
 .order-steps .cards > div {
 padding: 24px;
 }
 
 .faq-question {
 font-size: 16px;
 padding: 20px 24px;
 }
 
 .faq-answer-content {
 padding: 0 24px;
 font-size: 14px;
 }
 
 .faq-item.is-active .faq-answer-content {
 padding: 20px 24px 24px 24px;
 }
 
 .track-clients {
 gap: 20px;
 }
 
 .track-clients img {
 height: 60px;
 }
}

/* ============================================= */
/* 600px */
/* ============================================= */
@media (max-width: 600px) {
 .wb-title {
 font-size: 32px;
 }
 
 .wb-desc {
 font-size: 14px;
 }
 
 .wb-gallery {
 grid-template-columns: repeat(2, 1fr);
 }
 
 .wb-btn {
 max-width: 100%;
 }
 
 .wb-rating {
 flex-wrap: wrap;
 justify-content: center;
 }
 .filters {
 justify-content: flex-start;
 margin-bottom: 28px;
 }

 .filters {
 justify-content: flex-start;
 margin-bottom: 28px;
 }

 .filter-btn {
 flex: 1 1 auto;
 }

 .gallery {
 gap: 10px;
 }

 .gallery a.ulightbox {
 grid-column: span 6;
 border-radius: 12px;
 }
}

/* ============================================= */
/* 480px */
/* ============================================= */
@media (max-width: 480px) {
 .header-cta {
 display: none;
 }
 
 .header-inner {
 padding: 10px 12px;
 height: auto;
 gap: 8px;
 }
 
 .header-phone {
 font-size: 12px;
 }
 
 .hero-content {
 padding-top: 100px;
 }
 
 .hero-bottom {
 overflow: hidden;
 }
 
 .hero-stats {
 grid-template-columns: 1fr 1fr;
 gap: 10px 0;
 overflow: hidden;
 }
 
 .ihero {background: linear-gradient(to right,#d2d8d7 0%,#d2d8d7 14%,rgba(210, 216, 215, 0.92) 82%,rgba(210, 216, 215, 0) 100%), var(--hero-bg) no-repeat center bottom / cover;}
 .vtitle, .vsubtitle, .vcta {grid-column: 1 / 12;}
 .stat-card {
 position: relative;
 padding: 20px 14px;
 box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
 }
 
 .stat-number {
 font-size: 22px;
 margin-bottom: 4px;
 }
 
 .stat-label {
 font-size: 11px;
 }
 
 .stat-card:nth-child(1),
 .stat-card:nth-child(3) {
 z-index: 1;
 }
 
 .stat-card:nth-child(2),
 .stat-card:nth-child(4) {
 margin-left: -18%;
 z-index: 2;
 }
.gallery a.ulightbox {
 grid-column: span 12;
 }
 .equipmenttext h2 { font-size: 32px; }
 .equipmenttext p:first-of-type { font-size: 18px; }
 .equipmenttext p:last-of-type { font-size: 16px; }
 .equipment-img-large { min-height: 250px; }
 .equipment-img-small { width: 85%; margin-top: -60px; border-width: 6px; }
 .equipment-btn { font-size: 14px; padding: 20px; justify-content: flex-start; text-align: left; }
 .equipment-btn span { padding-right: 30px; }
 .equipment-btn svg { right: 20px; width: 24px; height: 24px; }
 
 .promogrid { grid-template-columns: 1fr; }
 .cm-cards, .cm-form-row { grid-template-columns: 1fr; }
}

/* ============================================= */
/* 375px */
/* ============================================= */
@media (max-width: 375px) {
 .header-inner {
 padding: 8px 10px;
 gap: 6px;
 }
 
 .header-phone {
 font-size: 11px;
 }
 
 .header-logo img {
 height: 32px;
 }
 
 .header-burger svg {
 width: 24px;
 height: 24px;
 }
 
 .stat-card {
 padding: 16px 12px;
 border-radius: 16px;
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }
 
 .stat-number {
 font-size: 20px;
 }
 
 .stat-label {
 font-size: 10px;
 }
 
 .stat-card:nth-child(2),
 .stat-card:nth-child(4) {
 margin-left: -14%;
 }
 
 .equipmenttext h2 { font-size: 28px; }
 .equipmenttext p:first-of-type { font-size: 16px; }
 .equipmenttext p:last-of-type { font-size: 14px; }
 .equipment-btn { font-size: 12px; }
}

/* ==================================== */
/* СЕКЦИЯ КАРТЫ С КОНТАКТАМИ */
/* ==================================== */
.map-section {
 position: relative;
 width: 100%;
 height: clamp(500px, 50vw, 530px);
 background-color: #e5e5e5;
 overflow: hidden;
}

.map-frame {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 1;
}

[class*="ground-pane"] {
 filter: grayscale(100%);
}

#yandex-map [class*="copyright"],
#yandex-map [class*="gototech"],
#yandex-map [class*="logo"],
#yandex-map [class*="map-links"],
#yandex-map [class*="promo"] {
 display: none !important;
}

.map-overlay {
 position: relative;
 z-index: 2;
 height: 100%;
 display: grid;
 grid-template-columns: repeat(12, 1fr);
 gap: 20px;
 align-items: center;
 pointer-events: none;
}

.map-card {
 grid-column: 1 / span 5;
 width: 100%;
 background-color: rgba(202, 255, 59, 0.8);
 backdrop-filter: blur(12px);
 -webkit-backdrop-filter: blur(12px);
 padding: 50px;
 border-radius: 20px;
 pointer-events: auto;
 box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.map-card h2 {
 font-size: 22px;
 font-weight: 600;
 margin-bottom: 24px;
}

.map-info-group {
 margin-bottom: 24px;
}

.map-info-group:last-child {
 margin-bottom: 0;
}

.map-label {
 display: block;
 font-size: clamp(12px, 1.2vw, 14px);
 font-weight: 400;
 margin-bottom: 4px;
 opacity: 0.8;
}

.map-value {
 display: block;
 font-size: clamp(16px, 1.6vw, 20px);
 line-height: 1.3;
}

a.map-value {
 transition: opacity 0.3s;
}

a.map-value:hover {
 opacity: 0.6;
}

@media (max-width: 900px) {
 .map-section {
 height: 650px;
 display: block;
 }
 
 .map-overlay {
 display: flex;
 align-items: flex-end;
 padding-bottom: 20px;
 }
 
 .map-card {
 grid-column: auto;
 }
}

@media (max-width: 480px) {
 .map-section {
 height: 650px;
 }
 
 .map-card {
 padding: 30px;
 }
}

/* ==================================== */
/* ФУТЕР */
/* ==================================== */
.footer {
 background-color: #000000;
 color: #ffffff;
 padding: clamp(50px, 6vw, 80px) 0;
 border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
 display: grid;
 grid-template-columns: 6fr 3fr 3fr;
 gap: clamp(30px, 4vw, 60px);
}

.footer-brand {
 display: flex;
 flex-direction: column;
}

.footer-logo {
 display: inline-block;
 margin-bottom: clamp(24px, 3vw, 32px);
}

.footer-logo img {
 height: auto;
 display: block;
}

.footer-desc {
 font-size: 14px;
 font-weight: 300;
 line-height: 1.5;
 color: rgb(255, 255, 255);
 margin-bottom: clamp(24px, 3vw, 32px);
 max-width: 400px;
}

.footer-copy {
 font-size: clamp(12px, 1.2vw, 14px);
 font-weight: 300;
 color: rgba(255, 255, 255, 0.7);
 margin-top: auto;
}

.footer-list {
 display: flex;
 flex-direction: column;
 gap: clamp(12px, 1.5vw, 16px);
}

.footer-list a {
 font-size: clamp(13px, 1.3vw, 15px);
 font-weight: 400;
 color: #ffffff;
 transition: color 0.3s ease, transform 0.3s ease;
 display: inline-block;
}

.footer-list a:hover {
 color: #CAFF3B;
 transform: translateX(5px);
}

@media (max-width: 900px) {
 .footer-inner {
 grid-template-columns: 1fr 1fr;
 }
 
 .footer-brand {
 grid-column: 1 / -1;
 align-items: center;
 text-align: center;
 margin-bottom: 20px;
 }
 
 .footer-desc {
 max-width: 100%;
 }
}

@media (max-width: 600px) {
 .footer-inner {
 grid-template-columns: 1fr;
 gap: 40px;
 }
 
 .footer-brand {
 align-items: flex-start;
 text-align: left;
 }
 
 .footer-list {
 gap: 14px;
 }
 
 .footer-list a {
 font-size: 15px;
 }
}




/* ==================================== */
/* 1. БАЗОВЫЕ ОТСТУПЫ СТРАНИЦЫ */
/* ==================================== */
.inner-page-wrapper {}

.inner-page-title {
 font-size: clamp(24px, 4vw, 34px); 
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: -0.03em;
 margin-bottom: clamp(30px, 4vw, 44px);
 color: #000;
}

.inner-page-desc {
 font-size: clamp(14px, 1.5vw, 16px);
 line-height: 1.4;
 margin-top: clamp(-20px, -2vw, -10px);
 margin-bottom: clamp(24px, 4vw, 40px);
}



 .rich-text-block .text-collapse {
 position: relative;
 max-height: 250px;
 overflow: hidden;
 transition: max-height 0.4s ease;
 }


 .rich-text-block .text-collapse::after {
 content: "";
 position: absolute;
 left: 0; right: 0; bottom: 0;
 height: 80px;
 background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
 pointer-events: none;
 transition: opacity 0.3s ease;
 }

 .rich-text-block .text-collapse.is-open {
 max-height: 5000px;margin-bottom: 20px;
 }
 .rich-text-block .text-collapse.is-open::after {
 opacity: 0; 
 }

 .rich-text-block .text-toggle-btn {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
 width: fit-content;
 margin: 0 auto; 
 padding: 10px 20px;
 border: 1px solid #d1d5db;
 border-radius: 8px;
 background: transparent;
 font-family: inherit;
 font-size: 15px;
 font-weight: 500;
 cursor: pointer;
 transition: all 0.2s ease;
 }

 .rich-text-block .text-toggle-btn:hover {
 background: #f3f4f6;
 }

 .rich-text-block .text-toggle-btn svg {
 transition: transform 0.3s ease;
 }
 .rich-text-block .text-toggle-btn.is-active svg {
 transform: rotate(180deg);
 }

/* ==================================== */
/* 2. ТАБЛИЦА ЦЕН */
/* ==================================== */
.price-table-wrapper {
 position: relative;
 z-index: 0; 
 width: 100%;
 background: #ffffff;
 border: 1px solid #D9D9D9; 
 border-radius: 16px; 
 overflow: hidden; 
 overflow-x: auto;
 -webkit-overflow-scrolling: touch;
 scrollbar-width: thin;
 scrollbar-color: #CAFF3B #f0f0f0;
}

.price-table-wrapper::-webkit-scrollbar { height: 6px; }
.price-table-wrapper::-webkit-scrollbar-track { background: #f0f0f0; }
.price-table-wrapper::-webkit-scrollbar-thumb { background: #CAFF3B; border-radius: 10px; }

.price-table-wrapper table { width: 100%; min-width: 1000px; border-collapse: collapse; }
.price-table-wrapper table thead th {
 position: relative; z-index: 1; background-color: #CAFF3B;
 padding: clamp(20px, 2.5vw, 26px) 15px; font-size: clamp(12px, 1.2vw, 15px);
 font-weight: 900; text-transform: uppercase; text-align: center; color: #000; white-space: nowrap; 
}
.price-table-wrapper table tbody td {
 position: relative; padding: clamp(16px, 2.5vw, 20px) 15px; font-size: clamp(13px, 1.3vw, 15px);
 font-weight: 700; text-transform: uppercase; text-align: center; color: #000;
 white-space: nowrap; border-bottom: 1px solid #EEEEEE; transition: background-color 0.1s ease;
}
.price-table-wrapper table tbody tr:last-child td { border-bottom: none; }
.price-table-wrapper table tbody tr:hover td { background-color: #F8F8F8; }
.price-table-wrapper table tbody td:hover::after {
 content: ""; position: absolute; left: 0; top: -10000px;
 width: 100%; height: 20000px; background-color: #F8F8F8;
 z-index: -1; pointer-events: none;
}
.price-table-wrapper table tbody td:hover { background-color: #EBEBEB !important; cursor: crosshair; }


/* ==================================== */
/* 3. КАРТОЧКИ ЭТАПОВ */
/* ==================================== */
.steps-grid {
 display: grid;
 grid-template-columns: repeat(6, 1fr);
 gap: clamp(10px, 1.2vw, 18px);
 align-items: stretch;
}

.step-card {
 position: relative;
 min-height: clamp(150px, 15vw, 210px);
 background: #CAFF3B;
 border-radius: clamp(14px, 1.4vw, 20px);
 overflow: hidden;
 padding: clamp(16px, 1.6vw, 22px) clamp(14px, 1.3vw, 18px) clamp(14px, 1.3vw, 18px) clamp(18px, 1.8vw, 26px);
 cursor: default;
}

.step-card p {
 position: relative;
 z-index: 2;
 max-width: 170px;
 font-weight: 600;
 font-size: clamp(14px, 1.2vw, 16px);
 line-height: 1.08;
 letter-spacing: -0.04em;
 margin: 0; 
}

.step-card span {
 position: absolute;
 z-index: 1;
 right: clamp(-10px, -0.6vw, -6px);
 bottom: clamp(-30px, -2.6vw, -36px);
 font-weight: 900;
 font-size: clamp(120px, 12vw, 168px);
 line-height: 1;
 color: #ffffff;
 letter-spacing: -0.08em;
 user-select: none;
 pointer-events: none;
 transform-origin: right bottom;
 transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.step-card:hover span {
 transform: scale(1.1);
}

@media (max-width: 1200px) {
 .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
 .steps-grid { grid-template-columns: repeat(2, 1fr); }
 .step-card p { max-width: 150px; }
}

@media (max-width: 480px) {
 .steps-grid { grid-template-columns: 1fr; }
 .step-card { min-height: 100px; }
 .step-card p { max-width: 200px;}
 .step-card span { font-size: 130px; }
}

/* ==================================== */
/* 4. ТЕКСТОВЫЙ БЛОК */
/* ==================================== */
.rich-text-block {}

.rich-text-block > p:first-child {
 font-size: clamp(14px, 1.5vw, 16px);
 line-height: 1.5;
 margin-bottom: clamp(32px, 4vw, 48px);
 color: #000;
}

.rich-text-block h2 {
 font-size: clamp(22px, 2.8vw, 32px);
 font-weight: 700;
 text-transform: none;
 letter-spacing: -0.03em;
 line-height: 1.15;
 margin-top: clamp(30px, 4vw, 48px);
 margin-bottom: clamp(14px, 1.6vw, 20px);
 color: #000;
}

.rich-text-block h2:first-child { margin-top: 0; }

.rich-text-block h3 {
 font-size: clamp(18px, 2vw, 22px);
 font-weight: 700;
 letter-spacing: -0.02em;
 line-height: 1.2;
 margin-top: clamp(24px, 3vw, 36px);
 margin-bottom: clamp(12px, 1.4vw, 16px);
 color: #000;
}

.rich-text-block h4 {
 font-size: clamp(16px, 1.6vw, 18px);
 font-weight: 600;
 letter-spacing: -0.02em;
 line-height: 1.25;
 margin-top: clamp(20px, 2.4vw, 28px);
 margin-bottom: clamp(10px, 1.2vw, 14px);
 color: #000;
}

.rich-text-block p {
 font-size: clamp(14px, 1.5vw, 16px);
 line-height: 1.5;
 margin-top: 0;
 margin-bottom: clamp(14px, 1.6vw, 18px);
 color: #000;
}

.rich-text-block p:last-child { margin-bottom: 0; }

.rich-text-block strong,
.rich-text-block b { font-weight: 700; color: #000; }

.rich-text-block em,
.rich-text-block i { font-style: italic; }

.rich-text-block a {
 color: #000;
 font-weight: 600;
 text-decoration: none;
 border-bottom: 2px solid #CAFF3B;
 padding-bottom: 1px;
 transition: background-color 0.25s ease, color 0.25s ease;
}

.rich-text-block a:hover { background-color: #CAFF3B; }

.rich-text-block ul,
.rich-text-block ol {
 margin-bottom: clamp(16px, 2vw, 22px);
 padding-left: 0;
 list-style: none;
}

.rich-text-block ul li,
.rich-text-block ol li {
 position: relative;
 padding-left: 28px;
 font-size: clamp(14px, 1.5vw, 16px);
 line-height: 1.5;
 margin-bottom: clamp(8px, 1vw, 12px);
 color: #000;
}

.rich-text-block ul li:last-child,
.rich-text-block ol li:last-child { margin-bottom: 0; }

.rich-text-block ul li::before {
 content: "";
 position: absolute;
 left: 0;
 top: 0.55em;
 width: 10px;
 height: 10px;
 background-color: #CAFF3B;
 border-radius: 50%;
}

.rich-text-block ol { counter-reset: list-counter; }

.rich-text-block ol li {
 counter-increment: list-counter;
 padding-left: 36px;
}

.rich-text-block ol li::before {
 content: counter(list-counter) ".";
 position: absolute;
 left: 0;
 top: 0;
 font-weight: 700;
 color: #000;
 min-width: 28px;
}

.rich-text-block ul ul,
.rich-text-block ol ol,
.rich-text-block ul ol,
.rich-text-block ol ul {
 margin-top: clamp(8px, 1vw, 12px);
 margin-bottom: 0;
}

.rich-text-block blockquote {
 position: relative;
 padding: clamp(20px, 2.4vw, 28px) clamp(22px, 2.6vw, 32px);
 margin: clamp(20px, 2.4vw, 28px) 0;
 background-color: #F6F6F6;
 border-left: 4px solid #CAFF3B;
 border-radius: 8px;
 font-size: clamp(14px, 1.5vw, 16px);
 line-height: 1.5;
 font-style: italic;
 color: #000;
}

.rich-text-block blockquote p { margin-bottom: clamp(8px, 1vw, 12px); }
.rich-text-block blockquote p:last-child { margin-bottom: 0; }

.rich-text-block blockquote cite {
 display: block;
 margin-top: clamp(10px, 1.2vw, 14px);
 font-style: normal;
 font-weight: 600;
 font-size: clamp(13px, 1.3vw, 14px);
 color: #555;
}

.rich-text-block hr {
 border: none;
 height: 1px;
 background-color: #E5E5E5;
 margin: clamp(30px, 4vw, 44px) 0;
}

.rich-text-block .highlight {
 padding: clamp(18px, 2vw, 24px) clamp(20px, 2.4vw, 28px);
 margin: clamp(18px, 2vw, 24px) 0;
 background-color: #CAFF3B;
 border-radius: 12px;
 font-size: clamp(14px, 1.5vw, 16px);
 font-weight: 600;
 line-height: 1.4;
 color: #000;
}

.rich-text-block code {
 font-family: 'Courier New', monospace;
 font-size: 0.92em;
 background-color: #F0F0F0;
 padding: 2px 8px;
 border-radius: 4px;
 color: #000;
}

/* ==================================== */
/* 5. КАРТА С ШАПКОЙ */
/* ==================================== */
.location-map-block {
 width: 100%;
 border-radius: clamp(16px, 1.8vw, 24px);
 overflow: hidden;
 background-color: #000;
 margin-bottom: clamp(40px, 6vw, 80px);
}

.location-map-head {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: clamp(16px, 2vw, 28px);
 padding: clamp(18px, 2vw, 26px) clamp(20px, 2.5vw, 36px);
 background-color: #000;
}

.location-map-title {
 font-size: clamp(15px, 1.5vw, 20px);
 font-weight: 600;
 line-height: 1.2;
 letter-spacing: -0.02em;
 color: #fff;
 margin: 0;
}

.location-map-btn {
 flex-shrink: 0;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 padding: clamp(12px, 1.4vw, 18px) clamp(18px, 2.2vw, 32px);
 background-color: #CAFF3B;
 color: #000;
 font-family: inherit;
 font-size: clamp(12px, 1.2vw, 15px);
 font-weight: 700;
 text-transform: lowercase;
 text-decoration: none;
 border: none;
 border-radius: clamp(10px, 1.2vw, 14px);
 letter-spacing: -0.01em;
 cursor: pointer;
 transition: background-color 0.25s ease, transform 0.25s ease;
 white-space: nowrap;
}

.location-map-btn:hover {
 background-color: #b8ea22;
 transform: translateY(-2px);
}

.location-map-btn:active { transform: translateY(0); }

.location-map-iframe {
 display: block;
 width: 100%;
 line-height: 0;
 font-size: 0;
}

.location-map-iframe iframe {
 display: block;
 width: 100%;
 border: none;
}

@media (max-width: 640px) {
 .location-map-head {
 flex-direction: column;
 align-items: flex-start;
 gap: 14px;
 }
 .location-map-btn { width: 100%; }
}

/* ==================================== */
/* 6. БЛОК КОНТАКТОВ */
/* ==================================== */
.info-contacts-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: clamp(14px, 1.4vw, 22px);
 margin-bottom: clamp(40px, 6vw, 80px);
}

.info-contact-card {
 background: #000;
 color: #fff;
 border-radius: clamp(18px, 2vw, 26px);
 padding: clamp(24px, 2.4vw, 34px);
 display: flex;
 flex-direction: column;
 gap: clamp(20px, 2.2vw, 30px);
 font-size: clamp(14px, 1.1vw, 16px);
 font-weight: 400;
 line-height: 1.4;
}

.info-contact-card h3 { font-weight: 400; color: #fff; }

.info-contact-card dl { display: flex; flex-direction: column; gap: clamp(18px, 2vw, 26px); }
.info-contact-card dt {
 font-size: clamp(12px, 1vw, 14px);
 color: #8a8a8a;
 margin-bottom: 6px;
}
.info-contact-card dd a { color: inherit; text-decoration: none; }
.info-contact-card dd a:hover { color: #CAFF3B; }

.info-schedule { list-style: none; display: flex; flex-direction: column; gap: clamp(10px, 1vw, 14px); }
.info-schedule li { display: flex; align-items: baseline; gap: 10px; }
.info-schedule li::before {
 content: "";
 flex: 1;
 border-bottom: 2px dotted #555;
 order: 1;
 transform: translateY(-4px);
}
.info-schedule li span:last-child { order: 2; }

.info-requisites { white-space: pre-line; }

@media (max-width: 1024px) {
 .info-contacts-grid { grid-template-columns: 1fr 1fr; }
 .info-contacts-grid .info-contact-card:first-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
 .info-contacts-grid { grid-template-columns: 1fr; }
 .info-contacts-grid .info-contact-card:first-child { grid-column: auto; }
}

/* ==================================== */
/* 7. ФОРМА ОБРАТНОЙ СВЯЗИ */
/* ==================================== */
.feedback-form {
 width: 100%;
 background: #CAFF3B;
 border-radius: clamp(20px, 2.4vw, 32px);
 padding: clamp(28px, 3.4vw, 54px) clamp(24px, 3vw, 48px);
 margin-bottom: clamp(40px, 6vw, 80px);
}

.feedback-form h2 {
 font-size: clamp(22px, 3.2vw, 40px);
 font-weight: 800;
 text-transform: uppercase;
 letter-spacing: -0.02em;
 line-height: 1.1;
 color: #000;
 margin-bottom: clamp(24px, 3vw, 40px);
}

.feedback-form-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: clamp(14px, 1.6vw, 24px);
 margin-bottom: clamp(18px, 2vw, 26px);
 align-items: stretch;
}

.feedback-form-fields {
 display: grid;
 grid-template-rows: 1fr 1fr 1fr;
 gap: clamp(12px, 1.4vw, 20px);
}

.feedback-form-input,
.feedback-form-textarea {
 width: 100%;
 font-family: inherit;
 font-size: clamp(14px, 1.1vw, 16px);
 font-weight: 400;
 color: #000;
 background: #fff;
 border: none;
 border-radius: 20px;
 padding: clamp(18px, 2vw, 26px) clamp(22px, 2.4vw, 32px);
 outline: none;
 transition: box-shadow 0.2s ease;
}

.feedback-form-input {
 height: 100%;
 min-height: 0;
}

.feedback-form-input::placeholder,
.feedback-form-textarea::placeholder {
 color: #8a8a8a;
 font-weight: 400;
}

.feedback-form-input:focus,
.feedback-form-textarea:focus {
 box-shadow: 0 0 0 2px #000;
}

.feedback-form-textarea {
 min-height: 256px;
 resize: none;
 font-family: inherit;
}

.feedback-form-agree {
 display: flex;
 align-items: center;
 gap: clamp(10px, 1vw, 14px);
 margin-bottom: clamp(20px, 2.4vw, 30px);
 padding-left: clamp(6px, 0.6vw, 10px);
 cursor: pointer;
 user-select: none;
}

.feedback-form-agree input {
 appearance: none;
 -webkit-appearance: none;
 flex-shrink: 0;
 width: clamp(18px, 1.6vw, 22px);
 height: clamp(18px, 1.6vw, 22px);
 background: transparent;
 border: 2px solid #000;
 border-radius: 4px;
 cursor: pointer;
 position: relative;
 transition: background-color 0.15s ease;
}

.feedback-form-agree input:checked { background: #000; }

.feedback-form-agree input:checked::after {
 content: "";
 position: absolute;
 left: 50%;
 top: 45%;
 width: 30%;
 height: 55%;
 border: solid #CAFF3B;
 border-width: 0 2px 2px 0;
 transform: translate(-50%, -50%) rotate(45deg);
}

.feedback-form-agree span {
 font-size: clamp(12px, 1vw, 14px);
 font-weight: 400;
 line-height: 1.3;
 color: #000;
}

.feedback-form-submit {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 padding: clamp(18px, 2vw, 26px) clamp(32px, 3.4vw, 52px);
 background: #000;
 color: #fff;
 font-family: inherit;
 font-size: 16px;
 font-weight: 700;
 text-transform: lowercase;
 letter-spacing: -0.01em;
 border: none;
 border-radius: 20px;
 cursor: pointer;
 transition: background-color 0.25s ease, transform 0.25s ease;
}

.feedback-form-submit:hover {
 background: #222;
 transform: translateY(-2px);
}

.feedback-form-submit:active { transform: translateY(0); }

@media (max-width: 768px) {
 .feedback-form-grid { grid-template-columns: 1fr; }
 .feedback-form-fields { grid-template-rows: auto auto auto; }
 .feedback-form-input { min-height: 56px; }
 .feedback-form-textarea { min-height: 160px; }
 .feedback-form-submit { width: 100%; }
}


.xw-plain .xw-bl, .xw-plain .xw-ml, .xw-plain .xw-tl {
 background-color: #CAFF3B !important;
}
.xw-hdr-text {
 font-family: 'Unbounded', sans-serif !important; color: #000!important;
}
body .myWinError {
 color: #000 !important;
}



#consultModal {
 display: none;
 position: fixed;
 inset: 0;
 background: rgb(0 0 0 / 24%);
 z-index: 9999;
 align-items: center;
 justify-content: center;
 backdrop-filter: blur(10px);
}

#consultModal.on { display: flex; }

#consultModal > div {
 position: relative;
 background: #fff;
 border-radius: 12px;
 padding: 40px 30px;
 max-width: 500px;
 width: 90%;
 max-height: 90vh;
 overflow: auto;
}


#consultModal > div > span {
 position: absolute;
 top: 8px;
 right: 15px;
 font-size: 28px;
 cursor: pointer;
 color: #666;
}

#consultModal input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
#consultModal textarea,
#consultModal select {
 width: 100%;
 box-sizing: border-box;
}


.obsvz {
 display: flex;
 flex-direction: column;
 gap: 16px;
 font-family: 'Unbounded', sans-serif;
}

.obsvz input[type="text"],
.obsvz input[type="tel"],
.obsvz button {
 width: 100%;
 height: 64px;
 border-radius: 20px;
 font: inherit;
 box-sizing: border-box;
}

.obsvz input[type="text"],
.obsvz input[type="tel"] {
 padding: 0 28px;
 border: 1px solid #d1d1d1;
 background: #fff;
 font-size: 15px;
 color: #000;
 outline: none;
 transition: border-color .3s;
}

.obsvz input::placeholder { color: #b0b0b0; }

.obsvz input[type="text"]:focus,
.obsvz input[type="tel"]:focus {
 border-color: #000;
}

.obsvz button {
 border: 0;
 background: #000;
 color: #fff;
 font-weight: 900;
 font-size: 14px;
 text-transform: uppercase;
 cursor: pointer;
 transition: opacity .2s;
}

.obsvz button:hover { opacity: .85; }

.obsvz-check {
 display: flex;
 align-items: flex-start;
 gap: 12px;
 cursor: pointer;
}

.obsvz-check input[type="checkbox"] {
 width: 18px;
 height: 18px;
 margin: 2px 0 0;
 accent-color: #000;
 flex-shrink: 0;
}

.obsvz-check span {
 font-size: 11px;
 line-height: 1.4;
 color: #000;
}

.obsvz-check a {
 color: inherit;
 text-decoration: underline;
}


#bottomInfoBar {
 background: transparent !important;
 padding: 15px !important;
 display: flex !important;
 justify-content: center !important;
}

#cookiePolicy {
 background: #fff !important;
 color: #000 !important;
 padding: 20px !important;
 border-radius: 20px !important;
 box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
 display: flex !important;
 flex-wrap: wrap !important;
 align-items: center !important;
 justify-content: center !important;
 gap: 15px !important;
 max-width: 800px !important;
}

.bottom-info-block-content {
 font-size: clamp(12px, 4vw, 15px) !important;
 max-width: 550px !important;
 text-align: center !important;
}

.bottom-info-block-content a {
 color: #000 !important;
 text-decoration: underline !important;
 font-weight: bold !important;
}

#cookiePolicyAgree {
 background: #ccff00 !important;
 color: #000 !important;
 font-weight: bold !important;
 text-transform: uppercase !important;
 text-decoration: none !important;
 padding: 12px 24px !important;
 border-radius: 50px !important;
 white-space: nowrap !important;
}

#cookiePolicyHide { 
 display: none !important; 
}