/* ============================================
   1. ШРИФТЫ
   ============================================ */
@font-face {
    font-family: 'Montserrat Ace Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat Ace Regular'), url('/fonts/Montserrat-Ace-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Montserrat Ace Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat Ace Italic'), url('/fonts/Montserrat-Ace-Italic.woff') format('woff');
}

@font-face {
    font-family: 'Montserrat Ace Light';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat Ace Light'), url('/fonts/Montserrat-Ace-Light.woff') format('woff');
}

@font-face {
    font-family: 'Montserrat Ace Light Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat Ace Light Italic'), url('/fonts/Montserrat-Ace-Light-Italic.woff') format('woff');
}

@font-face {
    font-family: 'Montserrat Ace Medium';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat Ace Medium'), url('/fonts/Montserrat-Ace-Medium.woff') format('woff');
}

@font-face {
    font-family: 'Montserrat Ace Medium Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat Ace Medium Italic'), url('/fonts/Montserrat-Ace-Medium-Italic.woff') format('woff');
}

@font-face {
    font-family: 'Montserrat Ace SemiBold';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat Ace SemiBold'), url('/fonts/Montserrat-Ace-SemiBold.woff') format('woff');
}

@font-face {
    font-family: 'Montserrat Ace SemiBold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat Ace SemiBold Italic'), url('/fonts/Montserrat-Ace-SemiBold-Italic.woff') format('woff');
}

@font-face {
    font-family: 'Montserrat Ace Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat Ace Bold'), url('/fonts/Montserrat-Ace-Bold.woff') format('woff');
}

@font-face {
    font-family: 'Montserrat Ace Bold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Montserrat Ace Bold Italic'), url('/fonts/Montserrat-Ace-Bold-Italic.woff') format('woff');
}

/* ============================================
   2. СБРОС И ПЕРЕМЕННЫЕ
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Основные цвета */
    --brand-dark: #1a2c3e;
    --brand-primary: #2c4c6e;
    --brand-accent: #d97a2b;
    --brand-light: #eef2f5;

    /* Системные переменные */
    --bg: #FFFFFF;
    --bg-light: #F5F7FA;
    --bg-card: #FFFFFF;
    --text: #1a2c3e;
    --text-soft: #4a5568;
    --text-muted: #718096;
    --accent: #2c4c6e;
    --accent-light: rgba(44, 76, 110, 0.08);
    --accent-soft: rgba(44, 76, 110, 0.05);
    --accent-hover: #1a2c3e;
    --accent-gradient: linear-gradient(135deg, #2c4c6e, #1a2c3e);
    --accent-glow: 0 0 20px rgba(44, 76, 110, 0.3);
    --secondary-accent: #d97a2b;
    --secondary-accent-light: rgba(217, 122, 43, 0.1);
    --success: #10B981;
    --warning: #F59E0B;
    --border: #E2E8F0;
    --border-light: #EDF2F7;
    --card-shadow: 0 25px 40px -15px rgba(0,0,0,0.05), 0 8px 20px -8px rgba(0,0,0,0.08);
    --card-shadow-hover: 0 30px 50px -20px rgba(44,76,110,0.15), 0 12px 25px -10px rgba(0,0,0,0.1);
    --radius: 28px;
    --radius-sm: 18px;
    --radius-lg: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 90px;
    --header-height-mobile: 70px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
    padding-top: var(--header-height);
    position: relative;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 44px;
    margin-bottom: 20px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    text-align: left;
}

/* ============================================
   3. ОБЩИЕ КОМПОНЕНТЫ (СЕКЦИИ, ЗАГОЛОВКИ)
   ============================================ */
.section-header {
    margin-bottom: 60px;
    text-align: left;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    margin-bottom: 20px;
    display: block;
}

.section-header .section-subhead {
    margin-left: 0;
}

.section-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-light);
    padding: 8px 18px;
    border-radius: 60px;
    margin-bottom: 20px;
    border: 1px solid rgba(44,76,110,0.2);
}

.section-subhead {
    font-size: 18px;
    color: var(--text-soft);
    max-width: 600px;
    margin-bottom: 48px;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
}

.section-subhead.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ============================================
   4. КНОПКИ
   ============================================ */
