/* ==========================================================================
   FILE: style.css
   ========================================================================== */

/* ==========================================================================
   ГЛОБАЛЬНЫЕ СТИЛИ МПК РАЗВИТИЕ
   Сброс, переменные, типографика, утилиты
   ========================================================================== */

/* --- Подключение шрифта --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* --- Сброс и box-sizing --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --- CSS-переменные (цвета, тени, радиусы) --- */
:root {
    --color-green:       #15b853;
    --color-green-dark:  #0e873b;
    --color-green-light: rgba(21, 184, 83, 0.1);
    --color-black:       #0f172a;
    --color-bg:          #f8fafc;
    --color-white:       #ffffff;
    --color-slate-900:   #0f172a;
    --color-slate-800:   #1e293b;
    --color-slate-700:   #334155;
    --color-slate-600:   #475569;
    --color-slate-500:   #64748b;
    --color-slate-400:   #94a3b8;
    --color-slate-300:   #cbd5e1;
    --color-slate-200:   #e2e8f0;
    --color-slate-100:   #f1f5f9;
    --color-slate-50:    #f8fafc;
    --color-emerald-900: #064e3b;
    --color-emerald-800: #065f46;

    --shadow-header: 0 4px 20px -2px rgba(0,0,0,0.05);
    --shadow-btn:    0 8px 20px -4px rgba(21, 184, 83, 0.3);
    --shadow-card:   0 10px 30px -5px rgba(0,0,0,0.05);
    --shadow-glow:   0 0 25px rgba(21, 184, 83, 0.4);

    --radius-sm:  0.75rem;
    --radius-md:  1rem;
    --radius-lg:  1.5rem;
    --radius-xl:  2rem;
    --radius-2xl: 2.5rem;
    --radius-full: 9999px;

    --container-width: 1200px;
    --container-wide:  1400px;
}
a{
    color:inherit;
}
/* --- Базовые стили body --- */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-slate-700);
    min-height: 100vh;
    overflow-x: hidden;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
}

/* --- Контейнер --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container--wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 1rem;
}

/* --- Скрытый скроллбар --- */
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* --- Glassmorphism панель --- */
.glass-panel {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226,232,240,0.8);
}

/* --- Анимации --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}
@keyframes shimmer {
    100% { transform: translateX(200%); }
}
@keyframes radar {
    0%   { transform: scale(1);   opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}
@keyframes ping {
    0%   { transform: scale(1);   opacity: 0.75; }
    75%, 100% { transform: scale(2); opacity: 0; }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}

/* --- Утилиты анимаций --- */
.animate-float  { animation: float 4s ease-in-out infinite; }
.animate-ping   { animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite; }
.animate-pulse  { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

/* --- Кнопки --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: inherit;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    line-height: 1;
}

.btn--primary {
    background: var(--color-green);
    color: var(--color-white);
    box-shadow: var(--shadow-btn);
}
.btn--primary:hover {
    background: var(--color-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -4px rgba(21,184,83,0.4);
}

.btn--outline-green {
    background: var(--color-green-light);
    color: var(--color-green);
}
.btn--outline-green:hover {
    background: var(--color-green);
    color: var(--color-white);
}

.btn--white {
    background: var(--color-white);
    color: var(--color-slate-900);
}
.btn--white:hover {
    background: var(--color-slate-50);
}

.btn--ghost {
    background: var(--color-slate-50);
    color: var(--color-green);
}
.btn--ghost:hover {
    background: var(--color-green);
    color: var(--color-white);
}

.btn--lg  { padding: 1rem 2.5rem; font-size: 1rem; border-radius: var(--radius-md); }
.btn--md  { padding: 0.875rem 1.5rem; font-size: 0.9375rem; border-radius: var(--radius-md); }
.btn--sm  { padding: 0.625rem 1.25rem; font-size: 0.875rem; border-radius: var(--radius-sm); }
.btn--full { width: 100%; }
.btn--round { border-radius: var(--radius-full); }

/* --- Заголовки секций --- */
.section-label {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}
.section-label--green {
    background: var(--color-green);
    color: var(--color-white);
}
.section-label--light-green {
    background: #ecfdf5;
    color: var(--color-green);
}
.section-label--white {
    background: var(--color-white);
    color: var(--color-green);
    border: 1px solid var(--color-slate-200);
    box-shadow: var(--shadow-card);
}

.section-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--color-slate-900);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.section-title span { color: var(--color-green); }

.section-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-slate-500);
}

@media (min-width: 768px) {
    .section-title { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
    .section-title--xl { font-size: 3rem; }
}
@media (max-width:1024px) {
	.hero__cta {
		justify-content: center;
	}
}

/* --- Карточка (базовая) --- */
.card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-slate-200);
    box-shadow: var(--shadow-card);
    transition: all 0.2s;
    overflow: hidden;
}
.card:hover {
    box-shadow: 0 20px 40px -8px rgba(0,0,0,0.1);
}

/* --- Переходы для видимости --- */
.invisible { visibility: hidden; }
.group:hover .group-hover-visible { visibility: visible; }


/* ==========================================================================
   FILE: css/header.css
   ========================================================================== */

/* ==============================
   HEADER — Шапка сайта
   ============================== */

.header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    padding: 0 1rem;
    pointer-events: none;
}

@media (min-width: 640px) {
    .header-wrap { top: 1rem; }
}

.header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 1rem;
    box-shadow: var(--shadow-header);
    pointer-events: auto;
    transition: all 0.3s;
}

/* Логотип */
.header__logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
}

.header__logo-name {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-slate-900);
    line-height: 1;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .header__logo-name { font-size: 1.5rem; }
}

.header__logo-name span { color: var(--color-green); }

.header__logo-tagline {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--color-slate-500);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1;
}

/* Навигация */
.header__nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .header__nav { display: flex; }
}

.header__nav-item {
    position: relative;
    padding: 0.5rem 0;
}

.header__nav-btn {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-slate-700);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    transition: color 0.2s;
}
.header__nav-btn:hover { color: var(--color-green); }

.header__nav-btn i {
    font-size: 0.625rem;
    margin-top: 1px;
    transition: transform 0.2s;
}
.header__nav-item:hover .header__nav-btn i {
    transform: rotate(180deg);
}

