    /* ===== БАЗОВЫЕ СТИЛИ И ПЕРЕМЕННЫЕ ===== */
    :root {
        /* Цветовая схема */
        --primary: #FF5A5F;               /* Основной акцентный цвет */
        --primary-dark: #E04E53;          /* Темный оттенок основного цвета */
        --primary-light: #FFEEEF;         /* Светлый оттенок основного цвета */
        --secondary: #00A699;             /* Вторичный акцентный цвет */
        --secondary-dark: #008489;        /* Темный оттенок вторичного цвета */
        --secondary-light: #E6F7F6;       /* Светлый оттенок вторичного цвета */
        --accent: #FC642D;                /* Дополнительный акцентный цвет */
        --accent-light: #FFF0EB;          /* Светлый оттенок дополнительного цвета */
        
        /* Нейтральные цвета */
        --dark: #1A1A1A;                  /* Основной темный цвет текста */
        --darker: #121212;                /* Еще более темный оттенок */
        --gray: #767676;                  /* Серый цвет для второстепенного текста */
        --light: #F7F7F7;                /* Светлый фон */
        --lighter: #FAFAFA;               /* Еще более светлый фон */
        --white: #FFFFFF;                 /* Белый цвет */
        --black: #000000;                 /* Черный цвет */
        
        /* Тени */
        --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);      /* Маленькая тень */
        --shadow-md: 0 4px 20px rgba(0,0,0,0.08);     /* Средняя тень */
        --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);     /* Большая тень */
        --shadow-xl: 0 15px 50px rgba(0,0,0,0.15);    /* Очень большая тень */
        
        /* Анимации */
        --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);  /* Основной переход */
        --transition-fast: all 0.15s ease;            /* Быстрый переход */
        
        /* Скругления */
        --radius-sm: 8px;                 /* Маленький радиус скругления */
        --radius-md: 12px;                /* Средний радиус скругления */
        --radius-lg: 16px;                /* Большой радиус скругления */
        --radius-xl: 24px;                /* Очень большой радиус скругления */
        --radius-full: 50px;              /* Полное скругление (круг) */
        
        /* Типография */
        --text-xs: 0.75rem;               /* Очень маленький текст */
        --text-sm: 0.875rem;              /* Маленький текст */
        --text-base: 1rem;                /* Базовый размер текста */
        --text-lg: 1.125rem;              /* Большой текст */
        --text-xl: 1.25rem;               /* Очень большой текст */
        --text-2xl: 1.5rem;               /* Extra большой текст */
        --text-3xl: 1.875rem;             /* 3XL текст */
        --text-4xl: 2.25rem;              /* 4XL текст */
        --text-5xl: 3rem;                 /* 5XL текст */
        --text-6xl: 3.75rem;              /* 6XL текст */
    }

    /* Сброс стилей и базовые настройки */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;          /* Плавная прокрутка */
    }

    body {
        font-family: 'Manrope', sans-serif;  /* Основной шрифт */
        color: var(--dark);               /* Цвет текста по умолчанию */
        background-color: var(--lighter); /* Цвет фана */
        line-height: 1.6;                 /* Межстрочный интервал */
        overflow-x: hidden;               /* Скрыть горизонтальный скролл */
        -webkit-font-smoothing: antialiased; /* Сглаживание шрифтов для WebKit */
        -moz-osx-font-smoothing: grayscale;  /* Сглаживание шрифтов для Firefox */
        padding-top: 80px;                /* Отступ для фиксированного хедера */
    }

    /* Заголовки */
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Montserrat', sans-serif; /* Шрифт для заголовков */
        font-weight: 800;                 /* Жирный шрифт */
        line-height: 1.2;                 /* Межстрочный интервал */
        color: var(--darker);             /* Цвет заголовков */
        margin-bottom: 1rem;              /* Отступ снизу */
    }

    /* Параграфы */
    p {
        margin-bottom: 1rem;              /* Отступ снизу */
    }

    /* Ссылки */
    a {
        text-decoration: none;            /* Убрать подчеркивание */
        color: inherit;                   /* Наследовать цвет */
        transition: var(--transition);    /* Плавный переход */
    }

    /* Изображения */
    img {
        max-width: 100%;                  /* Максимальная ширина */
        height: auto;                     /* Автоматическая высота */
        display: block;                   /* Блочное отображение */
        object-fit: cover;                /* Обрезка изображения */
    }

    /* Списки */
    ul, ol {
        list-style: none;                 /* Убрать маркеры списков */
    }

    /* Контейнеры и сетка */
    .container {
        width: 100%;                      /* Полная ширина */
        max-width: 1320px;                /* Максимальная ширина */
        margin: 0 auto;                   /* Центрирование */
        padding: 0 20px;                  /* Внутренние отступы */
        overflow: hidden;                 /* Скрыть переполнение */
    }

    /* Секции */
    section {
        padding: 100px 0;                 /* Внутренние отступы */
        position: relative;               /* Относительное позиционирование */
        max-width: 100vw;                 /* Максимальная ширина */
        box-sizing: border-box;           /* Учет границ в ширине */
    }

    /* Утилитарные классы */
    .text-center { text-align: center; }  /* Выравнивание по центру */
    .text-left { text-align: left; }      /* Выравнивание по левому краю */
    .text-right { text-align: right; }    /* Выравнивание по правому краю */
    .mt-2 { margin-top: 0.5rem; }         /* Верхний отступ 0.5rem */
    .mt-4 { margin-top: 1rem; }           /* Верхний отступ 1rem */
    .mt-6 { margin-top: 1.5rem; }         /* Верхний отступ 1.5rem */
    .mt-8 { margin-top: 2rem; }           /* Верхний отступ 2rem */
    .mb-0 { margin-bottom: 0; }           /* Нижний отступ 0 */
    .mb-4 { margin-bottom: 1rem; }        /* Нижний отступ 1rem */
    .mb-6 { margin-bottom: 1.5rem; }      /* Нижний отступ 1.5rem */
    .mx-auto { margin-left: auto; margin-right: auto; } /* Авто отступы по бокам */
    .d-block { display: block; }          /* Блочное отображение */
    .d-flex { display: flex; }            /* Flex отображение */
    .justify-center { justify-content: center; } /* Центрирование по горизонтали */
    .justify-between { justify-content: space-between; } /* Распределение пространства */
    .items-center { align-items: center; } /* Центрирование по вертикали */
    .flex-column { flex-direction: column; } /* Колоночное направление */
    .gap-4 { gap: 1rem; }                 /* Расстояние между элементами 1rem */
    .gap-6 { gap: 1.5rem; }               /* Расстояние между элементами 1.5rem */

    /* ===== HEADER ===== */
    .header-2025 {
        position: fixed;                  /* Фиксированное позиционирование */
        top: 0;                          /* Прикрепление к верху */
        left: 0;                         /* Прикрепление к левому краю */
        width: 100%;                     /* Полная ширина */
        background-color: var(--white);  /* Цвет фона */
        box-shadow: var(--shadow-sm);    /* Тень */
        z-index: 1100;                   /* Высокий z-index поверх других элементов */
        padding: 12px 0;                 /* Внутренние отступы */
        transition: var(--transition);   /* Плавный переход */
        height: 80px;                    /* Фиксированная высота */
        display: flex;                   /* Flex отображение */
        align-items: center;             /* Центрирование по вертикали */
    }

    .header-2025.scrolled {
        padding: 8px 0;                  /* Уменьшенные отступы при скролле */
        box-shadow: var(--shadow-md);    /* Увеличенная тень при скролле */
    }

    .header-inner {
        display: flex;                   /* Flex отображение */
        justify-content: space-between;  /* Распределение пространства */
        align-items: center;             /* Центрирование по вертикали */
        width: 100%;                     /* Полная ширина */
        height: 100%;                    /* Полная высота */
    }

    /* Логотип и селектор города */
    .header-logo-city {
        display: flex;                   /* Flex отображение */
        align-items: center;             /* Центрирование по вертикали */
        gap: 20px;                       /* Расстояние между элементами */
    }

    .logo {
        display: flex;                   /* Flex отображение */
        align-items: center;             /* Центрирование по вертикали */
        font-family: 'Montserrat', sans-serif; /* Шрифт логотипа */
        font-size: var(--text-xl);       /* Размер шрифта */
        font-weight: 900;                /* Жирный шрифт */
        color: var(--darker);            /* Цвет текста */
        letter-spacing: -0.5px;          /* Межбуквенный интервал */
    }

    .logo-icon {
        margin-right: 10px;              /* Отступ справа */
        color: var(--primary);           /* Цвет иконки */
        font-size: 28px;                 /* Размер иконки */
    }

    .logo-text span {
        color: var(--primary);           /* Цвет части текста */
    }

    /* ===== СЕЛЕКТОР ГОРОДА - ОБНОВЛЕННЫЙ ===== */
    .city-switcher {
        position: relative;
        margin-left: 20px;
    }

    /* Стили для счетчика городов */
    .city-count {
        font-size: var(--text-xs);
        opacity: 0.7;
        margin-left: auto;
        padding-left: 8px;
    }

    /* Стили для регионов в меню */
    .city-menu__region {
        font-weight: 600;
        background-color: var(--primary-light);
    }

    .mobile-city-region {
        font-weight: 600;
        background-color: var(--primary-light);
    }

    /* Группы в мобильном меню */
    .mobile-city-group {
        padding: 12px 15px 8px;
        font-size: var(--text-xs);
        text-transform: uppercase;
        color: var(--gray);
        font-weight: 600;
        border-bottom: 1px solid var(--light);
        margin: 10px -15px 5px;
        background-color: var(--lighter);
    }

    .city-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 8px 16px;
        border: 2px solid var(--light);
        border-radius: var(--radius-md);
        background: var(--white);
        cursor: pointer;
        transition: var(--transition);
        font-weight: 600;
        font-size: var(--text-sm);
        color: var(--dark);
    }

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

    .city-menu {
        position: relative;
        top: 100%;
        left: 0;
        margin-top: 8px;
        min-width: 250px;
        background: var(--white);
        border: 2px solid var(--primary-light);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        padding: 15px;
        display: none;
        z-index: 2000;
    }

    .city-menu.open {
        display: block;
        animation: fadeIn 0.2s ease;
    }

    .city-menu__header {
        font-weight: 600;
        padding: 8px 0;
        margin-bottom: 12px;
        border-bottom: 1px solid var(--light);
        font-size: var(--text-sm);
        color: var(--dark);
    }

    .city-menu__group {
        padding: 8px 0 4px;
        font-size: var(--text-xs);
        text-transform: uppercase;
        color: var(--gray);
        font-weight: 600;
        margin-top: 10px;
        border-bottom: 1px solid var(--light);
    }

    .city-menu__item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        border-radius: var(--radius-sm);
        color: var(--dark);
        text-decoration: none;
        transition: var(--transition);
        margin: 4px 0;
        font-size: var(--text-sm);
    }

    .city-menu__item i {
        font-size: 16px;
        color: var(--primary);
    }

    .city-menu__item:hover {
        background: var(--primary-light);
        color: var(--primary);
    }

    .city-menu__item.is-active {
        background: var(--primary-light);
        color: var(--primary);
        font-weight: 600;
    }

    /* Мобильный селектор города - ОБНОВЛЕННЫЙ */
    .mobile-city-switcher {
        padding: 20px 0;
        border-top: 2px solid var(--primary-light);
        margin-top: 20px;
        background: var(--lighter);
        border-radius: var(--radius-md);
        margin: 20px -20px 0;
        padding: 20px;
    }

    .mobile-city-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        font-weight: 700;
        cursor: pointer;
        background: var(--white);
        border-radius: var(--radius-md);
        border: 2px solid var(--light);
        transition: var(--transition);
    }

    .mobile-city-btn:hover {
        border-color: var(--primary);
    }

    .mobile-city-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding-left: 0;
    }

    .mobile-city-switcher.active .mobile-city-menu {
        max-height: 400px;
        padding-top: 15px;
    }

    .mobile-city-item {
        display: block;
        padding: 12px 15px;
        color: var(--dark);
        text-decoration: none;
        transition: var(--transition);
        border-radius: var(--radius-sm);
        margin: 5px 0;
        font-weight: 500;
    }

    .mobile-city-item:hover,
    .mobile-city-item.is-active {
        background: var(--primary-light);
        color: var(--primary);
        font-weight: 600;
    }

    /* Анимации */
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* ===== ОСНОВНАЯ НАВИГАЦИЯ ===== */
    .main-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .main-nav ul {
        display: flex;
        list-style: none;
        gap: 32px;
    }

    .main-nav a {
        font-weight: 600;
        font-size: var(--text-base);
        transition: var(--transition);
        position: relative;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    /* Подчеркивание при наведении */
    .main-nav a:after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary);
        transition: var(--transition);
    }

    .main-nav a:hover:after,
    .main-nav a.active:after {
        width: 100%;
    }

    .main-nav a:hover,
    .main-nav a.active {
        color: var(--primary);
    }

    /* ===== ВЫПАДАЮЩЕЕ МЕНЮ ДЛЯ УСЛУГ ===== */
    .nav-dropdown {
        position: relative;
    }

    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        border-radius: var(--radius-md);
        padding: 15px;
        box-shadow: var(--shadow-xl);
        min-width: 250px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 2000;
        border: 1px solid rgba(0,0,0,0.1);
    }

    .dropdown-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 15px;
        color: var(--dark);
        border-radius: var(--radius-sm);
        transition: var(--transition);
        white-space: nowrap;
        font-size: var(--text-sm);
    }

    .dropdown-item:hover {
        background: var(--primary-light);
        color: var(--primary);
    }

    .dropdown-item i {
        font-size: 16px;
        color: var(--primary);
    }

    /* Действия в хедере */
    .header-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .header-phone {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        color: var(--dark);
        transition: var(--transition);
    }

    .header-phone:hover {
        color: var(--primary);
    }

    /* ===== КНОПКА МОБИЛЬНОГО МЕНЮ ===== */
    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--dark);
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: var(--transition);
    }

    .mobile-menu-btn:hover {
        background-color: var(--primary-light);
    }

    /* ===== МОБИЛЬНАя НАВИГАЦИЯ ===== */
    .mobile-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 20px;
        z-index: 1000;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        visibility: hidden;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .mobile-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav li {
        margin-bottom: 15px;
    }

    .mobile-nav a {
        display: block;
        padding: 12px 0;
        font-weight: 600;
        font-size: var(--text-lg);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-nav a.active {
        color: var(--primary);
    }

    /* Мобильное выпадающее меню */
    .mobile-dropdown {
        overflow: hidden;
    }

    .mobile-dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .mobile-dropdown-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding-left: 20px;
    }

    .mobile-dropdown.active .mobile-dropdown-menu {
        max-height: 500px;
    }

    /* ===== BUTTONS ===== */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 16px 32px;
        border-radius: var(--radius-full);
        font-weight: 600;
        font-size: var(--text-base);
        transition: var(--transition);
        border: none;
        cursor: pointer;
        font-family: 'Manrope', sans-serif;
        text-align: center;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        max-width: 100%;
    }

    /* Основная кнопка */
    .btn-primary {
        background-color: var(--primary);
        color: var(--white);
        box-shadow: 0 4px 15px rgba(255, 90, 95, 0.25);
    }

    .btn-primary:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 90, 95, 0.35);
    }

    /* Вторичная кнопка */
    .btn-secondary {
        background-color: var(--secondary);
        color: var(--white);
        box-shadow: 0 4px 15px rgba(0, 166, 153, 0.25);
    }

    .btn-secondary:hover {
        background-color: var(--secondary-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 166, 153, 0.35);
    }

    /* Контурная кнопка */
    .btn-outline {
        background-color: transparent;
        border: 2px solid var(--primary);
        color: var(--primary);
    }

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

    /* Белая кнопка */
    .btn-white {
        background-color: var(--white);
        color: var(--primary);
        box-shadow: var(--shadow-md);
    }

    .btn-white:hover {
        background-color: var(--primary-light);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    /* Светлая кнопка */
    .btn-light {
        background-color: transparent;
        border: 2px solid var(--white);
        color: var(--white);
    }

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

    /* Маленькая кнопка */
    .btn-sm {
        padding: 12px 24px;
        font-size: var(--text-sm);
    }

    /* ===== HERO SECTION ===== */
    .hero {
        position: relative;
        padding: 20px 0 80px;
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.98) 100%), 
                    url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80') no-repeat center/cover;
        color: var(--white);
        overflow: hidden;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        min-height: 600px;
    }

    .hero-title {
        font-size: var(--text-5xl);
        margin-bottom: 24px;
        line-height: 1.1;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .hero-greeting {
        display: block;
        color: var(--primary);
        font-weight: 700;
        margin-bottom: 10px;
        animation: fadeInUp 1s ease;
    }

    .hero-city {
        color: var(--primary);
        font-weight: 800;
    }

    .typed-text {
        color: var(--white);
        font-weight: 800;
        background: linear-gradient(45deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .cursor {
        display: inline-block;
        width: 3px;
        height: 1.1em;
        background-color: var(--primary);
        margin-left: 2px;
        animation: blink 1s infinite;
    }

    @keyframes blink {
        0%, 50% { opacity: 1; }
        51%, 100% { opacity: 0; }
    }

    .hero-subtitle {
        font-size: var(--text-xl);
        margin-bottom: 40px;
        opacity: 0.9;
        line-height: 1.6;
        animation: fadeInUp 1s ease 0.3s both;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .hero-buttons {
        display: flex;
        gap: 20px;
        margin-bottom: 40px;
        animation: fadeInUp 1s ease 0.6s both;
    }

    .hero-features {
        display: flex;
        flex-direction: column;
        gap: 15px;
        animation: fadeInUp 1s ease 0.9s both;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: var(--text-base);
        opacity: 0.9;
    }

    .feature-item i {
        color: var(--primary);
        font-size: 20px;
    }

    /* Hero Image */
    .hero-image {
        position: relative;
        animation: fadeInRight 1s ease;
    }

    .image-container {
        position: relative;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-xl);
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
        transition: var(--transition);
    }

    .image-container:hover {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
    }

    .main-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    .image-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: var(--primary);
        color: var(--white);
        padding: 12px 20px;
        border-radius: var(--radius-full);
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }

    /* Solutions Section */
    .solutions-section {
        background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
        padding: 80px 0;
        margin-top: 80px;
    }

    .solutions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .solution-card {
        background: var(--white);
        padding: 40px 30px;
        border-radius: var(--radius-lg);
        text-align: center;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        opacity: 0;
        transform: translateY(30px);
    }

    .solution-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .solution-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

    .solution-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        color: var(--primary);
        font-size: 32px;
        transition: var(--transition);
    }

    .solution-card:hover .solution-icon {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: var(--white);
        transform: scale(1.1);
    }

    .solution-card h3 {
        font-size: var(--text-xl);
        margin-bottom: 15px;
        color: var(--darker);
    }

    .solution-card p {
        color: var(--gray);
        line-height: 1.6;
    }

    /* Hero Decorations */
    .hero-decoration {
        position: absolute;
        z-index: 1;
        pointer-events: none;
    }

    .hero-decoration-1 {
        top: 10%;
        left: 5%;
        width: 150px;
        height: 150px;
        background: radial-gradient(circle, rgba(255,90,95,0.15) 0%, rgba(255,90,95,0) 70%);
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
    }

    .hero-decoration-2 {
        bottom: 15%;
        right: 10%;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(0,166,153,0.1) 0%, rgba(0,166,153,0) 70%);
        border-radius: 50%;
        animation: float 8s 2s ease-in-out infinite;
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
        }
    }

    /* ===== FEATURES SECTION ===== */
    .features {
        background-color: var(--light);
        position: relative;
    }

    .section-title {
        text-align: center;
        margin-bottom: 20px;
        font-size: var(--text-3xl);
        color: var(--darker);
        position: relative;
        display: inline-block;
        left: 50%;
        transform: translateX(-50%);
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        border-radius: 2px;
    }

    .section-subtitle {
        text-align: center;
        color: var(--gray);
        font-size: var(--text-lg);
        max-width: 700px;
        margin: 0 auto 60px;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .feature-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 40px 30px;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        background-color: var(--primary-light);
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        color: var(--primary);
        font-size: 32px;
        transition: var(--transition);
    }

    .feature-card:hover .feature-icon {
        background-color: var(--primary);
        color: var(--white);
        transform: scale(1.05);
    }

    .feature-title {
        font-size: var(--text-xl);
        margin-bottom: 16px;
        color: var(--darker);
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    .feature-text {
        color: var(--gray);
        font-size: var(--text-base);
    }

    /* ===== SERVICES SECTION ===== */
    .services {
        background-color: var(--lighter);
        position: relative;
    }

    .services:before {
        content: '';
        position: absolute;
        top: -80px;
        left: 0;
        width: 100%;
        height: 160px;
        background-color: var(--light);
        transform: skewY(-3deg);
        z-index: 0;
    }

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

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .service-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        position: relative;
    }

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

    .service-image {
        height: 240px;
        overflow: hidden;
        position: relative;
    }

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .service-card:hover .service-image img {
        transform: scale(1.05);
    }

    .service-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background-color: var(--primary);
        color: var(--white);
        padding: 6px 12px;
        border-radius: var(--radius-full);
        font-size: var(--text-xs);
        font-weight: 600;
        z-index: 2;
    }

    .service-content {
        padding: 25px;
    }

    .service-title {
        font-size: var(--text-xl);
        margin-bottom: 15px;
        color: var(--darker);
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .service-description {
        color: var(--gray);
        margin-bottom: 20px;
        font-size: var(--text-base);
        line-height: 1.5;
    }

    .service-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .service-price {
        font-weight: 700;
        color: var(--primary);
        font-size: var(--text-lg);
    }

    .service-link {
        color: var(--secondary);
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 5px;
        transition: var(--transition);
    }

    .service-link:hover {
        color: var(--primary);
        gap: 8px;
    }

    /* ===== CALCULATOR SECTION ===== */
    .calculator {
        background-color: var(--light);
        position: relative;
    }

    .calculator-container {
        background: var(--white);
        border-radius: var(--radius-xl);
        padding: 40px;
        box-shadow: var(--shadow-lg);
    }

    .calculator-form {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
    }

    .form-group.full-width {
        grid-column: 1 / -1;
    }

    .form-label {
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--darker);
    }

    .form-input,
    .form-select {
        padding: 15px 20px;
        border: 2px solid var(--light);
        border-radius: var(--radius-md);
        font-size: var(--text-base);
        transition: var(--transition);
        font-family: 'Manrope', sans-serif;
    }

    .form-input:focus,
    .form-select:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.1);
    }

    .calculator-result {
        text-align: center;
        padding: 30px;
        background: var(--primary-light);
        border-radius: var(--radius-lg);
    }

    .result-price {
        font-size: var(--text-4xl);
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 10px;
    }

    .result-label {
        color: var(--dark);
        font-size: var(--text-lg);
    }

    /* ===== PHILOSOPHY SECTION ===== */
    .philosophy {
        padding: 100px 0;
        background: var(--lighter);
    }

    /* Центральная цитата */
    .centered-quote {
        text-align: center;
        margin: 60px 0;
        padding: 0 20px;
        position: relative;
    }

    .quote-mark {
        font-size: 120px;
        font-family: 'Georgia', serif;
        color: #ff5a5f;
        line-height: 1;
        margin-bottom: -40px;
        opacity: 0.3;
    }

    .centered-quote blockquote {
        font-size: var(--text-2xl);
        font-style: italic;
        color: var(--darker);
        line-height: 1.4;
        margin: 0 auto 20px;
        max-width: 800px;
        font-weight: 300;
        font-family: 'Manrope', sans-serif;
        position: relative;
        z-index: 2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .quote-author {
        font-size: var(--text-base);
        color: var(--gray);
        font-weight: 600;
        font-style: normal;
    }

    /* Блоки философии */
    .philosophy-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin: 60px 0;
    }

    .philosophy-card {
        background: var(--white);
        padding: 40px 30px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        text-align: center;
        border-top: 4px solid transparent;
    }

    .philosophy-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-top-color: var(--primary);
    }

    .philosophy-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        color: var(--primary);
        font-size: 32px;
        transition: var(--transition);
    }

    .philosophy-card:hover .philosophy-icon {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: var(--white);
        transform: scale(1.1);
    }

    .philosophy-card h3 {
        font-size: var(--text-xl);
        margin-bottom: 15px;
        color: var(--darker);
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .philosophy-card p {
        color: var(--gray);
        line-height: 1.6;
        font-size: var(--text-base);
    }

    /* Призыв к действию */
    .action-call {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        padding: 60px 40px;
        border-radius: var(--radius-xl);
        text-align: center;
        color: var(--white);
        box-shadow: var(--shadow-lg);
        margin-top: 40px;
    }

    .action-content h3 {
        font-size: var(--text-2xl);
        margin-bottom: 15px;
        color: var(--white);
        font-weight: 700;
    }

    .action-content p {
        font-size: var(--text-lg);
        margin-bottom: 30px;
        opacity: 0.9;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    /* ===== PORTFOLIO SECTION ===== */
    .portfolio {
        padding: 100px 0;
        background: var(--light);
    }

    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .portfolio-item {
        position: relative;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        height: 300px;
        cursor: pointer;
    }

    .portfolio-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    .image-container {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .portfolio-image {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.5s ease-in-out;
    }

    .portfolio-image.before {
        opacity: 1;
        z-index: 1;
    }

    .portfolio-image.after {
        opacity: 0;
        z-index: 2;
    }

    .portfolio-item:hover .portfolio-image.before {
        opacity: 0;
    }

    .portfolio-item:hover .portfolio-image.after {
        opacity: 1;
    }

    .portfolio-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
        padding: 20px;
        color: var(--white);
        transform: translateY(100%);
        transition: var(--transition);
        z-index: 3;
    }

    .portfolio-item:hover .portfolio-overlay {
        transform: translateY(0);
    }

    .portfolio-title {
        font-size: var(--text-lg);
        margin-bottom: 5px;
    }

    .portfolio-category {
        font-size: var(--text-sm);
        opacity: 0.8;
    }

    /* Индикатор "до/после" */
    .compare-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 5px 10px;
        border-radius: var(--radius-sm);
        font-size: var(--text-xs);
        z-index: 4;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    /* ===== PROCESS SECTION ===== */
    .process {
        padding: 100px 0;
        background: var(--lighter);
    }

    .process-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-top: 50px;
    }

    .process-step {
        text-align: center;
        position: relative;
    }

    .process-number {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: var(--text-xl);
        font-weight: 700;
        margin: 0 auto 20px;
        position: relative;
        z-index: 2;
    }

    .process-step:not(:last-child):after {
        content: '';
        position: absolute;
        top: 30px;
        left: 60%;
        right: -40%;
        height: 2px;
        background: var(--primary-light);
        z-index: 1;
    }

    .process-icon {
        font-size: 40px;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .process-title {
        font-size: var(--text-lg);
        margin-bottom: 15px;
        color: var(--darker);
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .process-description {
        color: var(--gray);
        line-height: 1.6;
    }

    /* ===== CTA SECTION ===== */
    .cta {
        padding: 120px 0;
        background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
        color: var(--white);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta h2 {
        font-size: var(--text-4xl);
        margin-bottom: 20px;
    }

    .cta p {
        font-size: var(--text-xl);
        max-width: 700px;
        margin: 0 auto 40px;
        opacity: 0.9;
    }

    /* ===== SUBSCRIBE SECTION ===== */
    .subscribe-section {
        padding: 80px 0;
        background-color: var(--light);
    }

    .subscribe-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .subscribe-card {
        background: var(--white);
        border-radius: var(--radius-xl);
        padding: 40px;
        box-shadow: var(--shadow-lg);
        display: flex;
        position: relative;
        overflow: hidden;
        min-height: 280px;
    }

    .subscribe-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl);
    }

    .subscribe-content {
        flex: 1;
        position: relative;
        z-index: 2;
    }

    .subscribe-decoration {
        position: absolute;
        right: -20px;
        bottom: -20px;
        opacity: 0.1;
        z-index: 1;
    }

    .telegram-icon-bg,
    .vk-icon-bg {
        width: 200px;
        height: 200px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .telegram-icon-bg {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'%3E%3Cpath d='M120,0C53.7,0,0,53.7,0,120s53.7,120,120,120s120-53.7,120-120S186.3,0,120,0z M175.1,87.6l-32.5,152 c-1.4,6.4-5.5,8-11,5l-30.4-22.4l-14.7-14.1c-1.6-1.6-2.9-2.9,0.6-4.6l57.1-51.5c2.7-2.4-0.6-3.7-4.1-1.3L87.5,142.9l-31-9.7 c-6.2-1.9-6.3-6.1,1.3-9.1L170,76.3C176.2,73.9,180.1,77.5,175.1,87.6z' fill='%2300A699'/%3E%3C/svg%3E");
    }

   .vk-icon-bg {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M31.4907 63.4907C0 94.9813 0 145.671 0 247.04V264.96C0 366.329 0 417.019 31.4907 448.509C62.9813 480 113.671 480 215.04 480H232.96C334.329 480 385.019 480 416.509 448.509C448 417.019 448 366.329 448 264.96V247.04C448 145.671 448 94.9813 416.509 63.4907C385.019 32 334.329 32 232.96 32H215.04C113.671 32 62.9813 32 31.4907 63.4907ZM75.6 168.267H126.747C128.427 253.76 166.133 289.973 196,297.44V168.267H244.16V242.453C273.653 238.827 304.64,205.227 315.093,168.267H363.253C359.313,187.435 351.46,205.583 340.186,221.579C328.913,237.574 314.461,251.071 297.733,261.227C316.41,270.499 332.907,283.63 346.132,299.751C359.357,315.873 369.01,334.618 374.453,354.747H321.44C316.555,337.262 306.614,321.61 292.865,309.754C279.117,297.899 262.173,290.368 244.16,288.107V354.747H238.24C136.267,354.747 78.0267,284.747 75.6,168.267Z' fill='%23FF5A5F'/%3E%3C/svg%3E");
    }

    .subscribe-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        color: var(--primary);
    }

    .telegram-card .subscribe-icon {
        color: var(--secondary);
    }

    .vk-card .subscribe-icon {
        color: var(--primary);
    }

    .subscribe-title {
        font-size: var(--text-xl);
        margin-bottom: 1rem;
        color: var(--darker);
        font-weight: 700;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .subscribe-description {
        color: var(--gray);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .btn-telegram {
        background-color: var(--secondary);
        color: var(--white);
    }

    .btn-telegram:hover {
        background-color: var(--secondary-dark);
    }

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

    .btn-vk:hover {
        background-color: var(--primary-dark);
    }

    .subscribe-agreement {
        margin-top: 1.5rem;
        font-size: 0.8rem;
        opacity: 0.8;
        max-width: 500px;
    }

    /* ===== FOOTER ===== */
    footer {
        background-color: var(--darker);
        color: var(--white);
        padding: 80px 0 0;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        font-family: 'Montserrat', sans-serif;
        font-size: var(--text-xl);
        font-weight: 900;
        color: var(--white);
        margin-bottom: 20px;
    }

    .footer-logo i {
        margin-right: 10px;
        color: var(--primary);
        font-size: 28px;
    }

    .footer-logo span {
        color: var(--primary);
    }

    .footer-text {
        color: rgba(255,255,255,0.7);
        margin-bottom: 20px;
        line-height: 1.6;
        font-size: var(--text-base);
    }

    .footer-social {
        display: flex;
        gap: 15px;
    }

    .footer-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255,255,255,0.1);
        border-radius: 50%;
        color: var(--white);
        transition: var(--transition);
    }

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

    .footer-title {
        font-size: var(--text-lg);
        margin-bottom: 20px;
        color: var(--white);
        position: relative;
        padding-bottom: 10px;
    }

    .footer-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background-color: var(--primary);
    }

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

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255,255,255,0.7);
        transition: var(--transition);
        display: block;
        font-size: var(--text-base);
    }

    .footer-links a:hover {
        color: var(--primary);
        padding-left: 5px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 15px;
        color: rgba(255,255,255,0.7);
        font-size: var(--text-base);
    }

    .contact-item i {
        color: var(--primary);
        font-size: 18px;
        margin-top: 3px;
    }

    .contact-item a {
        color: rgba(255,255,255,0.7);
        transition: var(--transition);
    }

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

    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding: 30px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .copyright {
        color: rgba(255,255,255,0.5);
        font-size: var(--text-sm);
    }

    .footer-legal-links {
        display: flex;
        gap: 20px;
    }

    .footer-legal-links a {
        color: rgba(255,255,255,0.5);
        font-size: var(--text-sm);
        transition: var(--transition);
    }

    .footer-legal-links a:hover {
        color: var(--primary);
    }

    /* ===== АНИМАЦИИ ===== */
    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-15px); }
        100% { transform: translateY(0px); }
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .animate {
        opacity: 0;
        transition: opacity 0.6s ease, transform 0.6s ease;
        will-change: transform, opacity;
    }

    .animate.visible {
        opacity: 1;
    }

    .animate-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
        will-change: transform, opacity;
    }

    .animate-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
    /* Map Section */
        .map-section {
            padding: 80px 0;
            background-color: var(--lighter);
        }

        .map-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .map-info {
            flex: 1;
            min-width: 300px;
        }

        .map-frame {
            flex: 1;
            min-width: 300px;
            height: 400px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            background-color: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .map-placeholder {
            text-align: center;
            padding: 40px;
            color: var(--gray);
        }

        .map-placeholder i {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .map-actions {
            margin-top: 30px;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

    /* ===== АДАПТИВНАЯ ВЕРСТКА ===== */
    @media (max-width: 1200px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr 1fr;
        }
        
        .footer-col:last-child {
            grid-column: 1 / -1;
            margin-top: 20px;
        }
    }

    @media (max-width: 992px) {
        section {
            padding: 80px 0;
        }
        
        .hero-title {
            font-size: var(--text-4xl);
        }
        
        .main-nav {
            display: none;
        }
        
        .mobile-menu-btn {
            display: flex;
        }
        
        .header-phone span {
            display: none;
        }
        
        .header-phone {
            width: 44px;
            height: 44px;
            justify-content: center;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        
        .services-grid {
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        }
        
        .calculator-form {
            grid-template-columns: 1fr;
        }
        
        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
               
        .subscribe-cards {
            grid-template-columns: 1fr;
        }
        
        .process-step:not(:last-child):after {
            display: none;
        }
        
        .process-steps {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .logo {
            font-size: var(--text-lg);
            max-width: 180px;
        }
        
        .logo-icon {
            font-size: 24px;
        }
        
        .city-switcher {
            margin-left: 10px;
        }
        
        .city-btn {
            padding: 6px 10px;
            font-size: var(--text-sm);
        }
        
        .city-scope {
            max-width: 100px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
    }

    @media (max-width: 768px) {
        section {
            padding: 60px 0;
        }
        
        .hero {
            padding: 50px 0 80px;
        }
        
        .hero-title {
            font-size: var(--text-3xl);
        }
        
        .hero-subtitle {
            font-size: var(--text-lg);
        }
        
        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .services-grid {
            grid-template-columns: 1fr;
        }
        
        .service-image {
            height: 200px;
        }
        
        .calculator-container {
            padding: 30px 20px;
        }
        
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        
        .footer-legal-links {
            justify-content: center;
        }
        
        .portfolio-grid {
            grid-template-columns: 1fr;
        }
        
        .philosophy-grid {
            grid-template-columns: 1fr;
        }
        
        .centered-quote blockquote {
            font-size: var(--text-lg);
        }
        
        .quote-mark {
            font-size: 80px;
        }
        
        .section-title {
            font-size: var(--text-2xl);
            white-space: normal;
            display: block;
            left: 0;
            transform: none;
            text-align: center;
        }
        
        .section-title:after {
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
        }
        
        .section-subtitle {
            font-size: var(--text-base);
            padding: 0 10px;
        }
        
        .service-title {
            font-size: var(--text-lg);
            line-height: 1.3;
        }
        
        .service-description {
            font-size: var(--text-sm);
        }
        
        .centered-quote blockquote {
            font-size: var(--text-lg);
            line-height: 1.4;
        }
        
        .quote-mark {
            font-size: 80px;
            margin-bottom: -30px;
        }
        
        .service-image,
        .portfolio-image,
        .hero-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        
        .service-image {
            height: 200px;
        }
        
        .portfolio-image {
            height: 250px;
        }
        
        .hero-image img {
            height: 300px;
        }
        
        .image-container {
            transform: none !important;
        }
        
        .calculator-form {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .form-input,
        .form-select {
            padding: 12px 16px;
            font-size: var(--text-base);
        }
        
        .calculator-result {
            padding: 20px;
        }
        
        .result-price {
            font-size: var(--text-3xl);
        }
        
        .header-logo-city {
            gap: 10px;
        }
        
        .city-btn {
            padding: 5px 8px;
            font-size: var(--text-xs);
        }
        
        .city-scope {
            max-width: 80px;
        }
        
        .city-menu {
            min-width: 180px;
            left: -20px;
        }
        
        .mobile-city-switcher {
            display: block;
        }
    }

    @media (max-width: 576px) {
        section {
            padding: 50px 0;
        }
        
        .hero {
            padding: 100px 0 60px;
        }
        
        .hero-title {
            font-size: var(--text-2xl);
        }
        
        .section-title {
            font-size: var(--text-2xl);
        }
        
        .features-grid {
            grid-template-columns: 1fr;
        }
        
        .service-content {
            padding: 20px;
        }
        
        .service-meta {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }
        
        .subscribe-card {
            padding: 30px 20px;
            flex-direction: column;
        }
        
        .subscribe-decoration {
            display: none;
        }
        
        .action-call {
            padding: 40px 20px;
        }
        
        .action-content h3 {
            font-size: var(--text-xl);
        }
        
        .action-content p {
            font-size: var(--text-base);
        }
        
        .hero-buttons {
            flex-direction: column;
            width: 100%;
        }
        
        .hero-buttons .btn {
            width: 100%;
            margin-bottom: 10px;
        }
        
        .service-meta {
            flex-direction: column;
            gap: 15px;
        }
        
        .service-price {
            order: 2;
        }
        
        .service-link {
            order: 1;
        }
        
        .city-switcher {
            display: none;
        }
        
        .mobile-city-switcher {
            display: block;
        }
    }

    @media (max-width: 480px) {
        .header-actions {
            gap: 15px;
        }
        
        .header-phone {
            width: 40px;
            height: 40px;
            font-size: 18px;
        }
        
        .mobile-menu-btn {
            font-size: 24px;
            width: 40px;
            height: 40px;
            font-size: 20px;
        }
        
        .centered-quote {
            margin: 40px 0;
        }
        
        .centered-quote blockquote {
            font-size: var(--text-lg);
        }
        
        .quote-mark {
            font-size: 60px;
            margin-bottom: -20px;
        }
        
        .philosophy-card {
            padding: 25px 20px;
        }
        
        .philosophy-icon {
            width: 70px;
            height: 70px;
            font-size: 28px;
        }
        
        .action-call {
            padding: 30px 20px;
        }
        
        .header-2025 {
            height: 70px;
            padding: 8px 0;
        }
        
        .mobile-nav {
            top: 70px;
            max-height: calc(100vh - 70px);
        }
        
        .logo {
            font-size: var(--text-base);
            max-width: 160px;
        }
        
        .logo-icon {
            font-size: 20px;
            margin-right: 8px;
        }
        
        section {
            padding: 60px 0;
        }
        
        .hero {
            padding: 90px 0 50px;
        }
        
        .feature-card,
        .service-card,
        .philosophy-card {
            padding: 25px 20px;
        }
        
        .feature-icon,
        .philosophy-icon {
            width: 60px;
            height: 60px;
            font-size: 24px;
        }
    }

    /* ===== ПРЕДОТВРАЩЕНИЕ ПЕРЕПОЛНЕНИЯ ===== */
    body {
        overflow-x: hidden;
        width: 100%;
    }

    section,
    .container,
    .header-2025 {
        max-width: 100vw;
        box-sizing: border-box;
    }

    .animate,
    .animate-up {
        will-change: transform, opacity;
    }