.btn-primary {
    background: linear-gradient(135deg, #2c4c6e, #1a2c3e);
    border: none;
    padding: 16px 36px;
    border-radius: 60px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px -5px rgba(44,76,110,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(44,76,110,0.6);
}

.btn-outline {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 16px 36px;
    border-radius: 60px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
}

.btn-outline-small {
    border: 1px solid var(--border);
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    white-space: nowrap;
}

.btn-outline-small:hover {
    border-color: var(--accent);
    background: var(--accent-light);
    transform: translateY(-2px);
}

.btn-primary-small {
    background: var(--accent-gradient);
    color: white;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    box-shadow: 0 4px 10px rgba(44,76,110,0.3);
    white-space: nowrap;
}

.btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44,76,110,0.4);
}

/* Кнопка MAX */
.btn-outline-small-max {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--border);
    border-radius: 40px;
    padding: 6px 16px;
    background-color: transparent;
    color: var(--text);
}

.btn-outline-small-max .icon-max {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.btn-outline-small-max svg {
    width: auto;
    height: 32px;
    transition: var(--transition);
    color: currentColor;
}

.btn-outline-small-max:hover {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
    box-shadow: var(--accent-glow);
    transform: translateY(-2px);
}

.btn-outline-small-max:hover svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.btn-outline-small-max:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Варианты кнопки MAX */
.btn-outline-small-max.btn-light {
    border-color: var(--border);
    color: var(--text);
}

.btn-outline-small-max.btn-dark {
    border-color: rgba(255,255,255,0.3);
    color: white;
}

.btn-outline-small-max.btn-dark:hover {
    background: white;
    color: var(--accent);
    border-color: white;
}

.btn-outline-small-max.btn-dark:hover svg {
    color: var(--accent);
}

.btn-outline-small-max.btn-accent {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline-small-max.btn-accent:hover {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
}

.btn-outline-small-max.btn-plain {
    border: none;
    padding: 4px 8px;
    color: var(--text-soft);
}

.btn-outline-small-max.btn-plain:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-outline-small-max.btn-plain:hover svg {
    color: var(--accent);
}

.btn-outline-small-max.btn-filled {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(44,76,110,0.3);
}

.btn-outline-small-max.btn-filled:hover {
    box-shadow: 0 8px 25px rgba(44,76,110,0.4);
    transform: translateY(-2px);
}

.btn-outline-small-max.btn-filled svg {
    color: white;
}

.btn-outline-small-max.btn-pulse:hover {
    animation: pulse 1.5s infinite;
}

.btn-outline-small-max.btn-on-gradient {
    border-color: rgba(255,255,255,0.5);
    color: white;
    backdrop-filter: blur(5px);
}

.btn-outline-small-max.btn-on-gradient:hover {
    background: white;
    color: var(--accent);
    border-color: white;
}

.btn-outline-small-max.btn-on-gradient:hover svg {
    color: var(--accent);
}

.navbar .btn-outline-small-max {
    padding: 4px 14px;
}

.navbar .btn-outline-small-max svg {
    height: 28px;
}

.mobile-contacts .btn-outline-small-max {
    width: 100%;
    justify-content: center;
    padding: 8px 16px;
}

.mobile-contacts .btn-outline-small-max svg {
    height: 26px;
}

footer .btn-outline-small-max {
    border-color: var(--border);
    color: var(--text-soft);
}

footer .btn-outline-small-max:hover {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(44, 76, 110, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(44, 76, 110, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(44, 76, 110, 0);
    }
}

/* ============================================
   5. НАВИГАЦИЯ (ХЕДЕР)
   ============================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 32px;
    border-bottom: 1px solid var(--border-light);
    flex-wrap: wrap;
    gap: 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.navbar.scrolled {
    padding: 10px 32px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.navbar-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Логотип */
.logo-block {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.logo-img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    font-size: 40px;
    color: var(--accent);
    filter: drop-shadow(0 4px 8px rgba(44,76,110,0.2));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}

.logo-main span {
    color: var(--secondary-accent);
}

.logo-desc {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--text-soft);
    text-transform: uppercase;
}

/* Навигационные ссылки */
.nav-links {
    display: flex;
    gap: 32px;
    font-weight: 500;
    flex-wrap: wrap;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-soft);
    transition: var(--transition);
    font-size: 15px;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.2s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-links a.active {
    color: var(--accent);
}

.nav-links a.active:after {
    width: 100%;
}

/* Контакты в хедере */
.header-contacts {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Мобильное меню */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    color: #1a2c3e;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: #2c4c6e;
}

/* ============================================
   6. МНОГОУРОВНЕВОЕ МЕНЮ (ДЕСКТОП)
   ============================================ */
.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 5px;
}

.main-menu li {
    position: relative;
}

.main-menu a {
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
    transition: all 0.3s;
    color: #1a1f36;
    font-weight: 500;
}

.main-menu a:hover {
    color: #3b82f6;
}

/* Выпадающие подменю */
.main-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

.main-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-menu .sub-menu li {
    position: relative;
}

.main-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-top: -10px;
}