.header__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.5rem;
    width: 14rem;
    background: var(--color-white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-slate-100);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
    z-index: 50;
}

.header__nav-item:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    overflow-y: auto;
}

.header__dropdown a {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-slate-700);
    text-decoration: none;
    transition: all 0.15s;
}
.header__dropdown a:hover {
    background: var(--color-slate-50);
    color: var(--color-green);
}

.header__nav-link {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-slate-700);
    text-decoration: none;
    transition: color 0.2s;
}
.header__nav-link:hover { color: var(--color-green); }

/* Правая часть шапки */
.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .header__actions { gap: 1.5rem; }
}

.header__call-btn {
    display: none;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

@media (min-width: 1024px) {
    .header__call-btn { display: block; }
}

/* Телефон */
.header__phone {
    display: none;
    flex-direction: column;
    align-items: flex-end;
}

@media (min-width: 640px) {
    .header__phone { display: flex; }
}

.header__phone-link {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-slate-900);
    text-decoration: none;
    line-height: 1;
    transition: color 0.2s;
}
.header__phone-link:hover { color: var(--color-green); }

@media (min-width: 768px) {
    .header__phone-link { font-size: 1.5rem; }
}

.header__phone-status {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.375rem;
}

.header__phone-dot {
    position: relative;
    display: inline-flex;
    width: 0.5rem;
    height: 0.5rem;
}

.header__phone-dot-ping {
    position: absolute;
    display: inline-flex;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background: var(--color-green);
    opacity: 0.75;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.header__phone-dot-core {
    position: relative;
    display: inline-flex;
    border-radius: 50%;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--color-green);
}

.header__phone-label {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--color-slate-500);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ==============================
   БУРГЕР-КНОПКА
   ============================== */

.header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.375rem;
    border-radius: 0.625rem;
    flex-shrink: 0;
    transition: background 0.2s;
}

.header__burger:hover {
    background: var(--color-slate-100);
}

.header__burger span {
    display: block;
    height: 2px;
    background: var(--color-slate-900);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity   0.25s ease,
                width     0.25s ease;
    transform-origin: center;
}

.header__burger span:nth-child(1) { width: 22px; }
.header__burger span:nth-child(2) { width: 16px; }
.header__burger span:nth-child(3) { width: 22px; }

/* Состояние «крестик» */
.header__burger.is-open span:nth-child(1) {
    width: 22px;
    transform: translateY(7px) rotate(45deg);
}
.header__burger.is-open span:nth-child(2) {
    opacity: 0;
    width: 0;
}
.header__burger.is-open span:nth-child(3) {
    width: 22px;
    transform: translateY(-7px) rotate(-45deg);
}

/* Скрыть на десктопе */
@media (min-width: 1024px) {
    .header__burger    { display: none; }
    .header__nav-close { display: none; }
}

/* ==============================
   МОБИЛЬНОЕ МЕНЮ (DRAWER)
   ============================== */

/* Оверлей-фон */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 49;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* Drawer — только на мобильных */
@media (max-width: 1023px) {
    .header__nav {
        display: flex !important;           /* перебиваем display:none */
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: min(22rem, 88vw);
        height: 100dvh;
        background: var(--color-white);
        z-index: 50;
        padding: 5.5rem 2rem 2rem;
        box-shadow: -12px 0 48px rgba(0, 0, 0, 0.12);
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        gap: 0;
        border-left: 1px solid var(--color-slate-100);
    }

    .header__nav.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    /* Пункты навигации в drawer */
    .header__nav-item {
        border-bottom: 1px solid var(--color-slate-100);
    }

    .header__nav-btn {
        width: 100%;
        padding: 1rem 0;
        font-size: 1rem;
        justify-content: space-between;
        color: var(--color-slate-900);
    }

    .header__nav-btn i {
        transition: transform 0.25s ease;
    }

    /* Dropdown как аккордеон */
    .header__dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0 0 0.75rem 1rem;
        width: 100%;
        display: none;           /* управляется JS */
        flex-direction: column;
        gap: 0;
    }

    .header__dropdown.is-open {
        display: flex;
    }

    .header__dropdown a {
        padding: 0.625rem 0.75rem;
        font-size: 0.9375rem;
        border-radius: 0.5rem;
        color: var(--color-slate-600);
    }

    .header__dropdown a:hover {
        background: var(--color-slate-50);
        color: var(--color-green);
    }

    .header__nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
        font-weight: 700;
        color: var(--color-slate-900);
        border-bottom: 1px solid var(--color-slate-100);
    }

    /* Кнопка закрытия внутри drawer */
    .header__nav-close {
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        width: 2.25rem;
        height: 2.25rem;
        border-radius: 50%;
        border: none;
        background: var(--color-slate-100);
        color: var(--color-slate-600);
        font-size: 1.125rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
    }

    .header__nav-close:hover {
        background: var(--color-slate-200);
    }
}


/* ==========================================================================
   FILE: css/hero.css
   ========================================================================== */

/* ==============================
   HERO — Главный экран
   ============================== */

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 1rem 4rem;
    position: relative;
    flex-grow: 1;
}

@media (min-width: 640px) {
    .hero { padding-top: 7rem; }
}

@media (min-width: 1024px) {
    .hero { padding-left: 1.5rem; padding-right: 1.5rem; }
}

.hero__blob {
    position: absolute;
    top: 5rem;
    left: -10rem;
    width: 24rem;
    height: 24rem;
    background: rgba(21, 184, 83, 0.1);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .hero__grid {
        grid-template-columns: 5fr 5fr;
        gap: 3rem;
        align-items: center;
    }
}
@media (max-width:640px) {
	.hero__grid {
		gap: 0;
	}
	.hero__visual {
		margin-bottom: -10px;
		z-index: -1;
	}
}
/* Левая колонка.
   display:contents на мобильных — дети становятся прямыми grid-items,
   что позволяет вставить hero__visual (order:3) между заголовком и кнопками. */
.hero__content {
    display: contents;
}

/* Порядок элементов внутри grid на мобильных */
.hero__badge    { order: 1; margin-bottom: 0; }
.hero__title    { order: 2; }
.hero__cta      { order: 4; margin-bottom: 0; }
.hero__features { order: 5; }