.main-menu .sub-menu a {
    padding: 8px 20px;
    display: block;
    white-space: nowrap;
}

/* Индикатор подменю для десктопа */
.submenu-indicator {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s;
    display: inline-block;
}

.main-menu li:hover > a .submenu-indicator {
    transform: rotate(180deg);
}

/* ============================================
   7. МОБИЛЬНОЕ МЕНЮ
   ============================================ */
.mobile-menu-wrapper {
    width: 100%;
}

.mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.mobile-menu li {
    border-bottom: 1px solid #eef2f6;
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 14px 0 !important;
    text-decoration: none !important;
    color: #1a1f36 !important;
    font-weight: 500 !important;
    font-size: 16px !important;
}

.mobile-menu a:hover {
    color: #3b82f6 !important;
}

.mobile-menu .submenu-indicator-mobile {
    transition: transform 0.3s ease;
    display: inline-block;
}

.mobile-menu .submenu-indicator-mobile i {
    font-size: 12px;
    color: #9ca3af;
}

.mobile-menu li.active > .menu-item-has-children > a .submenu-indicator-mobile {
    transform: rotate(180deg);
}

.mobile-menu li.active > .menu-item-has-children > a .submenu-indicator-mobile i {
    color: #3b82f6;
}

.mobile-menu .mobile-sub-menu {
    list-style: none;
    padding-left: 20px;
    margin: 0;
    display: none;
    background: #f8fafc;
    border-radius: 12px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.mobile-menu li.active > .mobile-sub-menu {
    display: block;
}

.mobile-menu .mobile-sub-menu li {
    border-bottom: 1px solid #e2e8f0;
}

.mobile-menu .mobile-sub-menu li:last-child {
    border-bottom: none;
}

.mobile-menu .mobile-sub-menu a {
    padding: 12px 0 !important;
    font-size: 14px !important;
    font-weight: normal !important;
    color: #4a5568 !important;
}

/* Скрытие элементов */
.hide-on-mobile {
    display: block;
}

.hide-on-desktop {
    display: none;
}

/* ============================================
   8. ГЕРОЙ (ГЛАВНАЯ)
   ============================================ */
.hero-section {
    width: 100%;
    background-color: var(--text);
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,44,62,0.9) 0%, rgba(44,76,110,0.85) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 32px;
    width: 100%;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-main {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 30px;
}

.hero-main h1 {
    font-size: 58px; 
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
    text-align: left;
}

.hero-highlight {
    color: var(--secondary-accent);
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(217, 122, 43, 0.3);
    border-radius: 4px;
    z-index: -1;
}

.hero-description {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.7;
    text-align: left;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

/* Статистика в герое */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin: 2rem 0;
    padding: 0 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 1.8rem 2rem;
    text-align: center;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: rgba(255, 255, 255, 1);
}

/* Правая колонка героя */
.hero-right {
    background: rgba(255,255,255,0.98);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 30px 50px -15px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.5);
    transform: translateY(0);
    transition: var(--transition);
}

.hero-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 60px -15px rgba(0,0,0,0.5);
}

.hero-right h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text);
    position: relative;
    padding-bottom: 15px;
    text-align: left;
}

.hero-right h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #2c4c6e, #1a2c3e);
    border-radius: 2px;
}

.hero-right p {
    color: var(--text-soft);
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--text-soft);
    font-size: 16px;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 12px;
}

.feature-list li:hover {
    background: rgba(44,76,110,0.08);
    transform: translateX(5px);
}

.feature-list i {
    color: #2c4c6e;
    font-size: 20px;
    width: 28px;
}

/* ============================================
   9. HERO СЛАЙДЕР
   ============================================ */
.hero-slider-section {
    width: 100%;
    background-color: var(--text);
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 0;
}

.hero-slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease-in-out;
    z-index: 0;
}

.hero-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,44,62,0.9) 0%, rgba(44,76,110,0.85) 100%);
    z-index: 1;
}

.hero-slider-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 32px;
    width: 100%;
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.hero-slider-left {
    flex: 1;
    color: white;
}

.hero-slider-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 30px;
}

.hero-slider-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.hero-slider-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.hero-slider-btn {
    background: linear-gradient(135deg, #2c4c6e, #1a2c3e);
    border: none;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-slider-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(44,76,110,0.4);
}

.hero-slider-right {
    flex: 0.8;
    background: rgba(255,255,255,0.98);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 30px 50px -15px rgba(0,0,0,0.4);
}

.hero-slider-right h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a2c3e;
}

.hero-slider-right p {
    color: #64748b;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
}

.hero-slider-features {
    list-style: none;
}

.hero-slider-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #64748b;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 12px;
}

.hero-slider-features li i {
    color: #2c4c6e;
    font-size: 20px;
    width: 28px;
}

/* Навигация слайдера */
.hero-slider-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.slider-prev, .slider-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
}

.slider-prev:hover, .slider-next:hover {
    background: rgba(255,255,255,0.4);
    transform: scale(1.05);
}

.hero-slider-dots {
    display: flex;
    gap: 12px;
    margin-left: 20px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    width: 30px;
    border-radius: 5px;
    background: var(--secondary-accent);
}

.slider-dot:hover {
    background: rgba(255,255,255,0.8);
}

/* ============================================
   10. КОНТЕНТ СТРАНИЦЫ
   ============================================ */
.page-content {
    padding: 20px 0;
}

.page-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: var(--text);
}

.page-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    background: none;
    -webkit-text-fill-color: var(--text);
    color: var(--text);
}

.page-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
}

.page-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-soft);
}

.page-content ul, .page-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--text-soft);
}

.page-content li {
    margin-bottom: 10px;
}

.page-content img {
    max-width: 100%;
}

/* ============================================
   11. CTA БЛОК
   ============================================ */
.cta-section {
    background: var(--accent-gradient);
    border-radius: var(--radius-lg);
    padding: 60px 80px;
    margin: 60px 0;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    box-shadow: var(--card-shadow-hover);
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.cta-left {
    flex: 1;
    min-width: 200px;
    position: relative;
    z-index: 2;
}

.cta-left h2 {
    color: white;
    margin-bottom: 15px;
    -webkit-text-fill-color: white;
    background: none;
    font-size: 35px;
}

.cta-left p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    line-height: 1.6;
}

.cta-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    position: relative;
    z-index: 2;
    min-width: 220px;
    width: 100%;
    max-width: 200px;
}

.cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    padding: 16px 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 60px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
    backdrop-filter: blur(5px);
    width: 100%;
    height: 70px;
    box-sizing: border-box;
    white-space: nowrap;
}