/* Десктоп: восстанавливаем обычный блочный контейнер */
@media (min-width: 1024px) {
    .hero__content {
        display: block;
        position: relative;
        z-index: 10;
    }
    .hero__badge    { order: 0; margin-bottom: 2rem; }
    .hero__title    { order: 0; }
    .hero__cta      { order: 0; margin-bottom: 3rem; }
    .hero__features { order: 0; }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid var(--color-slate-100);
    margin-bottom: 2rem;
}

.hero__badge-stars {
    display: flex;
    gap: 2px;
    color: #facc15;
}

.hero__badge-stars i { font-size: 0.75rem; }

.hero__badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-slate-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--color-slate-900);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.hero__title span { color: var(--color-green); }

@media (min-width: 640px) {
    .hero__title { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
    .hero__title { font-size: 2.5rem; }
}

.hero__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero__cta {
        flex-direction: row;
        align-items: center;
    }
}

.hero__cta-note {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-slate-500);
    text-align: center;
}

@media (min-width: 640px) {
    .hero__cta-note { text-align: left; }
}

.hero__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    list-style: none;
}

.hero__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-slate-800);
}

.hero__features-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #ecfdf5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green);
    flex-shrink: 0;
}

/* Правая колонка / мобильное изображение */
.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    order: 3; /* между заголовком (2) и кнопками (4) */
}

@media (min-width: 1024px) {
    .hero__visual {
        min-height: 400px;
        order: 0; /* сбрасываем — на десктопе grid сам позиционирует колонку */
    }
}

.hero__visual-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(21, 184, 83, 0.2);
    border-radius: 50%;
    filter: blur(80px);
}

/* Изображение */
.hero__img {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 260px; /* ограничиваем на мобильных */
    height: auto;
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 32px 64px rgba(21, 184, 83, 0.3));
    user-select: none;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .hero__img { max-width: 620px; } /* полный размер на десктопе */
}



/* ==========================================================================
   FILE: css/phone-widget.css
   ========================================================================== */

/* ==============================
   PHONE-WIDGET — Плавающая кнопка
   ============================== */

.phone-widget {
    position: fixed;
    bottom: 6rem;
    right: 1rem;
    z-index: 100;
    width: 3rem;
    height: 3rem;
    background: var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    transition: transform 0.2s;
    text-decoration: none;
}

.phone-widget:hover { transform: scale(1.1); }

.phone-widget::before,
.phone-widget::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--color-green);
    z-index: -1;
    animation: radar 2s linear infinite;
}

.phone-widget::after { animation-delay: 1s; }

.phone-widget i {
    font-size: 1.6rem;
    color: var(--color-white);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@media (min-width: 768px) {
    .phone-widget {
        bottom: 1rem;
        right: 1rem;
        width: 3rem;
        height: 3rem;
    }
    .phone-widget i { font-size: 1.6rem; }
}


/* ==========================================================================
   FILE: css/promo.css
   ========================================================================== */

/* ==============================
   PROMO — Акции / Спецпредложения
   ============================== */

.promo {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
    position: relative;
    z-index: 20;
}

@media (min-width: 768px) {
    .promo { padding: 4rem 1.5rem; }
}

.promo__header {
    text-align: center;
    margin-bottom: 3rem;
}

.promo__grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.promo__grid::-webkit-scrollbar {
    display: none;
}

/* Карточка акции */
.promo__card {
    background: var(--color-white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-slate-100);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    flex: 0 0 280px;
    scroll-snap-align: start;
}

@media (min-width: 480px) {
    .promo__card {
        flex: 0 0 320px;
    }
}

.promo__card:hover {
    box-shadow: 0 20px 40px -8px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

/* Хит-карточка (зелёная) */
.promo__card--hit {
    background: var(--color-green);
    border: none;
    position: relative;
    z-index: 10;
    color: var(--color-white);
}

@media (min-width: 1200px) {
    .promo__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        overflow-x: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
    }

    .promo__card {
        flex: none;
        scroll-snap-align: none;
    }

    .promo__card--hit { transform: scale(1.05); }
    .promo__card--hit:hover { transform: scale(1.05) translateY(-4px); }
}

.promo__card-img-wrap {
    height: 12rem;
    position: relative;
    overflow: hidden;
    background: var(--color-slate-100);
}

.promo__card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    loading: lazy;
}

.promo__card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-white);
    color: var(--color-slate-900);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.promo__card--hit .promo__card-badge {
    top: 1rem;
    right: 1rem;
    left: auto;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    color: var(--color-white);
}

.promo__card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.promo__card--hit .promo__card-body { padding: 2rem; }

.promo__card-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255,255,255,0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.promo__card-icon i { font-size: 1.5rem; }

.promo__card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-slate-900);
    margin-bottom: 0.5rem;
}

.promo__card--hit h3 {
    font-size: 1.5rem;
    color: var(--color-white);
}

.promo__card--hit h3 span {
    display: block;
    font-size: 1.875rem;
    font-weight: 800;
    color: rgba(255,255,255,0.9);
    margin-top: 0.25rem;
    margin-bottom: 1rem;
}

.promo__card p {
    font-size: 0.875rem;
    color: var(--color-slate-600);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.promo__card--hit p {
    color: rgba(240, 253, 244, 0.9);
    margin-bottom: 2rem;
}


/* ==========================================================================
   FILE: css/prices.css
   ========================================================================== */

/* ==============================
   PRICES — Цены и этапы работы
   ============================== */

.prices {
    background: var(--color-white);
    padding: 5rem 0;
    border-top: 1px solid var(--color-slate-100);
    border-bottom: 1px solid var(--color-slate-100);
}

.prices__header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Сетка цен */
.prices__grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin-bottom: 4rem;
}

.prices__grid::-webkit-scrollbar {
    display: none;
}

.prices__card {
    background: var(--color-slate-50);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--color-slate-100);
    transition: border-color 0.2s;
    flex: 0 0 250px;
    scroll-snap-align: start;
}

.prices__card:hover { border-color: var(--color-green); }

@media (min-width: 576px) {
    .prices__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        overflow-x: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
    }
    
    .prices__card {
        flex: none;
        scroll-snap-align: none;
    }
}

@media (min-width: 1024px) {
    .prices__grid { grid-template-columns: repeat(4, 1fr); }
}

.prices__card h3 {
    font-weight: 700;
    color: var(--color-slate-800);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.prices__card p {
    font-size: 0.75rem;
    color: var(--color-slate-500);
    margin-bottom: 1.5rem;
}

.prices__price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-slate-900);
    margin-bottom: 1.5rem;
}

/* Этапы работы */
.prices__steps {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.prices__steps::-webkit-scrollbar {
    display: none;
}

.prices__step {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 240px;
    scroll-snap-align: start;
}

@media (min-width: 576px) {
    .prices__steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        overflow-x: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
    }
    
    .prices__step {
        flex: none;
        scroll-snap-align: none;
    }
}

@media (min-width: 1024px) {
    .prices__steps { grid-template-columns: repeat(4, 1fr); }
}

.prices__step-num {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #ecfdf5;
    color: var(--color-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.prices__step-num--active {
    background: var(--color-green);
    color: var(--color-white);
    box-shadow: 0 2px 8px rgba(21,184,83,0.3);
}

.prices__step h4 {
    font-weight: 700;
    color: var(--color-slate-900);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.prices__step p {
    font-size: 0.875rem;
    color: var(--color-slate-500);
    line-height: 1.6;
}


/* ==========================================================================
   FILE: css/seo-text.css
   ========================================================================== */

/* ==============================
   SEO-TEXT — Текстовые блоки CMS
   ============================== */

.seo-text {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

@media (min-width: 768px) {
    .seo-text { padding: 3rem 1.5rem; }
}

.seo-text__inner {
    background: var(--color-white);
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-slate-200);
}

.seo-text__inner h2 {
    margin-bottom: 20px;
}

/* Каскадная стилизация для CMS-контента */
.seo-text p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-slate-800);
    margin-bottom: 0.75rem;
}

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

.seo-text strong { color: var(--color-green); }

.seo-text ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
}

.seo-text ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    color: var(--color-slate-800);
    line-height: 1.6;
}

.seo-text ul li::before {
    content: "✓";
    color: var(--color-green);
    font-weight: 700;
    position: absolute;
    left: 0;
}

.seo-text p.mt { margin-top: 1rem; }


/* ==========================================================================
   FILE: css/trust.css
   ========================================================================== */

/* ==============================
   TRUST — Почему нам доверяют
   ============================== */

.trust {
    background: #064e3b;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.trust__container {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.trust__container > div {
    min-width: 0;
}

@media (min-width: 1024px) {
    .trust__container { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5rem; }
}

.trust h2 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .trust h2 { font-size: 3rem; }
}

.trust__cards {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.trust__cards::-webkit-scrollbar {
    display: none;
}

.trust__card {
    background: rgba(6, 95, 70, 0.4);
    border: 1px solid rgba(6, 95, 70, 0.5);
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(4px);
    transition: border-color 0.2s;
    flex: 0 0 250px;
    scroll-snap-align: start;
}

.trust__card:hover { border-color: var(--color-green); }

@media (min-width: 768px) {
    .trust__cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        overflow-x: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
    }
    
    .trust__card {
        flex: none;
        scroll-snap-align: none;
    }
}

.trust__card-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(6, 95, 70, 0.5);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6ee7b7;
    margin-bottom: 1rem;
}

.trust__card-icon i { font-size: 1.25rem; }

.trust__card h4 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.trust__card p {
    font-size: 0.875rem;
    color: rgba(209, 250, 229, 0.7);
    font-weight: 500;
    line-height: 1.5;
}

/* Правая часть — большой блок со статистикой */
.trust__stat-wrap {
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .trust__stat-wrap { justify-content: flex-end; }
}

.trust__stat-box {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    width: 100%;
    max-width: 26rem;
    aspect-ratio: 1;
    border-radius: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    transition: transform 0.5s;
}

.trust__stat-box:hover { transform: scale(1.05); }

.trust__stat-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.04em;
}

@media (min-width: 768px) {
    .trust__stat-number { font-size: 6rem; }
}

.trust__stat-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: #a7f3d0;
    line-height: 1.4;
}

.trust__stat-badge {
    position: absolute;
    bottom: -1.5rem;
    background: var(--color-white);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid var(--color-slate-100);
}

.trust__stat-badge-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(21,184,83,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green);
    flex-shrink: 0;
}

.trust__stat-badge-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-slate-900);
    text-align: left;
}

.trust__stat-badge-text span {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-slate-500);
    margin-top: 0.125rem;
}


/* ==========================================================================
   FILE: css/statistics.css
   ========================================================================== */

/* ==============================
   STATISTICS — Прогрессбары
   ============================== */

.statistics {
    background: var(--color-slate-50);
    padding: 6rem 0;
    border-bottom: 1px solid var(--color-slate-200);
}

.statistics__header {
    text-align: center;
    margin-bottom: 4rem;
}

.statistics__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .statistics__grid { grid-template-columns: 1fr 1fr; }
}

/* Левая колонка — сравнительная картинка */
.statistics__compare {
    display: flex;
    justify-content: center;
    position: relative;
}

.statistics__compare-box {
    width: 100%;
    max-width: 31rem;
    display: flex;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-slate-200);
}

.statistics__compare-half {
    width: 50%;
    position: relative;
    aspect-ratio: 1;
}

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

.statistics__compare-half--grey img {
    filter: grayscale(1);
    opacity: 0.7;
}

.statistics__compare-label {
    position: absolute;
    bottom: 1rem;
    left: 0;
    width: 100%;
    text-align: center;
}

.statistics__compare-label span {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    color: var(--color-slate-800);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.statistics__compare-half--green .statistics__compare-label span {
    background: var(--color-green);
    color: var(--color-white);
}

/* Правая колонка — прогрессбары */
.statistics__panel {
    background: var(--color-white);
    border: 1px solid var(--color-slate-200);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .statistics__panel { padding: 2.5rem; }
}

.statistics__bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.statistics__bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-slate-800);
    margin-bottom: 0.5rem;
}

.statistics__bar-label span:last-child { color: var(--color-slate-500); }

.statistics__bar-track {
    width: 100%;
    background: var(--color-slate-100);
    border-radius: var(--radius-full);
    height: 12px;
    overflow: hidden;
}