.cta-phone:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    border-color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-phone i {
    font-size: 22px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

.cta-section .btn-outline-small-max {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 16px 30px;
    border-radius: 60px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    width: 100%;
    height: 70px;
    box-sizing: border-box;
    text-decoration: none;
}

.cta-section .btn-outline-small-max:hover {
    background: white;
    color: var(--accent);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-section .btn-outline-small-max:hover svg {
    color: var(--accent);
}

.cta-section .btn-outline-small-max .icon-max {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.cta-section .btn-outline-small-max svg {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.cta-section .btn-cta-white {
    background: white;
    border: 2px solid transparent;
    padding: 16px 30px;
    border-radius: 60px;
    font-weight: 700;
    color: var(--accent);
    cursor: pointer;
    transition: var(--transition);
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    width: 100%;
    height: 70px;
    box-sizing: border-box;
}

.cta-section .btn-cta-white:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.cta-section .btn-cta-white i {
    font-size: 20px;
}

.cta-section .btn-cta-white.hidden {
    display: none;
}

/* Изображение в CTA */
.cta-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 35%;
    max-width: 300px;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
    opacity: 0.9;
}

/* ============================================
   12. ХЛЕБНЫЕ КРОШКИ
   ============================================ */
.breadcrumbs {
    padding: 10px 0;
    margin: 0 0 20px;
    font-size: 12px;
    line-height: 1.5;
    color: #6b7280;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
}

.breadcrumbs .crumb {
    display: inline-flex;
    align-items: center;
}

.breadcrumbs a {
    color: #6b7280;
    text-decoration: none;
    white-space: nowrap;
}

.breadcrumbs a:hover {
    color: #3b82f6;
}

.breadcrumbs .current {
    color: #374151;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 280px;
}

.breadcrumbs .separator {
    color: #d1d5db;
    font-size: 14px;
    user-select: none;
    flex-shrink: 0;
    margin: 0 6px;
}

.breadcrumbs .home-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 6px;
}

.breadcrumbs .home-icon svg {
    width: 14px;
    height: 14px;
}

/* ============================================
   13. КНОПКА ВВЕРХ
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    border: none;
    box-shadow: var(--card-shadow-hover);
    transition: var(--transition);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border: 2px solid rgba(255,255,255,0.2);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--accent-glow);
}

.scroll-top i {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* ============================================
   14. ФУТЕР
   ============================================ */
footer {
    border-top: 1px solid var(--border);
    padding: 60px 0 40px;
    background: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-logo-img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo i {
    font-size: 42px;
    color: var(--accent);
}

.footer-logo-text {
    font-weight: 800;
    font-size: 24px;
    color: var(--text);
}

.footer-logo-text span {
    color: var(--secondary-accent);
}

.footer-desc {
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-soft);
    transition: var(--transition);
    font-size: 20px;
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-gradient);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(44,76,110,0.3);
}

footer h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text);
}

footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer ul li a {
    color: var(--text-soft);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
    display: inline-block;
}

footer ul li a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

footer ul li {
    color: var(--text-soft);
    display: flex;
    align-items: center;
    gap: 12px;
}

footer ul li i {
    color: var(--accent);
    font-size: 18px;
    width: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
    flex-wrap: wrap;
    gap: 20px;
}

/* ============================================
   15. SHARE КНОПКИ
   ============================================ */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.share-buttons span {
    font-size: 14px;
    color: var(--text-muted);
    margin-right: 5px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.share-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #005f8c);
}