.statistics__bar-fill {
    height: 100%;
    border-radius: var(--radius-full);
}

.statistics__bar-fill--81 {
    background: #10b981;
    width: 81%;
}

.statistics__bar-fill--74 {
    background: #34d399;
    width: 74%;
}

.statistics__bar-fill--45 {
    background: #6ee7b7;
    width: 45%;
}

.statistics__cta {
    border-top: 1px solid var(--color-slate-100);
    padding-top: 2rem;
    text-align: center;
}

.statistics__cta h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-slate-900);
    margin-bottom: 1.5rem;
}


/* ==========================================================================
   FILE: css/article.css
   ========================================================================== */

/* ==============================
   ARTICLE — Статейные блоки
   ============================== */

.article {
    padding: 5rem 1rem;
}

.article--text {
    padding-top: 8rem;
}

.article--light { background: var(--color-white); border-top: 1px solid var(--color-slate-100); border-bottom: 1px solid var(--color-slate-100); }
.article--grey  { background: var(--color-slate-50); border-top: 1px solid var(--color-slate-200); border-bottom: 1px solid var(--color-slate-200); }

.article__inner {
    max-width: 56rem;
    margin: 0 auto;
}

.article__header {
    margin-bottom: 2.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .article__header { text-align: left; }
}

.article__title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--color-slate-900);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.article__title span { color: var(--color-green); }

@media (min-width: 768px) {
    .article__title { font-size: 2.25rem; }
}

.article__hero-img {
    width: 100%;
    height: 18rem;
    margin-bottom: 2.5rem;
    border-radius: 1.5rem;
    overflow: hidden;
    background: var(--color-slate-100);
    border: 1px solid var(--color-slate-200);
}

@media (min-width: 768px) {
    .article__hero-img { height: 25rem; }
}

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

/* Контент статьи */
.article__body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: var(--color-slate-700);
    font-weight: 500;
    line-height: 1.7;
}

.article__body--boxed {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--color-slate-100);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

@media (min-width: 768px) {
    .article__body--boxed { padding: 2rem; }
}

.article__body blockquote {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-slate-900);
    border-left: 4px solid var(--color-green);
    padding-left: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background: var(--color-slate-50);
    border-radius: 0 0.75rem 0.75rem 0;
    margin: 0;
}

@media (min-width: 768px) {
    .article__body blockquote { font-size: 1.25rem; }
}

.article__body p { margin: 0; }

.article__body h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-slate-900);
    padding-top: 1.5rem;
    margin-bottom: 0;
}

.article__body strong { color: var(--color-green); }

/* Список преимуществ */
.article__body ul {
    background: var(--color-slate-50);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--color-slate-100);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
}

@media (min-width: 768px) {
    .article__body ul { padding: 2rem; }
}

.article__body ul li {
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

.article__body ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--color-green);
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-size: 1rem;
}

.article__body ul li strong { color: inherit; font-weight: 700; }


/* ==========================================================================
   FILE: css/services.css
   ========================================================================== */

/* ==============================
   SERVICES — Слайдер услуг
   ============================== */

.services {
    padding: 5rem 0;
    background: var(--color-slate-50);
    border-bottom: 1px solid var(--color-slate-200);
    overflow: hidden;
    position: relative;
}

.services__header {
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .services__header { text-align: left; }
}

/* Баннер срочного вызова */
.services__cta-banner {
    background: var(--color-white);
    border-radius: 2.25rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(21,184,83,0.3);
    box-shadow: var(--shadow-card);
    margin-bottom: 3rem;
    max-width: 62rem;
}

@media (min-width: 768px) {
    .services__cta-banner { padding: 2rem; }
}

@media (min-width: 1024px) {
    .services__cta-banner { flex-direction: row; }
}

.services__cta-badge {
    position: relative;
    top: auto;
    right: auto;
    background: var(--color-green);
    color: var(--color-white);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(21,184,83,0.4), 0 0 0 3px #fff;
    transform: rotate(3deg);
    z-index: 30;
    order: 2;
    align-self: center;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .services__cta-badge {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        order: unset;
        margin-bottom: 0;
        align-self: auto;
    }
}

.services__cta-text {
    flex: 1;
    text-align: center;
    z-index: 10;
    order: 1;
}

@media (min-width: 1024px) {
    .services__cta-text { text-align: left; }
}

.services__cta-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-slate-900);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .services__cta-text h3 { font-size: 1.875rem; }
}

.services__cta-text p {
    font-size: 0.875rem;
    color: var(--color-slate-500);
    font-weight: 500;
}

.services__cta-text p span {
    color: var(--color-green);
    font-weight: 700;
}

.services__cta-actions {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    z-index: 10;
    order: 3;
}

@media (min-width: 640px) {
    .services__cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .services__cta-actions {
        width: auto;
        justify-content: flex-start;
    }
}

/* Фильтры */
.services__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .services__filters { justify-content: flex-start; }
}

.services__filter-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

.services__filter-btn--active {
    background: var(--color-slate-900);
    color: var(--color-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-color: var(--color-slate-900);
}

.services__filter-btn--inactive {
    background: var(--color-white);
    color: var(--color-slate-600);
    border-color: var(--color-slate-200);
}

.services__filter-btn--inactive:hover {
    background: var(--color-slate-50);
}

/* Слайдер */
.services__slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2.5rem;
    padding-top: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.services__slider::-webkit-scrollbar { display: none; }

/* Карточка услуги */
.services__card {
    background: var(--color-white);
    border: 1px solid var(--color-slate-200);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    flex-shrink: 0;
    width: 240px;
    height: 220px;
    scroll-snap-align: center;
    transition: all 0.2s;
}

.services__card:hover {
    border-color: var(--color-green);
    box-shadow: var(--shadow-card);
}

.services__card-icon {
    width: 4rem;
    height: 4rem;
    background: var(--color-slate-50);
    color: var(--color-green);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid var(--color-slate-100);
    transition: background 0.2s;
}

.services__card:hover .services__card-icon {
    background: #ecfdf5;
}

.services__card-icon i { font-size: 1.5rem; }

.services__card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-slate-800);
    line-height: 1.3;
}

/* Навигация карусели */
.services__nav,
.portfolio__nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.services__dots,
.portfolio__dots,
.faq__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-slate-300);
    cursor: pointer;
    transition: background 0.3s;
    border: none;
    padding: 0;
}

.carousel-dot.active { background: var(--color-green); }

.carousel-nav-btn {
    background: var(--color-slate-200);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.125rem;
    color: var(--color-slate-900);
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav-btn:hover {
    background: var(--color-green);
    color: var(--color-white);
}

.carousel-nav-btn:disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* Скрытие nav/dots на десктопе для услуг */
@media (min-width: 769px) {
    .services__nav,
    .services__dots {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .services__nav,
    .services__dots {
        display: flex !important;
    }
}


/* ==========================================================================
   FILE: css/process.css
   ========================================================================== */

/* ==============================
   PROCESS — Этапы обработки
   ============================== */

.process {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1rem;
}

@media (min-width: 768px) {
    .process { padding-left: 1.5rem; padding-right: 1.5rem; }
}

.process__inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .process__inner { flex-direction: row; align-items: stretch; }
}

/* Левая часть — шаги */
.process__steps-wrap {
    flex: 1;
    min-width: 0;
}

.process__steps-wrap h2 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--color-slate-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.process__steps-wrap h2 span { color: var(--color-green); }

@media (min-width: 768px) {
    .process__steps-wrap h2 { font-size: 2.25rem; }
}

.process__steps-wrap > p {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-slate-500);
    margin-bottom: 2.5rem;
}

.process__steps {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.process__steps::-webkit-scrollbar {
    display: none;
}

.process__step {
    background: var(--color-slate-50);
    border: 1px solid var(--color-slate-100);
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.2s;
    flex: 0 0 260px;
    scroll-snap-align: start;
}

.process__step:hover { border-color: var(--color-green); }

@media (min-width: 640px) {
    .process__steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        overflow-x: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
    }
    
    .process__step {
        flex: none;
        scroll-snap-align: none;
    }
}

@media (min-width: 1024px) {
    .process__steps { grid-template-columns: repeat(3, 1fr); }
}

.process__step-num {
    font-size: 3rem;
    font-weight: 800;
    color: #bbf7d0;
    line-height: 1;
}

.process__step h3 {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-slate-900);
    margin-bottom: 0.5rem;
}

.process__step p {
    font-size: 0.875rem;
    color: var(--color-slate-500);
    font-weight: 500;
    line-height: 1.6;
}

/* Правая часть — CTA-блок */
.process__cta {
    width: 100%;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .process__cta { width: 23.75rem; }
}

.process__cta-box {
    background: var(--color-slate-900);
    border: 1px solid #1e293b;
    border-radius: 2rem;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-card);
    height: 100%;
    min-height: 280px;
}

.process__cta-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-green);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-glow);
    white-space: nowrap;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.process__cta-title {
    text-align: center;
    padding-top: 1rem;
    margin-bottom: 2rem;
}

.process__cta-title h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
}

.process__cta-title h4 span { color: var(--color-green); display: block; }

.process__cta-note {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-slate-400);
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
}

.process__cta-note i { color: var(--color-green); }


/* ==========================================================================
   FILE: css/equipment.css
   ========================================================================== */

/* ==============================
   EQUIPMENT — Оборудование
   ============================== */

.equipment {
    background: var(--color-slate-100);
    padding: 5rem 1rem;
    border-top: 1px solid var(--color-slate-200);
}

.equipment__header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Карточки оборудования */
.equipment__grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.equipment__grid::-webkit-scrollbar {
    display: none;
}

.equipment__card {
    background: var(--color-white);
    border: 1px solid var(--color-slate-200);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 280px;
    scroll-snap-align: start;
}

.equipment__card--featured {
    border: 2px solid var(--color-green);
    box-shadow: var(--shadow-card);
    position: relative;
}

@media (min-width: 768px) {
    .equipment__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        overflow-x: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
    }
    
    .equipment__card {
        flex: none;
        scroll-snap-align: none;
    }

    .equipment__card--featured {
        transform: translateY(-1rem);
    }
}

.equipment__card-top-badge {
    position: absolute;
    top: -1rem;
    background: var(--color-green);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.equipment__card-icon {
    background: var(--color-slate-50);
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green);
    margin-top: 0.5rem;
}

.equipment__card--featured .equipment__card-icon {
    background: #ecfdf5;
}

.equipment__card-icon i { font-size: 1.875rem; }

.equipment__card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-slate-900);
    margin-bottom: 0.75rem;
}

.equipment__card p {
    font-size: 0.875rem;
    color: var(--color-slate-500);
    font-weight: 500;
    line-height: 1.6;
    flex-grow: 1;
}


/* ==========================================================================
   FILE: css/specialists.css
   ========================================================================== */

/* ==============================
   SPECIALISTS — Наши специалисты
   ============================== */

.specialists {
    background: var(--color-white);
    padding: 5rem 1rem;
    border-top: 1px solid var(--color-slate-200);
}

.specialists__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.specialists__left {
    min-width: 0;
}

@media (min-width: 1024px) {
    .specialists__inner { grid-template-columns: 7fr 5fr; }
}

.specialists__left .section-title {
    margin-bottom: 0.5rem;
    text-align: left;
}

.specialists__left .section-subtitle {
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
    color: var(--color-slate-500);
    font-weight: 500;
}

.specialists__team {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.specialists__team::-webkit-scrollbar {
    display: none;
}

.specialists__team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 130px;
    scroll-snap-align: start;
}

@media (min-width: 768px) {
    .specialists__team {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        overflow-x: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
    }
    
    .specialists__team-member {
        flex: none;
        scroll-snap-align: none;
    }
}

.specialists__avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--color-slate-200);
    border: 2px solid var(--color-white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-slate-600);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.specialists__avatar img {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.specialists__team-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-slate-900);
}

.specialists__team-role {
    font-size: 0.75rem;
    color: var(--color-green);
    font-weight: 500;
}

/* CTA-блок специалистов */
.specialists__cta {
    position: relative;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .specialists__cta { margin-top: 0; }
}

.specialists__cta-card {
    background: var(--color-slate-50);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--color-slate-200);
    box-shadow: var(--shadow-card);
    text-align: center;
}