.share-btn.vk {
    background: linear-gradient(135deg, #4c75a3, #2a4a6e);
}

.share-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.catalog-share {
    margin-top: 40px;
    justify-content: center;
}

/* ============================================
   16. ЯНДЕКС ОТЗЫВЫ ПОПАП
   ============================================ */
.main-popup {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 50;
}

.popup-yareview {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    transition: 0.3s;
    box-shadow: 0 1px 4px 0 #E3EBFC;
    z-index: 1000;
    border: none;
    cursor: pointer;
}

.popup-yareview a {
    text-decoration: none;
}

.popup-yareview a:hover {
    text-decoration: none;
}

.popup-yareview_show {
    display: block;
}

.popup-yareview_flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.popup-yareview .popup-yareview_data p {
    color: #333;
    font-size: 16px;
}

.popup-yareview span {
    font-size: 18px;
    color: #000;
    font-weight: 600;
    text-align: center;
}

.popup-yareview_rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.popup-yareview_rating svg {
    fill: #ff9c1a;
}

.popup-yareview_img img {
    max-height: 45px;
    width: auto;
}

.yandex-icon {
    width: 40px;
    height: 40px;
    background: #FC3F1D;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    color: white;
    line-height: 1;
}

/* ============================================
   17. ТЁМНАЯ ТЕМА
   ============================================ */
@media (prefers-color-scheme: dark) {
    .breadcrumbs { color: #9ca3af; }
    .breadcrumbs a { color: #9ca3af; }
    .breadcrumbs a:hover { color: #60a5fa; }
    .breadcrumbs .current { color: #e5e7eb; }
    .breadcrumbs .separator { color: #4b5563; }
}

.dark-bg .stat-item {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.dark-bg .stat-item:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   18. АНИМАЦИИ
   ============================================ */
@keyframes heroGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

/* ============================================
   19. АДАПТИВНОСТЬ
   ============================================ */

/* 1200px */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    h2 {
        font-size: 40px;
    }

    .hero-main h1 {
        font-size: 48px;
    }
}

/* 1100px */
@media (max-width: 1100px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 40px;
    }

    .cta-image {
        width: 30%;
        max-width: 300px;
        opacity: 0.5;
    }

    .cta-right {
        margin-right: 25%;
        max-width: 280px;
        align-items: center;
        max-width: 400px;
    }
}

/* 1000px */
@media (max-width: 1000px) {
    .mobile-menu-toggle {
        display: block !important;
    }

    .header-contacts {
        display: none !important;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 24px 30px;
        gap: 20px;
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    }

    .nav-links.show {
        right: 0;
    }

    .mobile-contacts {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #eef2f6;
    }

    body.menu-open {
        overflow: hidden;
    }

    .mobile-menu-toggle .fa-times {
        color: #1a2c3e;
    }

    .mobile-contacts {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--border-light);
    }

    .nav-links.show .mobile-contacts {
        display: flex;
    }

    .mobile-contacts .btn-outline-small,
    .mobile-contacts .btn-primary-small {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .mobile-contacts .btn-primary-small {
        color: white !important;
        background: var(--accent-gradient);
    }

    .mobile-contacts .btn-primary-small span,
    .mobile-contacts .btn-primary-small i {
        color: white !important;
    }

    .mobile-contacts .btn-outline-small {
        color: var(--text) !important;
        background: white;
    }

    .mobile-contacts .btn-outline-small span,
    .mobile-contacts .btn-outline-small i {
        color: var(--text) !important;
    }

    .hide-on-mobile {
        display: none !important;
    }

    .main-menu {
        display: none !important;
    }

    .mobile-menu-wrapper {
        display: block !important;
    }

    .main-menu .sub-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: transparent;
    }

    .main-menu li.active > .sub-menu {
        display: block;
    }

    .submenu-indicator {
        float: right;
    }

    .navbar-container {
        position: relative;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px 0;
        background: white;
        border-top: 1px solid var(--border-light);
        margin-top: 15px;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 10px 0;
        font-size: 16px;
    }

    .header-contacts {
        width: 100%;
        justify-content: flex-start;
    }

    body {
        padding-top: var(--header-height-mobile);
    }

    .navbar {
        padding: 10px 20px;
    }
}

/* 992px */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 24px;
    }

    .hero-main h1 {
        font-size: 42px;
        text-align: center;
    }

    .hero-badge {
        display: inline-flex;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-right {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-right h3 {
        text-align: center;
    }

    .hero-right h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-right p {
        text-align: center;
    }

    .hero-slider-content {
        flex-direction: column;
    }

    .hero-slider-right {
        max-width: 500px;
        width: 100%;
    }

    .hero-slider-title {
        font-size: 36px;
        text-align: center;
    }

    .hero-slider-badge {
        display: inline-flex;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-slider-description {
        text-align: center;
    }

    .hero-slider-btn {
        display: block;
        width: fit-content;
        margin: 0 auto;
    }

    .hero-slider-nav {
        justify-content: center;
    }
}

/* 900px */
@media (max-width: 900px) {
    .navbar-container {
        flex-direction: row;
        align-items: center;
    }

    .logo-main {
        font-size: 24px;
    }

    .btn-outline-small,
    .btn-primary-small {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* 800px */
@media (max-width: 800px) {
    .container {
        padding: 0 30px;
    }

    h2 {
        font-size: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-main h1 {
        font-size: 42px;
    }

    .cta-section {
        padding: 40px 30px;
    }

    .cta-left h2 {
        font-size: 36px;
    }

    .cta-left p {
        font-size: 16px;
    }

    .cta-phone {
        font-size: 22px;
        height: 65px;
    }

    .cta-section .btn-outline-small-max {
        height: 65px;
    }

    .cta-section .btn-outline-small-max svg {
        height: 28px;
    }

    .cta-section .btn-cta-white {
        height: 65px;
        font-size: 16px;
    }

    .btn-cta-white {
        padding: 16px 40px;
        font-size: 16px;
        white-space: normal;
    }
}

/* 768px */
@media (max-width: 768px) {
    .breadcrumbs {
        font-size: 11px;
        margin-bottom: 16px;
    }

    .breadcrumbs .current {
        max-width: 200px;
    }

    .breadcrumbs .separator {
        margin: 0 5px;
    }

    .hero-main h1 {
        font-size: 32px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-outline {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-right {
        padding: 30px 25px;
    }

    .hero-right h3 {
        font-size: 24px;
    }

    .feature-list li {
        justify-content: center;
    }

    .hero-slider-title {
        font-size: 28px;
    }

    .hero-slider-right {
        padding: 30px 25px;
    }

    .hero-slider-right h3 {
        font-size: 24px;
        text-align: center;
    }

    .hero-slider-right p {
        text-align: center;
    }

    .hero-slider-features li {
        justify-content: center;
    }

    .cta-image {
        display: none;
    }

    .cta-right {
        margin-right: 0;
        max-width: 100%;
    }

    .btn-outline-small-max {
        padding: 4px 12px;
    }

    .btn-outline-small-max svg {
        height: 24px;
    }

    .share-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        min-width: 150px;
        padding: 1.4rem 1.5rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

/* 700px */
@media (max-width: 700px) {
    .header-contacts {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-outline-small,
    .btn-primary-small {
        justify-content: center;
        width: 100%;
    }
}

/* 640px */
@media (max-width: 640px) {
    .hero-stats {
        gap: 1rem;
        flex-direction: column;
        width: 100%;
    }

    .stat-item {
        width: 100%;
        max-width: 280px;
        padding: 1.2rem 1.5rem;
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

/* 600px */
@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

    h2 {
        font-size: 32px;
    }

    .hero-main h1 {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 20px;
        justify-content: space-between;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 12px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .section-subhead {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cta-right {
        max-width: 100%;
    }

    .cta-phone {
        font-size: 20px;
        height: 60px;
    }

    .cta-section .btn-outline-small-max {
        height: 60px;
    }

    .cta-section .btn-outline-small-max svg {
        height: 26px;
    }

    .cta-section .btn-cta-white {
        height: 60px;
        font-size: 16px;
    }
}

/* 480px */
@media (max-width: 480px) {
    .breadcrumbs {
        font-size: 10px;
        padding: 8px 0;
        margin-bottom: 12px;
    }

    .breadcrumbs .current {
        max-width: 120px;
    }

    .breadcrumbs .separator {
        font-size: 12px;
        margin: 0 4px;
    }

    .breadcrumbs .home-icon svg {
        width: 12px;
        height: 12px;
    }

    .breadcrumbs .home-icon {
        margin-right: 4px;
    }

    .logo-main {
        font-size: 20px;
    }

    .logo-icon {
        font-size: 30px;
    }

    .logo-img {
        max-height: 60px;
    }

    .hero-right {
        padding: 30px 25px;
    }

    .hero-right h3 {
        font-size: 24px;
    }

    .footer-logo-text {
        font-size: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .btn-outline-small-max svg {
        height: 22px;
    }

    .btn-outline-small-max {
        padding: 3px 10px;
        border-width: 1.5px;
    }

    .cta-left h2 {
        font-size: 32px;
    }

    .cta-phone {
        font-size: 18px;
        height: 55px;
    }

    .cta-section .btn-outline-small-max {
        height: 55px;
    }

    .cta-section .btn-outline-small-max svg {
        height: 24px;
    }

    .cta-section .btn-cta-white {
        height: 55px;
        font-size: 15px;
    }
}

/* 380px */
@media (max-width: 380px) {
    .logo-main {
        font-size: 18px;
    }

    .logo-desc {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
}

/* ============================================
   20. МЕДИА-ЗАПРОСЫ ДЛЯ МЕНЮ
   ============================================ */
@media (min-width: 1001px) {
    .hide-on-desktop {
        display: none !important;
    }

    .mobile-menu-wrapper {
        display: none !important;
    }

    .main-menu {
        display: flex !important;
    }

    .mobile-contacts {
        display: none !important;
    }
}