.specialists__cta-card h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-slate-900);
    margin-bottom: 1.5rem;
}


/* ==========================================================================
   FILE: css/portfolio.css
   ========================================================================== */

/* ==============================
   PORTFOLIO — Примеры работ
   ============================== */

.portfolio {
    padding-top: 5rem;
    padding-bottom: 4rem;
    background: var(--color-white);
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--color-slate-200);
}

.portfolio__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.portfolio__subtitle {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    color: var(--color-slate-500);
    margin-bottom: 2.5rem;
}

/* Фильтры */
.portfolio__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    max-width: 62rem;
    margin-left: auto;
    margin-right: auto;
}

.portfolio__filter-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

.portfolio__filter-btn--active {
    background: var(--color-slate-900);
    color: var(--color-white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.portfolio__filter-btn--inactive {
    background: var(--color-slate-50);
    color: var(--color-slate-600);
    border-color: var(--color-slate-200);
}

.portfolio__filter-btn--inactive:hover {
    background: var(--color-slate-100);
}

/* Слайдер */
.portfolio__slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1.5rem;
    padding: 0 1rem 1rem 1rem;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.portfolio__slider::-webkit-scrollbar { display: none; }

/* Карточка портфолио */
.portfolio__item {
    flex: 0 0 auto;
    width: 280px;
    max-width: 85vw;
    scroll-snap-align: start;
    background: var(--color-white);
    border: 1px solid var(--color-slate-200);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border-radius: 1.5rem;
    overflow: hidden;
    padding: 0.5rem;
    transition: all 0.2s;
}

.portfolio__item:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

/* Скрытие при фильтрации */
.portfolio__item.hidden {
    display: none;
}

@media (min-width: 768px) {
    .portfolio__item { width: 320px; max-width: 40vw; }
}

@media (min-width: 1024px) {
    .portfolio__item { width: 340px; max-width: 30vw; }
}

.portfolio__item-img {
    height: 14rem;
    background: var(--color-slate-100);
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
}

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

.portfolio__item-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-slate-900);
    border: 1px solid rgba(255,255,255,0.9);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.portfolio__item-body { padding: 1.5rem; }

.portfolio__item-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.portfolio__item-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--color-green);
    flex-shrink: 0;
}

.portfolio__item-category {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--color-slate-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.portfolio__item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-slate-900);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.portfolio__item-desc {
    background: var(--color-slate-50);
    border: 1px solid var(--color-slate-100);
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.portfolio__item-desc p {
    font-size: 0.875rem;
    color: var(--color-slate-600);
    font-weight: 500;
    line-height: 1.5;
}

.portfolio__no-results {
    display: none;
    color: var(--color-slate-500);
    padding: 2.5rem 0;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-align: center;
}

.portfolio__no-results.visible { display: block; }

/* Навигация — всегда видна */
.portfolio__nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.portfolio__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}


/* ==========================================================================
   FILE: css/brands-payment.css
   ========================================================================== */

/* ==============================
   BRANDS — Бренды препаратов
   ============================== */

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

.brands__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .brands__inner { flex-direction: row; }
}

.brands h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-slate-900);
    text-align: center;
}

@media (min-width: 768px) {
    .brands h2 { text-align: left; }
}

.brands h2 span { color: var(--color-green); display: block; }

.brands__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem 2rem;
    opacity: 0.5;
    filter: grayscale(1);
    transition: all 0.4s;
}

.brands__logos:hover {
    opacity: 1;
    filter: grayscale(0);
}

.brands__logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-slate-600);
}

/* ==============================
   PAYMENT — Способы оплаты
   ============================== */

.payment {
    background: var(--color-slate-50);
    padding: 4rem 0;
    border-top: 1px solid var(--color-slate-200);
    border-bottom: 1px solid var(--color-slate-200);
}

.payment__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .payment__inner { flex-direction: row; }
}

.payment__title-wrap {
    text-align: center;
}

@media (min-width: 1024px) {
    .payment__title-wrap {
        width: 25%;
        text-align: left;
    }
}

.payment__title-wrap h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-slate-900);
    margin-bottom: 0.5rem;
}

.payment__title-wrap p {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-slate-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.payment__methods {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
}

.payment__methods::-webkit-scrollbar {
    display: none;
}

@media (min-width: 576px) {
    .payment__methods {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        overflow-x: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
    }
}

@media (min-width: 768px) {
    .payment__methods { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
    .payment__methods { width: 75%; }
}

.payment__method {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--color-slate-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.2s;
    flex: 0 0 160px;
    scroll-snap-align: start;
}

@media (min-width: 576px) {
    .payment__method {
        flex: none;
        scroll-snap-align: none;
    }
}

.payment__method:hover {
    border-color: var(--color-green);
    box-shadow: 0 4px 12px rgba(21,184,83,0.1);
}

.payment__method i {
    font-size: 1.5rem;
    color: var(--color-green);
    margin-bottom: 0.75rem;
}

.payment__method span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-slate-800);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* ==========================================================================
   FILE: css/faq.css
   ========================================================================== */

/* ==============================
   FAQ — Часто задаваемые вопросы
   ============================== */

.faq {
    padding: 5rem 0;
    background: var(--color-bg);
}

.faq .section-title {
    margin-bottom: 2.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .faq .section-title {
        text-align: left;
    }
}

/* Двухколоночный макет */
.faq__layout {
    display: flex;
    gap: 2rem;
}

/* Левая колонка — сетка вопросов */
.faq__questions {
    flex: 0 0 55%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Тонкий красивый скроллбар для колонки вопросов */
.faq__questions::-webkit-scrollbar {
    width: 6px;
}
.faq__questions::-webkit-scrollbar-track {
    background: var(--color-slate-100);
    border-radius: var(--radius-full);
}
.faq__questions::-webkit-scrollbar-thumb {
    background: var(--color-slate-300);
    border-radius: var(--radius-full);
}
.faq__questions::-webkit-scrollbar-thumb:hover {
    background: var(--color-slate-400);
}

/* Правая колонка — панель ответов */
.faq__answer {
    flex: 1;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-slate-200);
    padding: 1.5rem;
    min-height: 200px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-slate-700);
    box-shadow: var(--shadow-card);
}

.faq__answer p {
    margin-bottom: 0.75rem;
}

.faq__answer p:last-child {
    margin-bottom: 0;
}

/* Кнопка вопроса */
.faq__question {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    color: var(--color-slate-900);
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    background: var(--color-white);
    border: 1px solid var(--color-slate-200);
    display: flex;
    align-items: center;
    user-select: none;
}

.faq__question:hover {
    background: var(--color-slate-100);
    border-color: var(--color-slate-300);
}

.faq__question.active {
    background: #f0fdf4; /* Светло-зеленый оттенок */
    border-left-color: var(--color-green);
    border-color: var(--color-green);
    color: var(--color-green);
}

/* Адаптивность */
@media (max-width: 1023px) {
    .faq__layout {
        flex-direction: column;
    }
    
    .faq__questions {
        flex: 1;
        grid-template-columns: 1fr;
        max-height: none;
        padding-right: 0;
        overflow-y: visible;
    }
    
    .faq__answer {
        min-height: 120px;
    }
}

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


/* ==========================================================================
   FILE: css/footer-modal.css
   ========================================================================== */

/* ==============================
   FOOTER — Подвал сайта
   ============================== */

.footer {
    background: var(--color-slate-900);
    color: var(--color-white);
    padding-top: 4rem;
    padding-bottom: 1rem;
    border-top: 4px solid var(--color-green);
    margin-top: auto;
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

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

/* Колонка 1 — логотип и реквизиты */
.footer__brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
}

.footer__brand-name span { color: var(--color-green); }

.footer__brand-desc {
    font-size: 0.875rem;
    color: var(--color-slate-400);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer__requisites {
    font-size: 0.75rem;
    color: var(--color-slate-500);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Колонка 2 — навигация */
.footer__nav-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__nav a {
    font-size: 0.875rem;
    color: var(--color-slate-400);
    text-decoration: none;
    transition: color 0.2s;
}

.footer__nav a:hover { color: var(--color-green); }

/* Колонка 3 — телефон */
.footer__contacts {
    text-align: left;
}

@media (min-width: 768px) {
    .footer__contacts { text-align: right; }
}

.footer__contacts-label {
    font-size: 0.75rem;
    color: var(--color-slate-400);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.footer__phone {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-white);
    text-decoration: none;
    display: block;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

.footer__phone:hover { color: var(--color-green); }

/* Нижняя строка */
.footer__bottom {
    padding-top: 1rem;
    border-top: 1px solid #1e293b;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    font-size: 0.75rem;
    color: var(--color-slate-500);
}

@media (min-width: 640px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer__bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer__bottom-links a {
    color: var(--color-slate-500);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ==============================
   FIXED-BTN — Фиксированная кнопка
   ============================== */

.fixed-btn {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 90;
    width: 90%;
    max-width: 320px;
}

/* ==============================
   MODAL — Модальное окно
   ============================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-overlay.is-open {
    display: flex;
}

.modal-overlay.is-visible {
    opacity: 1;
}

.modal {
    background: var(--color-white);
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 28rem;
    width: 100%;
    margin: 1rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    border: 1px solid var(--color-slate-100);
    transform: scale(0.95);
    transition: transform 0.3s;
}

.modal-overlay.is-visible .modal {
    transform: scale(1);
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-slate-900);
    letter-spacing: -0.02em;
}

.modal__close {
    background: var(--color-slate-50);
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-slate-400);
    transition: all 0.2s;
}

.modal__close:hover {
    background: var(--color-slate-100);
    color: var(--color-slate-600);
}

.modal__close i { font-size: 1.25rem; }

.modal__subtitle {
    font-size: 0.875rem;
    color: var(--color-slate-500);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.modal__subtitle strong { color: var(--color-slate-900); }

.modal__input {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    background: var(--color-slate-50);
    border: 1px solid var(--color-slate-200);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-slate-900);
    margin-bottom: 1rem;
    transition: all 0.2s;
    outline: none;
}

.modal__input:focus {
    border-color: var(--color-green);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(21,184,83,0.1);
}

.modal__input:last-of-type { margin-bottom: 1.5rem; }

.modal__privacy {
    font-size: 0.75rem;
    color: var(--color-slate-400);
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 500;
}

.modal__privacy a {
    color: var(--color-slate-400);
    text-decoration: underline;
    transition: color 0.2s;
}

.modal__privacy a:hover { color: var(--color-slate-600); }

/* Успех */
.modal__success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0;
}

.modal__success.is-visible { display: flex; }

.modal__success-icon {
    width: 4rem;
    height: 4rem;
    background: #ecfdf5;
    color: var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.modal__success-icon i { font-size: 1.875rem; }

.modal__success h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-slate-900);
    margin-bottom: 0.5rem;
}

.modal__success p {
    font-size: 0.875rem;
    color: var(--color-slate-500);
    font-weight: 500;
}
.sitemap {
    padding: 8rem 0 5rem;
}
.sitemap-list {
    list-style: none;
}
.sitemap__title {
    margin-bottom: 30px;
}
.sitemap-list a {
    text-decoration: none;
}

.contacts {
    padding: 4rem 0;
}

.contacts__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contacts__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contacts__map {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-slate-200);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    position: relative;
    min-height: 320px;
}

@media (min-width: 1024px) {
    .contacts__map {
        grid-column: span 2;
        min-height: 450px;
    }
}

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

.contacts__map-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-slate-900);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

@media (min-width: 640px) {
    .contacts__map-badge {
        right: auto;
        max-width: 400px;
    }
}

.contacts__info {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-slate-200);
    box-shadow: var(--shadow-card);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contacts__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-slate-900);
    margin-bottom: 1.5rem;
}

.contacts__list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contacts__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contacts__item-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--color-green-light);
    color: var(--color-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contacts__item-icon i {
    font-size: 1rem;
}

.contacts__item-content {
    display: flex;
    flex-direction: column;
}

.contacts__item-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-slate-900);
    margin-bottom: 0.125rem;
}

.contacts__item-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-slate-700);
    text-decoration: none;
    transition: color 0.2s;
}

.contacts__item-link:hover {
    color: var(--color-green);
}

.contacts__item-link--phone {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-green);
}

.contacts__item-link--phone:hover {
    text-decoration: underline;
}

.contacts__item-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-slate-700);
}
