
 /* Базовые настройки и сброс стилей */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Commissioner', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #0a0a1a;
}

a {
    text-decoration: none;
    color: inherit;
    margin-top: 3px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #FF8C00, #FF5500);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.4);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF5500, #FF8C00);
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.6);
}

.btn:hover:before {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    border: 2px solid #0066cc;
    color: #0066cc;
}

.btn-outline:hover {
    background: #0066cc;
    color: white;
}






/*заголовок Н1*/
h1 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin: 0 0 2.5rem 0;
    padding: 0;
    line-height: 1.2;
    
    /* ЖИВОЙ ГРАДИЕНТ - ЯРКИЙ СИНИЙ */
    background: linear-gradient(135deg, #0066ff 0%, #0080ff 25%, #0099ff 50%, #0080ff 75%, #0066ff 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* АНИМАЦИЯ ДЫХАНИЯ - ЗАМЕДЛЕНА В 2 РАЗА */
    animation: h1GradientFlow 8s ease-in-out infinite, h1GlowPulse 6s ease-in-out infinite;
    
    /* МАКСИМАЛЬНОЕ СВЕЧЕНИЕ В ШИРЬ */
    text-shadow: 
        0 0 40px rgba(0, 102, 255, 0.8),
        0 0 80px rgba(0, 102, 255, 0.6),
        0 0 120px rgba(0, 102, 255, 0.4);
    
    position: relative;
    letter-spacing: 0.5px;
}

/* ПЛАВНОЕ ДВИЖЕНИЕ ГРАДИЕНТА - ЗАМЕДЛЕНО В 2 РАЗА */
@keyframes h1GradientFlow {
    0%, 100% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    25% {
        background-position: 50% 100%;
    }
    50% {
        background-position: 100% 50%;
        filter: hue-rotate(5deg);
    }
    75% {
        background-position: 50% 0%;
    }
}

/* ПУЛЬСИРУЮЩЕЕ СВЕЧЕНИЕ - ОТКАТ НА ПОЛОВИНУ */
@keyframes h1GlowPulse {
    0%, 100% {
        text-shadow: 
            0 0 30px rgba(0, 102, 255, 0.7),    /* Минимум - на 50% меньше откат */
            0 0 60px rgba(0, 102, 255, 0.5),
            0 0 90px rgba(0, 102, 255, 0.3);
    }
    50% {
        text-shadow: 
            0 0 40px rgba(0, 102, 255, 0.9),    /* Максимум - оставлено сильное свечение */
            0 0 80px rgba(0, 102, 255, 0.7),
            0 0 120px rgba(0, 102, 255, 0.5);
    }
}

/* ДЕКОРАТИВНАЯ ЛИНИЯ ПОД ТЕКСТОМ - ТАКЖЕ ЗАМЕДЛЕНА */
h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #0066ff, #0080ff, #0066ff, transparent);
    border-radius: 4px;
    animation: h1LineShine 6s ease-in-out infinite; /* Замедлено в 2 раза */
    opacity: 0.8;
}

@keyframes h1LineShine {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scaleX(0.9);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1.1);
    }
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
        margin: 0 0 2rem 0;
    }
    
    h1::after {
        width: 100px;
        bottom: -12px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
        margin: 0 0 1.5rem 0;
    }
    
    h1::after {
        width: 80px;
        bottom: -10px;
        height: 3px;
    }
}











h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin: 0 0 3rem 0;
    padding: 0;
    line-height: 1.2;
    
    /* ЯРКИЙ ОРАНЖЕВЫЙ ГРАДИЕНТ */
    background: linear-gradient(135deg, #ff5500 0%, #ff7700 25%, #ff9900 50%, #ff7700 75%, #ff5500 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* АНИМАЦИЯ ГРАДИЕНТА */
    animation: h2GradientFlow 10s ease-in-out infinite;
    
    /* ЕДВА ЗАМЕТНАЯ ОБВОДКА */
    -webkit-text-stroke: 1px rgba(255, 85, 0, 0.3);
    text-stroke: 1px rgba(255, 85, 0, 0.3);
    
    /* ЕДВА ЗАМЕТНОЕ СИЯНИЕ */
    text-shadow: 
        0 0 15px rgba(255, 85, 0, 0.4),
        0 0 30px rgba(255, 85, 0, 0.2);
    
    position: relative;
    letter-spacing: 0.5px;
}

/* ПЛАВНОЕ ДВИЖЕНИЕ ГРАДИЕНТА */
@keyframes h2GradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 100%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 0%;
    }
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1024px) {
    h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
        margin: 0 0 2.5rem 0;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.6rem;
        margin: 0 0 2rem 0;
    }
}





h3, h4 {
    color: #3182ce;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center; 
    text-shadow: 0 2px 4px rgba(49, 130, 206, 0.2);
}

@media (max-width: 900px) {
    h3, h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    h3, h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    h3, h4 {
        font-size: 1.3rem;
    }
}







/* ОБЩИЙ КЛАСС ДЛЯ ЗЕЛЕНОЙ РАМКИ */
.green-frame {
    background: linear-gradient(135deg, #e8f5e9, #e0f2e1); /* Близкие оттенки зеленого */
    padding: 35px 25px;
    border-radius: 22px;
    border: 2px solid rgba(72, 187, 120, 0.6); 
    position: relative;
    overflow: visible;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.12),
        0 0 0 2px rgba(72, 187, 120, 0.25);
}

.green-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(72, 187, 120, 0.08), 
        rgba(56, 161, 105, 0.12),
        rgba(72, 187, 120, 0.08));
    border-radius: 22px;
    z-index: -1;
}

.green-frame::after {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: 32px;
    background: linear-gradient(135deg, 
        rgba(72, 187, 120, 0.4), 
        rgba(56, 161, 105, 0.5), 
        rgba(72, 187, 120, 0.4));
    z-index: -2;
    filter: blur(20px);
    opacity: 0.8;
}









/*стили для меню*/
.wow-menu {
    background: url('пламя.png') center/cover no-repeat;
    padding: 15px 0 10px 0;
    width: 100%;
    border-bottom: 2px solid rgba(255, 100, 0, 0.8);
    box-shadow: 0 5px 30px rgba(255, 80, 0, 0.9);
    position: relative;
    overflow: hidden;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    gap: 12px;
}

/* ЧАСТИЦЫ ОТКЛЮЧЕНЫ ДЛЯ ОПТИМИЗАЦИИ */
.menu-particles {
    display: none;
}

/* ПЕРВАЯ СТРОКА - ЛОГОТИП */
.menu-header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 0;
}

.menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 12px;
}

.menu-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    width: 100%;
    max-width: 100%;
}

.logo-fire {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fire-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 15px rgba(255, 120, 0, 0.9));
    position: relative;
    z-index: 3;
}

/* ПЛАМЯ ОТКЛЮЧЕНО ДЛЯ ОПТИМИЗАЦИИ */
.flame {
    display: none;
}

.logo-image {
    height: 3.5em; /* Соответствует высоте текста */
    /*width: auto;*/
    vertical-align: middle;
    /*margin-right: 15px;*/
    filter: drop-shadow(0 0 10px rgba(255, 120, 0, 0.8));
}

.logo-text {
    font-family: 'Faberge', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 900;
    color: #ffffff;
    font-size: 3rem;
    letter-spacing: 0.5px;
    text-shadow: 
        0 0 30px rgba(255, 140, 0, 1),
        0 0 60px rgba(255, 120, 0, 1),
        0 0 90px rgba(255, 100, 0, 1),
        0 0 120px rgba(255, 80, 0, 0.9);
    white-space: nowrap;
    line-height: 1.1;
    padding: 0 15px;
    text-align: center;
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 3;
}

/* ВТОРАЯ СТРОКА - ТЕКСТ СЛЕВА, ТЕЛЕФОНЫ И КОНТАКТЫ СПРАВА */
.menu-contacts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    gap: 20px;
}

.region-text-block {
    display: flex;
    flex-direction: column;
    /*gap: 4px;*/
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 3;
}

.region-title {
    color: #ffffff;
    font-weight: 900;
    font-size: 2rem;
    text-align: left;
    margin-bottom: 3px;
    letter-spacing: 0.8px;
    line-height: 1.2;
    font-family: Arial, sans-serif;
    text-shadow: 
        0 0 25px rgba(255, 140, 0, 1),
        0 0 50px rgba(255, 120, 0, 1),
        0 0 75px rgba(255, 100, 0, 1),
        0 0 100px rgba(255, 80, 0, 0.9);
    position: relative;
    z-index: 3;
}

.region-subtitle {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.3rem;
    text-align: left;
    letter-spacing: 0.4px;
    line-height: 1.3;
    font-family: Arial, sans-serif;
    text-shadow: 
        0 0 20px rgba(255, 140, 0, 1),
        0 0 40px rgba(255, 120, 0, 1),
        0 0 60px rgba(255, 100, 0, 1),
        0 0 80px rgba(255, 80, 0, 0.9);
    position: relative;
    z-index: 3;
}

.contacts-block {
    display: flex;
    flex-direction: column;
    /*gap: 10px;*/
    align-items: flex-end;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

.phones-column {
    display: flex;
    flex-direction: column;
    /*gap: 6px;*/
    align-items: flex-end;
}

/* ТЕЛЕФОНЫ - СТАРОЕ СВЕЧЕНИЕ */
.phone-link {
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    /*padding: 4px 8px;*/
    text-align: right;
    animation: phone-orange-glow 2s ease-in-out infinite;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0px;
    z-index: 3;
     margin: 0; 
}

.phone-link:hover {
    transform: translateY(-2px);
}

@keyframes phone-orange-glow {
    0%, 100% {
        text-shadow: 
            0 0 8px rgba(255, 150, 0, 0.8),
            0 0 16px rgba(255, 120, 0, 0.6),
            0 0 24px rgba(255, 120, 0, 0.4);
    }
    50% {
        text-shadow: 
            0 0 12px rgba(255, 180, 0, 1),
            0 0 20px rgba(255, 150, 0, 0.8),
            0 0 28px rgba(255, 120, 0, 0.6),
            0 0 36px rgba(255, 120, 0, 0.4);
    }
}

.contacts-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.contacts-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.7s ease;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 150, 0, 0.4);
    position: relative;
    min-height: 45px;
    line-height: 1.4;
    box-shadow: 
        0 0 10px rgba(255, 150, 0, 0.6),
        0 0 16px rgba(255, 120, 0, 0.4);
    z-index: 3;
}

.contacts-button:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 0 16px rgba(255, 180, 0, 0.8),
        0 0 28px rgba(255, 150, 0, 0.6);
    border-color: rgba(255, 180, 0, 0.8);
}

/* ТРЕТЬЯ СТРОКА - НАВИГАЦИЯ */
.menu-links {
    display: flex;
    list-style: none;
    gap: 6px;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 12px 0 0 0;
}

.menu-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 12px 18px;
    border-radius: 8px;
    transition: all 0.7s ease;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 150, 0, 0.4);
    position: relative;
    min-height: 50px;
    line-height: 1.4;
    width: auto;
    min-width: auto;
    max-width: none;
    flex: 0 1 auto;
    box-shadow: 
        0 0 12px rgba(255, 150, 0, 0.6),
        0 0 20px rgba(255, 120, 0, 0.4);
    z-index: 3;
}

.menu-link:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 0 20px rgba(255, 180, 0, 0.8),
        0 0 32px rgba(255, 150, 0, 0.6);
    border-color: rgba(255, 180, 0, 0.8);
}

.link-text {
    color: #ffffff;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 0.3px;
    position: relative;
    padding: 2px 0;
    white-space: nowrap;
    z-index: 3;
    text-shadow: 
        0 0 12px rgba(255, 150, 0, 0.8),
        0 0 20px rgba(255, 120, 0, 0.6);
}

/* Стили для активной кнопки меню */
.menu-link--active {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 0 25px rgba(255, 200, 0, 0.9),
        0 0 40px rgba(255, 150, 0, 0.7),
        0 0 60px rgba(255, 100, 0, 0.5);
    border: 2px solid rgba(255, 200, 0, 0.8);
    animation: active-pulse 5s ease-in-out infinite;
}

.menu-link--active .link-text {
    text-shadow: 
        0 0 20px rgba(255, 200, 0, 1),
        0 0 35px rgba(255, 150, 0, 0.8),
        0 0 50px rgba(255, 120, 0, 0.6);
}

@keyframes active-pulse {
    0%, 100% {
        box-shadow: 
            0 0 25px rgba(255, 200, 0, 0.9),
            0 0 40px rgba(255, 150, 0, 0.7),
            0 0 60px rgba(255, 100, 0, 0.5);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(255, 220, 0, 1),
            0 0 50px rgba(255, 180, 0, 0.8),
            0 0 70px rgba(255, 140, 0, 0.6);
    }
}
/* Адаптивность для активной кнопки */
@media (max-width: 768px) {
    .menu-link--active {
        box-shadow: 
            0 0 20px rgba(255, 200, 0, 0.9),
            0 0 35px rgba(255, 150, 0, 0.7),
            0 0 50px rgba(255, 100, 0, 0.5);
    }
}

@media (max-width: 480px) {
    .menu-link--active {
        box-shadow: 
            0 0 15px rgba(255, 200, 0, 0.9),
            0 0 25px rgba(255, 150, 0, 0.7),
            0 0 35px rgba(255, 100, 0, 0.5);
    }
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1200px) {
    .logo-text {
        font-size: 2.8rem;
    }
    .logo-image {
        height: 2.8em;
    }
    .fire-icon {
        font-size: 2.8rem;
    }
    .region-title {
        font-size: 1.8rem;
    }
    .region-subtitle {
        font-size: 1.2rem;
    }
    .phone-link {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .logo-text {
        font-size: 2.4rem;
    }
    .logo-image {
        height: 2.4em;
    }
    .fire-icon {
        font-size: 2.4rem;
    }
    .menu-logo {
        gap: 10px;
    }
    .region-title {
        font-size: 1.6rem;
    }
    .region-subtitle {
        font-size: 1.1rem;
    }
    .phone-link {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 2rem;
        padding: 0 12px;
    }
    .logo-image {
        height: 2em;
    }
    .fire-icon {
        font-size: 2rem;
    }
    .menu-logo {
        gap: 8px;
    }
    
    .menu-container {
        padding: 0 15px;
        gap: 10px;
    }
    
    .region-title {
        font-size: 1.4rem;
    }
    .region-subtitle {
        font-size: 1rem;
    }
    .phone-link {
        font-size: 1rem;
    }
    
    .menu-link {
        padding: 10px 14px;
        font-size: 1rem;
        min-height: 45px;
    }

    .link-text {
        font-size: 1rem;
    }

    .contacts-button {
        font-size: 0.9rem;
        padding: 8px 14px;
        min-height: 40px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.4rem;
        padding: 0 10px;
    }
    .logo-image {
        height: 1.6em;
    }
    .fire-icon {
        font-size: 1.6rem;
    }
    .menu-logo {
        gap: 6px;
    }
    
    .menu-container {
        padding: 0 10px;
    }
    .wow-menu {
        padding: 10px 0 6px 0;
    }
    
    .menu-contacts {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .region-text-block {
        align-items: center;
    }
    
    .region-title {
        font-size: 1.2rem;
        text-align: center;
    }
    .region-subtitle {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .contacts-block {
        align-items: center;
        width: 100%;
    }
    
    .phones-column {
        align-items: center;
        gap: 4px;
    }
    
    .phone-link {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .menu-link {
        padding: 8px 12px;
        font-size: 0.9rem;
        min-height: 40px;
    }

    .link-text {
        font-size: 0.9rem;
    }
    
    .contacts-button {
        font-size: 0.8rem;
        padding: 7px 12px;
        min-height: 38px;
    }
}

@media (max-width: 360px) {
    .logo-text {
        font-size: 1.2rem;
        padding: 0 8px;
    }
    .logo-image {
        height: 1.4em;
    }
    .fire-icon {
        font-size: 1.4rem;
    }
    .menu-logo {
        gap: 5px;
    }
    
    .region-title {
        font-size: 1.1rem;
    }
    .region-subtitle {
        font-size: 0.8rem;
    }
    .phone-link {
        font-size: 0.8rem;
    }
    
    .menu-link {
        padding: 6px 10px;
        font-size: 0.8rem;
        min-height: 35px;
    }
    .link-text {
        font-size: 0.8rem;
    }
    
    .contacts-button {
        font-size: 0.75rem;
        padding: 6px 10px;
        min-height: 35px;
    }
}

/* На самых маленьких экранах скрываем эмблему */
@media (max-width: 320px) {
    .logo-image {
        display: none;
    }
    .logo-text {
        font-size: 1.1rem;
    }
}
























/* ОБНОВЛЕННЫЙ ПЕРВЫЙ БЛОК - КАК МЫ РАБОТАЕМ (СВЕТЛАЯ ТЕМА С АКЦЕНТАМИ) */
/* PROCESS SECTION */
/* Как мы работаем */
.process {
    padding: 80px 0 50px;
    background: 
        linear-gradient(135deg, #ffffff 0%, #f8fafc 25%, #f0f8ff 50%, #e6f3ff 75%, #ffffff 100%),
        linear-gradient(90deg, transparent 40%, rgba(100, 200, 255, 0.25) 100%),
        linear-gradient(180deg, transparent 50%, rgba(255, 165, 0, 0.2) 100%),
        linear-gradient(225deg, transparent 60%, rgba(139, 92, 246, 0.15) 100%),
        linear-gradient(45deg, rgba(72, 187, 120, 0.15) 0%, transparent 50%);
    background-blend-mode: normal, overlay, overlay, overlay, overlay;
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 85% 85%, rgba(139, 92, 246, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 15% 85%, rgba(72, 187, 120, 0.35) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(100, 200, 255, 0.35) 0%, transparent 40%),
        radial-gradient(circle at 15% 15%, rgba(255, 165, 0, 0.25) 0%, transparent 40%);
    z-index: 1;
}

.process .container {
    position: relative;
    z-index: 2;
}

.intro-text {
    text-align: center;
    color: #4a5568;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.intro-text strong {
    color: #e53e3e;
    font-weight: 700;
}

.process .section-title {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #FFA500, #FF8C00, #FF4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    text-shadow: 0 0 25px rgba(255, 165, 0, 0.4);
    margin-bottom: 20px;
    text-transform: none;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
}

/* SERVICES OVERVIEW */
.services-overview {
    text-align: center;
    margin-bottom: 50px;
}

.services-overview .green-frame {
    padding: 35px 25px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 0 auto;
    max-width: 1200px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 14px;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
    min-height: 75px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.05),
        0 0 8px rgba(59, 130, 246, 0.3);
}

.service-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 17px;
    background: linear-gradient(135deg, 
        rgba(100, 200, 255, 0.3), 
        rgba(229, 62, 62, 0.2), 
        rgba(255, 180, 0, 0.25));
    z-index: -1;
    opacity: 0.7;
}

.service-item:nth-child(1)::after {
    background: linear-gradient(135deg, #64c8ff, #e53e3e, #ffb400);
}
.service-item:nth-child(2)::after {
    background: linear-gradient(135deg, #64c8ff, #ed8936, #ffd700);
}
.service-item:nth-child(3)::after {
    background: linear-gradient(135deg, #64c8ff, #3182ce, #38a169);
}
.service-item:nth-child(4)::after {
    background: linear-gradient(135deg, #64c8ff, #38a169, #805ad5);
}
.service-item:nth-child(5)::after {
    background: linear-gradient(135deg, #64c8ff, #805ad5, #e53e3e);
}
.service-item:nth-child(6)::after {
    background: linear-gradient(135deg, #64c8ff, #d53f8c, #ed8936);
}
.service-item:nth-child(7)::after {
    background: linear-gradient(135deg, #64c8ff, #ffb400, #3182ce);
}
.service-item:nth-child(8)::after {
    background: linear-gradient(135deg, #64c8ff, #e53e3e, #38a169);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.7;
    z-index: 1;
}

.service-item:nth-child(1)::before {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.15), rgba(239, 68, 68, 0.1));
}
.service-item:nth-child(2)::before {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.15), rgba(245, 158, 11, 0.1));
}
.service-item:nth-child(3)::before {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.15), rgba(217, 119, 6, 0.1));
}
.service-item:nth-child(4)::before {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.15), rgba(16, 185, 129, 0.1));
}
.service-item:nth-child(5)::before {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.15), rgba(59, 130, 246, 0.1));
}
.service-item:nth-child(6)::before {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.15), rgba(139, 92, 246, 0.1));
}
.service-item:nth-child(7)::before {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.15), rgba(245, 158, 11, 0.1));
}
.service-item:nth-child(8)::before {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.15), rgba(239, 68, 68, 0.1));
}

.service-item-icon {
    font-size: 2rem;
    color: #3182ce;
    min-width: 36px;
    z-index: 2;
    position: relative;
    animation: icon-float-smooth 8s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.8));
}

@keyframes icon-float-smooth {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translateY(-4px) rotate(1deg) scale(1.03); 
    }
    50% { 
        transform: translateY(-2px) rotate(0deg) scale(1.01); 
    }
    75% { 
        transform: translateY(-3px) rotate(-1deg) scale(1.02); 
    }
}

.service-item-text {
    color: #2d3748;
    font-size: 1rem;
    font-weight: 600;
    z-index: 2;
    line-height: 1.3;
    flex: 1;
    min-width: 0;
}

/* PROCESS STEPS */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
    z-index: 2;
    align-items: stretch;
}

.step {
    display: flex;
}

.step .green-frame {
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.step-icon {
    font-size: 3.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    animation: icon-float-smooth 8s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(72, 187, 120, 0.6));
}

.step:nth-child(1) .step-icon { color: #e53e3e; }
.step:nth-child(2) .step-icon { color: #ed8936; }
.step:nth-child(3) .step-icon { color: #3182ce; }
.step:nth-child(4) .step-icon { color: #38a169; }

.step p {    
    line-height: 1.6;
    font-size: 0.92rem;
}



/* TABS */
.tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.tab-btn {
    cursor: pointer;
    font-weight: 600;
    color: #2d3748;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn .green-frame {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;    
    border: 2px solid rgba(72, 187, 120, 0.6);
    border-radius: 22px;
}

.tab-btn.active .green-frame {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    border-color: #48bb78;
}

.tab-btn .service-item-icon {
    font-size: 1.5rem;
    min-width: 24px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-text p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.content-text ul {
    margin: 20px 0;
    padding-left: 20px;
     list-style: none;
}

.content-text li {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.content-text strong {
    color: #e53e3e;
    font-weight: 700;
}

.highlight {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 140, 0, 0.1));
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #FFA500;
    font-weight: 600;
    color: #2d3748;
    margin-top: 25px;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .process {
        padding: 50px 0 30px;
    }
    
    .process .section-title {
        font-size: 2rem;
    }
    
    .intro-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .services-overview .green-frame {
        padding: 20px 12px;
    }
    
    .services-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .service-item {
        padding: 8px 6px;
        min-height: 50px;
        gap: 6px;
    }
    
    .service-item-icon {
        font-size: 1.2rem;
        min-width: 24px;
    }
    
    .service-item-text {
        font-size: 0.75rem;
        line-height: 1.1;
        font-weight: 500;
    }
    
    .step .green-frame {
        padding: 15px 10px;
    }
    
    .step-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .step p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .tabs {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .tab-btn .green-frame {
        padding: 10px 16px;
    }
    
    .tab-btn .service-item-icon {
        font-size: 1.2rem;
    }
    
    .content-text p,
    .content-text li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .process .section-title {
        font-size: 1.7rem;
    }
    
    .intro-text {
        font-size: 0.9rem;
    }
    
    .services-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    
    .service-item {
        padding: 6px 4px;
        min-height: 45px;
        gap: 4px;
    }
    
    .service-item-icon {
        font-size: 1rem;
        min-width: 20px;
    }
    
    .service-item-text {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .step .green-frame {
        padding: 12px 8px;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .step-icon {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .step h3 {
        font-size: 0.9rem;
        line-height: 1.2;
        margin-bottom: 5px;
        min-height: 1.5rem;
    }
    
    .step p {
        font-size: 0.75rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        flex-grow: 1;
       
        align-items: center;
        text-align: center;
    }
    
    .tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .tab-btn .green-frame {
        justify-content: center;
    }
    
    .content-text p,
    .content-text li {
        font-size: 0.9rem;
    }
    
    .highlight {
        padding: 15px;
    }
}

@media (max-width: 360px) {
    .services-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 3px;
    }
    
    .service-item {
        padding: 5px 3px;
        min-height: 40px;
        gap: 3px;
    }
    
    .service-item-icon {
        font-size: 0.9rem;
        min-width: 18px;
    }
    
    .service-item-text {
        font-size: 0.55rem;
        line-height: 1.1;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .step .green-frame {
        padding: 10px 6px;
        min-height: 110px;
    }
    
    .step-icon {
        font-size: 1.4rem;
        margin-bottom: 6px;
    }
    
    .step h3 {
        font-size: 0.8rem;
        min-height: 1.3rem;
    }
    
    .step p {
        font-size: 0.7rem;
        line-height: 1.1;
    }
}

@media (max-width: 320px) {
    .process-steps {
        gap: 3px;
    }
    
    .step .green-frame {
        padding: 8px 4px;
        min-height: 100px;
    }
    
    .step h3 {
        font-size: 0.75rem;
        min-height: 1.2rem;
    }
    
    .step p {
        font-size: 0.65rem;
    }
    
    .step-icon {
        font-size: 1.2rem;
    }
}
















/* Стили для блока газфикации */
.gasification-content {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.section-subtitle {
    font-size: 1.4rem;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    font-weight: 600;
    width: 100%;
    box-sizing: border-box;
}

/* Сетка карточек процесса - FLEX */
.gasification-process {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Карточки процесса */
.process-card {
    position: relative;
    transition: transform 0.3s ease;
    width: calc(33.333% - 20px);
    min-width: 0;
    box-sizing: border-box;
    flex-shrink: 0;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-card .green-frame {
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* Иконки процесса */
.process-icon {
    font-size: 3.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    animation: icon-float-smooth 8s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(72, 187, 120, 0.6));
    width: 100%;
    box-sizing: border-box;
}

.process-card:nth-child(1) .process-icon { color: #e53e3e; }
.process-card:nth-child(2) .process-icon { color: #ed8936; }
.process-card:nth-child(3) .process-icon { color: #3182ce; }
.process-card:nth-child(4) .process-icon { color: #38a169; }
.process-card:nth-child(5) .process-icon { color: #805ad5; }
.process-card:nth-child(6) .process-icon { color: #d53f8c; }

@keyframes icon-float-smooth {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translateY(-4px) rotate(1deg) scale(1.03); 
    }
    50% { 
        transform: translateY(-2px) rotate(0deg) scale(1.01); 
    }
    75% { 
        transform: translateY(-3px) rotate(-1deg) scale(1.02); 
    }
}



.process-number {
    position: absolute;
    top: 15px; /* Переместил вверх */
    right: 15px; /* Справа */
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(72, 187, 120, 0.7);
    opacity: 0.7;
    line-height: 1;
}

/* Кнопка CTA */
.gasification-cta-simple {
    text-align: center;
    margin-top: 30px;
    width: 100%;
    box-sizing: border-box;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #FF8C00, #FF5500);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.4);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.6);
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1200px) {
    .process-card {
        width: calc(50% - 15px) !important;
    }
    
    .process-card .green-frame {
        padding: 25px 20px;
    }
    
    .process-icon {
        font-size: 2.8rem;
    }
    
    .process-card h3 {
        font-size: 1.3rem;
    }
    
    .process-card p {
        font-size: 0.95rem;
    }
    
    .process-number {
        bottom: 18px;
        right: 18px;
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .gasification-process {
        gap: 20px;
    }
    
    .process-card .green-frame {
        padding: 22px 18px;
    }
    
    .process-icon {
        font-size: 2.5rem;
    }
    
    .process-card h3 {
        font-size: 1.2rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
    }
    
    .process-number {
        bottom: 16px;
        right: 16px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .gasification-process {
        gap: 18px;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .process-card .green-frame {
        padding: 20px 15px;
    }
    
    .process-icon {
        font-size: 2.3rem;
        margin-bottom: 15px;
    }

    .process-card h3 {
        font-size: 1.1rem;
    }
    
    .process-card p {
        font-size: 0.9rem;
    }
    
    .cta-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .process-number {
        bottom: 14px;
        right: 14px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .process-card {
        width: 100% !important;
    }
    
    .gasification-process {
        gap: 15px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .process-card .green-frame {
        padding: 18px 12px;
    }
    
    .process-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .process-card h3 {
        font-size: 1rem;
    }
    
    .process-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .process-number {
        top: 6px;
        right: 6px;
        font-size: 0.9rem;
    }
    
    .cta-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* ТОЛЬКО НА 360px ДОПОЛНИТЕЛЬНО УМЕНЬШАЕМ */
@media (max-width: 360px) {
    .process-card {
        width: 100% !important;
    }
    
    .gasification-process {
        gap: 12px;
    }
    
    .process-card .green-frame {
        padding: 15px 10px;
    }
    
    .process-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .process-card h3 {
        font-size: 0.95rem;
    }
    
    .process-card p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .process-number {
        top: 5px;
        right: 5px;
        font-size: 0.9rem;
    }
    
    .cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}





/* Стили для блока систем отопления */
.heating-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}


@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}



/* Табы - всегда по 2 в ряд */
.heating-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.heating-tab {
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.heating-tab .green-frame {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    border: 2px solid rgba(72, 187, 120, 0.6);
    border-radius: 22px;
    transition: all 0.3s ease;
}

.heating-tab:hover .green-frame {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.3);
}

.heating-tab.active .green-frame {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    border-color: #48bb78;
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.4);
}

.heating-tab i {
    font-size: 1.2rem;
}

/* Контент табов */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    margin-bottom: 40px;
}

.tab-content.active {
    display: block;
}

.tab-content .green-frame {
    padding: 40px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}


.content-text p {
    color: #4a5568;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.content-text ul {
    margin: 25px 0;
    padding-left: 25px;
}

.content-text li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #4a5568;
    position: relative;
    padding-left: 35px;
    font-size: 1.05rem;
}

.content-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 1.4rem;
    top: -2px;
}

.content-text strong {
    color: #e53e3e;
    font-weight: 700;
}

.content-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.content-image:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 45px rgba(72, 187, 120, 0.2);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Карточки особенностей - всегда по 2 в ряд */
.system-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.feature-item {
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item .green-frame {
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    animation: icon-float-smooth 8s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(72, 187, 120, 0.6));
}

.feature-item:nth-child(1) .feature-icon { color: #e53e3e; }
.feature-item:nth-child(2) .feature-icon { color: #ed8936; }
.feature-item:nth-child(3) .feature-icon { color: #3182ce; }
.feature-item:nth-child(4) .feature-icon { color: #38a169; }

@keyframes icon-float-smooth {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translateY(-4px) rotate(1deg) scale(1.03); 
    }
    50% { 
        transform: translateY(-2px) rotate(0deg) scale(1.01); 
    }
    75% { 
        transform: translateY(-3px) rotate(-1deg) scale(1.02); 
    }
}



/* Адаптивность для карточек процесса */
@media (max-width: 1200px) {
    .gasification-process {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Адаптивность для карточек особенностей */
@media (max-width: 768px) {
    .system-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 40px 0;
    }
    
    .feature-item .green-frame {
        padding: 20px 15px;
    }
    
    .feature-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    
    .feature-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

@media (max-width: 550px) {
    .system-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin: 30px 0;
    }
    
    .feature-item .green-frame {
        padding: 15px 10px;
    }
    
    .feature-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .feature-item p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

@media (max-width: 360px) {
    .system-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .feature-item .green-frame {
        padding: 12px 8px;
    }
    
    .feature-icon {
        font-size: 1.6rem;
    }
    

    
    .feature-item p {
        font-size: 0.75rem;
    }
}

/* Адаптивность для табов */
@media (max-width: 768px) {
    .heating-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .heating-tab .green-frame {
        padding: 10px 12px;
        font-size: 0.9rem;
        gap: 6px;
    }
    
    .heating-tab i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .heating-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .heating-tab .green-frame {
        padding: 8px 10px;
        font-size: 0.8rem;
        gap: 4px;
    }
    
    .heating-tab i {
        font-size: 0.9rem;
    }
}

/* Адаптивность для контента с фото - ПЕРЕСТАНОВКА НА КОЛОНКУ */
/* Адаптивность для карточек особенностей */
@media (max-width: 768px) {
    .system-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 40px 0;
    }
    
    .feature-item .green-frame {
        padding: 20px 15px;
    }
    
    .feature-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .feature-item h4 {
        font-size: 1rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

@media (max-width: 550px) {
    .system-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin: 30px 0;
        padding: 0 5px;
    }
    
    .feature-item .green-frame {
        padding: 15px 10px;
        min-height: 120px;
    }
    
    .feature-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .feature-item h4 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .feature-item p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

@media (max-width: 360px) {
    .system-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .feature-item .green-frame {
        padding: 12px 8px;
        min-height: auto;
    }
    
    .feature-icon {
        font-size: 1.6rem;
    }
    
    .feature-item h4 {
        font-size: 0.85rem;
    }
    
    .feature-item p {
        font-size: 0.75rem;
    }
}

/* Адаптивность для контента с фото - оставляем как было */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tab-content .green-frame {
        padding: 25px;
    }
    
    .content-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .content-text li {
        font-size: 0.95rem;
        padding-left: 30px;
        margin-bottom: 12px;
    }
    
    .content-text li::before {
        font-size: 1.2rem;
        top: -1px;
    }
}

@media (max-width: 480px) {
    .content-grid {
        gap: 20px;
    }
    
    .tab-content .green-frame {
        padding: 20px;
    }
    
    .content-text p {
        font-size: 0.9rem;
    }
    
    .content-text li {
        font-size: 0.85rem;
        padding-left: 25px;
        margin-bottom: 10px;
    }
    
    .content-text li::before {
        font-size: 1.1rem;
    }
    
    .content-image {
        border-radius: 15px;
    }
    
    .content-image img {
        border-radius: 15px;
    }
}
















/* Стили для блока газового сервиса */
/* Стили для блока газового сервиса */
.services-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.services-header .section-title {
    font-size: 3rem;
    background: linear-gradient(135deg, #FFA500, #FF8C00, #FF4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 8s ease-in-out infinite;
    text-shadow: 0 0 25px rgba(255, 165, 0, 0.4);
    margin-bottom: 20px;
    text-transform: none;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
    width: 100%;
    box-sizing: border-box;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.services-header .section-subtitle {
    font-size: 1.4rem;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    font-weight: 600;
    width: 100%;
    box-sizing: border-box;
}

/* СЕТКА КАРТОЧЕК */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 50px 0;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* КАРТОЧКА УСЛУГИ */
.service-card {
    position: relative;
    transition: transform 0.3s ease;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .green-frame {
    padding: 20px 15px; /* Уменьшил padding */
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* ФОНОВАЯ ИКОНКА */
.service-bg-icon {
    position: absolute;
    font-size: 6rem; /* Уменьшил иконку */
    opacity: 0.15;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: saturate(2.2) brightness(1.2);
    box-sizing: border-box;
}

/* ЦВЕТА ФОНОВЫХ ИКОНОК */
.service-card:nth-child(1) .service-bg-icon { 
    color: #e53e3e;
}
.service-card:nth-child(2) .service-bg-icon { 
    color: #ed8936;
}
.service-card:nth-child(3) .service-bg-icon { 
    color: #3182ce;
}
.service-card:nth-child(4) .service-bg-icon { 
    color: #38a169;
}
.service-card:nth-child(5) .service-bg-icon { 
    color: #805ad5;
}
.service-card:nth-child(6) .service-bg-icon { 
    color: #d53f8c;
}

/* КОНТЕНТ КАРТОЧКИ */
.service-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px; /* Минимальные отступы */
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}


.service-description {
    color: #4a5568;
    font-size: 0.95rem; /* Уменьшил шрифт */
    line-height: 1.3; /* Уменьшил межстрочный */
    padding: 0 5px; /* Уменьшил отступы */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

/* ЦЕНА УСЛУГИ */
.service-price {
    font-size: 1.5rem; /* Уменьшил шрифт */
    font-weight: 700;
    color: #48bb78;
    margin: 2px 0; /* Минимальные отступы */
    padding: 4px 10px; /* Уменьшил padding */
    background: rgba(72, 187, 120, 0.1);
    border: 2px solid rgba(72, 187, 120, 0.3);
    border-radius: 6px;
    display: inline-block;
    animation: price-pulse 3s ease-in-out infinite;
    width: auto;
    box-sizing: border-box;
}

@keyframes price-pulse {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.05);
    }
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-bg-icon {
        font-size: 5rem;
    }
    
    .services-header .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-header .section-title {
        font-size: 2.2rem;
    }
    
    .services-header .section-subtitle {
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-card .green-frame {
        padding: 15px 10px;
    }
    
    .service-card h3 {
        font-size: 1rem;
        min-height: 1.8rem;
        line-height: 1.1;
        margin: 0 0 1px 0;
    }
    
    .service-description {
        font-size: 0.85rem;
        padding: 0 3px;
        line-height: 1.2;
    }
    
    .service-bg-icon {
        font-size: 3.5rem;
    }
    
    .service-price {
        font-size: 1.3rem;
        padding: 3px 8px;
        margin: 1px 0;
    }
}

@media (max-width: 480px) {
    .services-header .section-title {
        font-size: 1.8rem;
    }
    
    .services-header .section-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .service-card .green-frame {
        padding: 12px 8px;
    }
    
    .service-card h3 {
        font-size: 0.9rem;
        min-height: 1.6rem;
        line-height: 1.1;
        margin: 0;
        padding: 0 2px;
    }
    
    .service-description {
        font-size: 0.75rem;
        padding: 0;
        line-height: 1.1;
    }
    
    .service-bg-icon {
        font-size: 2.5rem;
    }
    
    .service-price {
        font-size: 1.1rem;
        padding: 2px 6px;
        margin: 0;
    }
}

@media (max-width: 360px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .service-card .green-frame {
        padding: 10px 6px;
    }
    
    .service-card h3 {
        font-size: 0.85rem;
        min-height: 1.4rem;
    }
    
    .service-description {
        font-size: 0.7rem;
    }
    
    .service-bg-icon {
        font-size: 2rem;
    }
    
    .service-price {
        font-size: 1rem;
    }
}







.approach-highlight {
    background: rgba(72, 187, 120, 0.1);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #48bb78;
    margin-top: 15px;
}

.approach-highlight p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    text-align: left;
    /* ПОЛНЫЙ СБРОС ДЛЯ ПРАВИЛЬНОГО ОТОБРАЖЕНИЯ */
    display: block !important;
    width: auto !important;
    float: none !important;
    clear: both !important;
    white-space: normal !important;
    word-wrap: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: manual !important;
    table-layout: auto !important;
}

.approach-cta {
    text-align: center;
    margin-top: 40px;
}

/* ДОБАВЛЯЕМ СТИЛИ ДЛЯ САБТАЙТЛА */
.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #FF8C00, #FF5500);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.6);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .approach-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .approach-card .green-frame {
        padding: 25px 20px;
    }
    
    .approach-icon {
        font-size: 3rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .approach-card .green-frame {
        padding: 25px;
    }
    
    .approach-icon {
        font-size: 3.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .approach-card .green-frame {
        padding: 20px 15px;
    }
    
    .approach-icon {
        font-size: 3rem;
    }
    
    .approach-highlight {
        padding: 15px;
    }
    
    .approach-highlight p {
        font-size: 0.9rem;
        line-height: 1.6;
        /* СБРАСЫВАЕМ ВСЕ ЛИШНИЕ СТИЛИ */
        display: block !important;
        width: 100% !important;
        float: none !important;
        white-space: normal !important;
        word-wrap: normal !important;
        word-break: normal !important;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .approach-card .green-frame {
        padding: 18px 12px;
    }
    
    .approach-icon {
        font-size: 2.5rem;
    }
    
    .approach-card p {
        font-size: 0.9rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
}

















/*стили галереи*/
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 25px;
    position: relative;
    z-index: 2;
    margin: 40px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    display: flex;
    justify-content: center;
}

.gallery-item .green-frame {
    border-radius: 20px;
    position: relative;
    padding: 4px;
    margin: 0;
    display: inline-block;
}

.gallery-image-container {
    position: relative;
    margin: 0;
    padding: 0;
    z-index: 2;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 280px;
}

.gallery-image {
    max-height: 270px;
    width: auto;
    object-fit: contain;
    border-radius: 16px;
    display: block;
    transform: scale(1.05); /* ТЕПЕРЬ ВСЕГДА */
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(72, 187, 120, 0.3), 
        rgba(56, 161, 105, 0.2),
        rgba(72, 187, 120, 0.3));
    opacity: 0.6; /* ТЕПЕРЬ ВСЕГДА */
    z-index: 3;
    border-radius: 16px;
    pointer-events: none;
}

/* УБРАЛ ВСЕ ХОВЕР ЭФФЕКТЫ */
.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 50px 0 25px 0;
    position: relative;
    z-index: 2;
}

.control-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
    position: relative;
    box-shadow: 
        0 0 20px rgba(72, 187, 120, 0.5),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-dots {
    display: flex;
    gap: 20px;
    align-items: center;
}

.dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(72, 187, 120, 0.3);
    cursor: pointer;
    box-shadow: 
        inset 0 0 10px rgba(255, 255, 255, 0.2),
        0 0 10px rgba(72, 187, 120, 0.3);
}

.dot.active {
    transform: scale(1.4);
    background: linear-gradient(135deg, #48bb78, #38a169);
    box-shadow: 
        0 0 20px rgba(72, 187, 120, 0.6),
        inset 0 0 15px rgba(255, 255, 255, 0.3);
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.gallery-cta p {
    color: #4a5568;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.gallery-cta .btn {
    background: linear-gradient(135deg, #FF8C00, #FF5500);
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.4);
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 20px;
    }
    
    .gallery-image-container {
        height: 240px;
    }
    
    .gallery-image {
        max-height: 230px;
    }
}

@media (max-width: 850px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-image-container {
        height: 200px;
    }
    
    .gallery-image {
        max-height: 190px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        gap: 12px;
    }
    
    .gallery-image-container {
        height: 180px;
    }
    
    .gallery-image {
        max-height: 170px;
    }
}

@media (max-width: 515px) {
    .gallery-grid {
        gap: 10px;
    }
    
    .gallery-image-container {
        height: 160px;
    }
    
    .gallery-image {
        max-height: 150px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        gap: 8px;
    }
    
    .gallery-image-container {
        height: 140px;
    }
    
    .gallery-image {
        max-height: 130px;
    }
    
    .gallery-controls {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .gallery-dots {
        order: -1;
        width: 100%;
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 360px) {
    .gallery-grid {
        gap: 6px;
    }
    
    .gallery-image-container {
        height: 120px;
    }
    
    .gallery-image {
        max-height: 110px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .gallery-image-container {
        height: 200px;
    }
    
    .gallery-image {
        max-height: 190px;
    }
}















/* Стили для блока покрытия */
.coverage-content-compact {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 30px;
    align-items: start;
    margin: 40px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.coverage-text-compact .green-frame {
    padding: 30px;
    height: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

.coverage-text-compact p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    width: 100%;
    word-wrap: break-word;
}

.coverage-highlight-compact {
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.1), rgba(56, 161, 105, 0.1));
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #48bb78;
    margin: 25px 0;
    width: 100%;
    box-sizing: border-box;
}

.coverage-highlight-compact p {
    margin-bottom: 0;
    font-style: italic;
    font-weight: 600;
    color: #2d3748;
    font-size: 1.1rem;
    word-wrap: break-word;
}

/* Список городов */
.cities-list-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0;
    width: 100%;
}

.city-item-compact {
    display: block;
    align-items: left;
    padding: 12px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(72, 187, 120, 0.2);
    width: 100%;
    box-sizing: border-box;
}

.city-icon-compact {
    font-size: 1.2rem;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Карта - ИСПРАВЛЕННЫЙ БЛОК */
.coverage-map-compact {
    position: relative;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.coverage-map-compact .green-frame {
    padding: 3px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    width: auto; /* Меняем на auto чтобы рамка подстраивалась под картинку */
    height: auto;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Стили для статичной карты - ИСПРАВЛЕНО */
.static-map {
    position: relative;
    width: auto; /* Автоматическая ширина по содержимому */
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%; /* Но не больше родителя */
}

.static-map img {
    width: auto; /* Сохраняем оригинальную ширину картинки */
    height: 350px; /* Фиксированная высота для десктопа */
    display: block;
    border-radius: 12px;
    object-fit: contain; /* Важно: contain чтобы вся карта была видна без обрезки */
}

/* CTA блок */
.coverage-cta-compact {
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

.coverage-cta-compact .green-frame {
    padding: 30px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.coverage-cta-compact p {
    color: #4a5568;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    width: 100%;
    word-wrap: break-word;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .coverage-content-compact {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .coverage-map-compact {
        justify-content: center; /* Центрируем карту по горизонтали */
        width: 100%;
    }
    
    .coverage-map-compact .green-frame {
        width: auto; /* Рамка подстраивается под картинку */
    }
    
    .static-map img {
        height: 300px; /* Уменьшаем высоту для планшетов */
        width: auto; /* Сохраняем пропорции */
    }
}

@media (max-width: 768px) {
    .coverage-content-compact {
        gap: 20px;
        margin: 30px 0;
    }
    
    .static-map img {
        height: 250px; /* Уменьшаем высоту для мобильных */
        max-width: 100%; /* Ограничиваем ширину родителем */
    }
    
    .cities-list-compact {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .city-item-compact {
        padding: 10px;
        gap: 8px;
        min-height: 45px;
    }
    
    .city-icon-compact {
        font-size: 1rem;
        width: 20px;
    }
    
    .city-item-compact span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .coverage-content-compact {
        gap: 15px;
        margin: 25px 0;
    }
    
    .static-map img {
        height: 200px; /* Еще меньше для маленьких экранов */
        max-width: 100%;
    }
    
    .city-item-compact {
        padding: 8px;
        gap: 6px;
        min-height: 40px;
    }
    
    .city-icon-compact {
        font-size: 0.9rem;
        width: 18px;
    }
    
    .city-item-compact span {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .cities-list-compact {
        grid-template-columns: 1fr;
    }
    
    .static-map img {
        height: 180px; /* Минимальная высота для очень маленьких экранов */
        max-width: 100%;
    }
    
    .city-item-compact {
        padding: 6px;
        gap: 4px;
        min-height: 35px;
    }
    
    .city-icon-compact {
        font-size: 0.85rem;
        width: 16px;
    }
    
    .city-item-compact span {
        font-size: 0.75rem;
    }
}















/* Стили для финансового блока */
.finance-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.finance-header .section-title {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #FFA500, #FF8C00, #FF4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 8s ease-in-out infinite;
    text-shadow: 0 0 25px rgba(255, 165, 0, 0.4);
    margin-bottom: 20px;
    text-transform: none;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.finance-header .section-subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

.finance-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 60px 0;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

/* Карточки финансов */
.finance-card {
    position: relative;
    transition: transform 0.3s ease;
}

.finance-card:hover {
    transform: translateY(-5px);
}

.finance-card .green-frame {
    padding: 25px;
    border-radius: 20px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-content {
    position: relative;
    z-index: 2;
    color: #2d3748;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Изображения - статичные без анимации */
.card-image {
    width: 100%;
    height: 180px;
    border-radius: 15px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}




/* Списки преимуществ - выровнены по левому краю */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex: 1;
    text-align: left;
}

.benefits-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;    
    font-size: 0.95rem;
}

.benefits-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #48bb78;
    font-size: 1.2rem;
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Адаптивность */
@media (max-width: 1200px) {
    .finance-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .finance-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .finance-card .green-frame {
        padding: 20px;
    }
}

@media (max-width: 900px) {
    .finance-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .finance-card .green-frame {
        padding: 18px 15px;
    }
    

    
   
}

@media (max-width: 768px) {
    .finance-header .section-title {
        font-size: 2.2rem;
    }
    
    .finance-header .section-subtitle {
        font-size: 1.1rem;
    }
    
    .finance-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 600px;
    }
    
    .finance-card .green-frame {
        padding: 25px;
    }
    

   
    
    .card-image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .finance-header .section-title {
        font-size: 1.8rem;
    }
    
    .finance-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .finance-card .green-frame {
        padding: 20px;
    }
    

    
    .card-image {
        height: 180px;
    }
    
    .benefits-list li {
        font-size: 0.9rem;
        padding-left: 25px;
    }
    
    .benefits-list li i {
        font-size: 1.1rem;
    }
}








/*бойлеры*/
.process {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, #ffffff 0%, #f8fafc 25%, #f0f8ff 50%, #e6f3ff 75%, #ffffff 100%),
        linear-gradient(90deg, transparent 40%, rgba(100, 200, 255, 0.25) 100%),
        linear-gradient(180deg, transparent 50%, rgba(255, 165, 0, 0.2) 100%),
        linear-gradient(225deg, transparent 60%, rgba(139, 92, 246, 0.15) 100%),
        linear-gradient(45deg, rgba(72, 187, 120, 0.15) 0%, transparent 50%);
    background-blend-mode: normal, overlay, overlay, overlay, overlay;
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    position: relative;
    overflow: hidden;       что это строчка делаешь?
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 85% 85%, rgba(139, 92, 246, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 15% 85%, rgba(72, 187, 120, 0.35) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(100, 200, 255, 0.35) 0%, transparent 40%),
        radial-gradient(circle at 15% 15%, rgba(255, 165, 0, 0.25) 0%, transparent 40%);
    /*animation: float 5s ease-in-out infinite;*/
    z-index: 1;
}

.process .container {
    position: relative;
    z-index: 2;
}

.process .section-title {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #FFA500, #FF8C00, #FF4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 8s ease-in-out infinite;
    text-shadow: 0 0 25px rgba(255, 165, 0, 0.4);
    margin-bottom: 20px;
    text-transform: none;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Стили для карточек бойлеров */
.boiler-cards-field {
    margin-top: 40px;
}

.boiler-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

.boiler-card-item {
    position: relative;
    transition: transform 0.3s ease;
}

.boiler-card-item:hover {
    transform: translateY(-5px);
}

.boiler-card-item .green-frame {
    padding: 25px;
    border-radius: 20px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.boiler-card-item img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 10px;
}

.boiler-card-bg-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    animation: icon-float-smooth 8s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(72, 187, 120, 0.6));
}

@keyframes icon-float-smooth {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translateY(-4px) rotate(1deg) scale(1.03); 
    }
    50% { 
        transform: translateY(-2px) rotate(0deg) scale(1.01); 
    }
    75% { 
        transform: translateY(-3px) rotate(-1deg) scale(1.02); 
    }
}

.boiler-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}


.boiler-card-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 500;
}

.boiler-card-price {
    margin-top: auto;
    font-size: 1.5rem;
    font-weight: bold;
    color: #48bb78;
    padding: 10px;
    background: rgba(72, 187, 120, 0.1);
    border-radius: 10px;
    margin-top: 15px;
}

.boiler-card-volumes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.volume-option {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: rgba(72, 187, 120, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(72, 187, 120, 0.3);
    gap: 10px; /* Добавляем отступ между объемом и описанием */
}

.volume {
    font-weight: bold;
    color: #2d3748;
    font-size: 1.1rem;
    white-space: nowrap; /* Чтобы объем не переносился */
}

.volume-desc {
    color: #4a5568;
    font-size: 0.9rem;
    text-align: left; /* Меняем на left */
    flex: 1; /* Занимает все оставшееся пространство */
}

.boiler-card-note {
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.boiler-card-note p {
    color: #d69e2e;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
}
/* Адаптивность */
@media (max-width: 1200px) {
    .boiler-cards-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .boiler-cards-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .boiler-card-item .green-frame {
        padding: 20px;
    }
}

@media (max-width: 900px) {
    .boiler-cards-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .boiler-card-item .green-frame {
        padding: 18px 15px;
    }
    
    .boiler-card-bg-icon {
        font-size: 2.5rem;
    }
    
}

@media (max-width: 768px) {
    .process {
        padding: 50px 0;
    }
    
    .process .section-title {
        font-size: 2.2rem;
    }
    
    .boiler-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .boiler-card-item .green-frame {
        padding: 25px;
    }
    
    .boiler-card-bg-icon {
        font-size: 3rem;
    }
    
    
    .boiler-card-item img {
        max-height: 220px;
    }
}

@media (max-width: 480px) {
    .process .section-title {
        font-size: 1.8rem;
    }
    
    .boiler-cards-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .boiler-card-item .green-frame {
        padding: 20px;
    }
    
    .boiler-card-bg-icon {
        font-size: 2.5rem;
    }
    
    .boiler-card-item img {
        max-height: 180px;
    }
}








/* Стили для видео CTA блока */
.video-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.video-cta-title {
    font-size: 3rem;
    background: linear-gradient(135deg, #FFA500, #FF8C00, #FF4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 8s ease-in-out infinite;
    text-shadow: 0 0 25px rgba(255, 165, 0, 0.4);
    margin-bottom: 20px;
    text-transform: none;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.video-cta-subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 50px;
    font-weight: 600;
}

.video-instruction-card {
    margin: 40px 0;
    position: relative;
}

.video-instruction-card .green-frame {
    padding: 40px;
    border-radius: 25px;
    position: relative;
    /*overflow: hidden;*/
}

.video-instruction-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.video-icon {
    font-size: 3rem;
    animation: video-pulse 2s ease-in-out infinite;
}

@keyframes video-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}


.video-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 20px;
}

.video-step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(72, 187, 120, 0.08);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #48bb78;
}

.video-step:hover {
    background: rgba(72, 187, 120, 0.15);
    transform: translateX(10px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(72, 187, 120, 0.4);
    animation: number-float 3s ease-in-out infinite;
}

@keyframes number-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.video-step span {
    color: #4a5568;
    font-size: 1.1rem;
    font-weight: 500;
}

.video-step strong {
    color: #2d3748;
    font-weight: 700;
}

.whatsapp-cta {
    margin-top: 50px;
}

.whatsapp-btn {
    display: inline-block;
    background: linear-gradient(135deg, #25D366, #128C7E, #075E54);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    padding: 5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: btn-float 3s ease-in-out infinite;
}

@keyframes btn-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.6);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    position: relative;
    z-index: 2;
}

.btn-icon {
    font-size: 2.5rem;
    animation: icon-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-main-text {
    font-size: 1.4rem;
    font-weight: bold;
}

.btn-sub-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-arrow {
    font-size: 1.5rem;
    animation: arrow-move 1.5s ease-in-out infinite;
}

@keyframes arrow-move {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    transform: rotate(45deg);
    animation: btn-shine 3s ease-in-out infinite;
}

@keyframes btn-shine {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

.cta-note {
    color: #4a5568;
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Адаптивность */
@media (max-width: 768px) {
    .video-cta-title {
        font-size: 2.2rem;
    }
    
    .video-cta-subtitle {
        font-size: 1.1rem;
    }
    
    .video-instruction-card .green-frame {
        padding: 25px;
    }
    
    .video-instruction-header {
        flex-direction: column;
        text-align: center;
    }
    
    .video-step {
        padding: 15px;
    }
    
    .btn-content {
        padding: 15px 20px;
    }
    
    .btn-main-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .video-cta-title {
        font-size: 1.8rem;
    }
    
    .video-steps {
        gap: 15px;
    }
    
    .video-step {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .btn-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .video-instruction-card .green-frame {
        padding: 20px;
    }
}









/* Стили для футера */
/* Стили для футера - ИСПРАВЛЕННЫЕ */
/* Стили для футера - ИСПРАВЛЕННЫЕ */
.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-phone .green-frame {
    padding: 30px 25px;
    text-align: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden; /* Добавляем чтобы анимация не выходила за границы */
}

.phone-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    /* Убираем анимацию полностью или ограничиваем её */
    animation: none; /* Отключаем анимацию */
}

/* Если хотите оставить анимацию, но без выхода за границы: */
/*
.phone-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: icon-float-safe 3s ease-in-out infinite;
    display: inline-block; /* Важно для правильной работы трансформаций 
}

@keyframes icon-float-safe {
    0%, 100% { 
        transform: translateY(0) scale(1);
    }
    50% { 
        transform: translateY(-5px) scale(1.05); /* Уменьшаем амплитуду 
    }
}
*/

.phone-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #2d3748;
    text-decoration: none;
    margin-bottom: 10px;
    padding: 15px 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(72, 187, 120, 0.1);
    border: 2px solid rgba(72, 187, 120, 0.3);
}

.phone-number:hover {
    transform: translateY(-2px);
    background: rgba(72, 187, 120, 0.2);
    box-shadow: 0 5px 15px rgba(72, 187, 120, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(72, 187, 120, 0.3);
}

.footer-bottom p {
    color: #4a5568;
    margin-bottom: 10px;
    font-weight: 500;
}

.footer-bottom p:last-child {
    color: #48bb78;
    font-weight: 600;
}

/* Адаптивность */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-phone .green-frame {
        padding: 25px 20px;
    }
    
    .phone-number {
        font-size: 1.5rem;
        padding: 12px 20px;
    }
    
    .phone-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .footer-phone .green-frame {
        padding: 20px 15px;
    }
    
    .phone-number {
        font-size: 1.3rem;
        padding: 10px 15px;
    }
}










/*2 карточки по бокам на странице газификация в первом блоке*/
.gasification-docs-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.gasification-doc-card {
    position: relative;
    transition: transform 0.3s ease;
}

.gasification-doc-card:hover {
    transform: translateY(-5px);
}

.gasification-doc-card .green-frame {
    padding: 30px 25px;
    border-radius: 20px;
    position: relative;
    /*overflow: hidden;*/
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 300px;
}

.gasification-doc-icon {
    font-size: 3.5rem;
    color: #48bb78;
    margin-bottom: 20px;
    animation: gasification-icon-pulse 2s ease-in-out infinite;
}

@keyframes gasification-icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.gasification-doc-content {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.gasification-doc-description {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.gasification-doc-price {
    font-size: 2rem;
    font-weight: 800;
    color: #48bb78;
    margin: 15px 0;
    background: rgba(72, 187, 120, 0.1);
    padding: 12px 20px;
    border-radius: 15px;
    border: 1px solid rgba(72, 187, 120, 0.3);
    animation: gasification-price-pulse 2s ease-in-out infinite;
}

@keyframes gasification-price-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(72, 187, 120, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(72, 187, 120, 0.4);
    }
}

.gasification-doc-note {
    color: #718096;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
    font-weight: 500;
}



/* Адаптивность */
@media (max-width: 768px) {
    .gasification-docs-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
        max-width: 500px;
    }
    
    .gasification-doc-card .green-frame {
        padding: 25px 20px;
        min-height: 280px;
    }
    
    .gasification-doc-icon {
        font-size: 3rem;
    }
    

    
    .gasification-doc-description {
        font-size: 0.95rem;
    }
    
    .gasification-doc-price {
        font-size: 1.8rem;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .gasification-docs-cards {
        max-width: 400px;
    }
    
    .gasification-doc-card .green-frame {
        padding: 20px 15px;
        min-height: 260px;
    }
    
    .gasification-doc-icon {
        font-size: 2.5rem;
    }
    

    
    .gasification-doc-description {
        font-size: 0.9rem;
    }
    
    .gasification-doc-price {
        font-size: 1.6rem;
        padding: 8px 12px;
    }
    
    .gasification-doc-note {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .gasification-docs-cards {
        max-width: 320px;
    }
    
    .gasification-doc-card .green-frame {
        padding: 18px 12px;
        min-height: 240px;
    }
    
    .gasification-doc-icon {
        font-size: 2.2rem;
    }
    

    
    .gasification-doc-description {
        font-size: 0.85rem;
    }
    
    .gasification-doc-price {
        font-size: 1.4rem;
        padding: 6px 10px;
    }
}















/*счетчики*/
/* Стили для блока счетчиков газа */
/* Стили для блока счетчиков газа */
.meter-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.meter-service-card {
    position: relative;
    transition: transform 0.3s ease;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.meter-service-card:hover {
    transform: translateY(-5px);
}

.meter-service-card .green-frame {
    padding: 20px 15px;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 100px;
    width: 100%;
    box-sizing: border-box;
}

.meter-service-bg-icon {
    font-size: 2.5rem;
    color: #48bb78;
    animation: meter-icon-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;    
}

@keyframes meter-icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.meter-service-content {
    text-align: left;
    flex: 1;   
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}



.meter-service-description {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.3;
    margin: 0;
    font-weight: 500;
    width: 100%;
    box-sizing: border-box;
}

/* Блок с изображениями счетчиков БЕЗ РАМОЧКИ */
.meter-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.meter-image-card {
    position: relative;
    transition: transform 0.3s ease;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.meter-image-card:hover {
    transform: translateY(-5px);
}

.meter-image-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: transparent;
    z-index: 2;
    box-sizing: border-box;
}

/* ТОЧНОЕ СВЕЧЕНИЕ КАК В ОРИГИНАЛЕ */
.meter-image-card::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(
        circle at center,
        rgba(255, 215, 0, 0.4) 0%,
        rgba(255, 140, 0, 0.3) 25%,
        rgba(0, 200, 255, 0.25) 45%,
        transparent 70%
    );
    border-radius: 50%;
    z-index: 1;
    animation: meter-strong-glow 3s ease-in-out infinite alternate;
    filter: blur(20px);
}

@keyframes meter-strong-glow {
    0% { 
        opacity: 0.7;
        transform: scale(0.98);
    }
    100% { 
        opacity: 0.9;
        transform: scale(1.02);
    }
}

.meter-image-wrapper img {
    max-width: 75%;
    max-height: 75%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: 
        drop-shadow(0 0 20px rgba(255, 215, 0, 0.7))
        drop-shadow(0 0 40px rgba(255, 140, 0, 0.4))
        drop-shadow(0 0 60px rgba(0, 200, 255, 0.2));
    z-index: 2;
    position: relative;
}

.meter-price-label {
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
}

.meter-price-text {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.9), rgba(255, 215, 0, 0.8));
    color: #000;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 6px 15px;
    border-radius: 20px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.5);
    animation: meter-price-pulse 2s ease-in-out infinite;
}

@keyframes meter-price-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(255, 140, 0, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(255, 140, 0, 0.6);
    }
}

.meter-specs {
    margin-top: 15px;
    padding: 15px;
    background: rgba(72, 187, 120, 0.08);
    border-radius: 10px;
    border-left: 3px solid #48bb78;
    width: 100%;
    box-sizing: border-box;
}

.meter-specs p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.4;
    font-weight: 500;
}

.meter-specs strong {
    color: #2d3748;
    font-weight: 700;
}

/* Адаптивность */
/* Адаптивность */
@media (max-width: 1024px) {
    .meter-services-grid,
    .meter-images-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .meter-service-card .green-frame {
        padding: 15px 12px;
        min-height: 90px;
    }
    
    .meter-service-bg-icon {
        font-size: 2.2rem;
    }
    
    .meter-service-card h3 {
        font-size: 1.1rem;
    }
    
    .meter-service-description {
        font-size: 0.85rem;
    }
    
    .meter-image-wrapper {
        height: 160px;
    }
}

@media (max-width: 900px) {
    .meter-services-grid,
    .meter-images-grid {
        grid-template-columns: repeat(3, 1fr); /* Оставляем 3 в ряд */
        gap: 12px; /* Уменьшаем отступы */
    }
    
    .meter-service-card .green-frame {
        padding: 12px 10px;
        min-height: 85px;
        gap: 8px; /* Уменьшаем gap между иконкой и текстом */
    }
    
    .meter-service-bg-icon {
        font-size: 1.8rem; /* Уменьшаем иконки */
        min-width: 35px;
    }
    
    .meter-service-card h3 {
        font-size: 0.95rem; /* Уменьшаем заголовки */
    }
    
    .meter-service-description {
        font-size: 0.75rem; /* Уменьшаем описание */
        line-height: 1.2;
    }
    
    .meter-image-wrapper {
        height: 140px;
    }
    
    .meter-price-text {
        font-size: 0.85rem;
        padding: 4px 10px;
    }
    
    .meter-specs {
        padding: 10px;
    }
    
    .meter-specs p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .meter-services-grid,
    .meter-images-grid {
        grid-template-columns: repeat(3, 1fr); /* Все еще 3 в ряд */
        gap: 10px; /* Еще меньше отступы */
    }
    
    .meter-service-card .green-frame {
        padding: 10px 8px;
        min-height: 80px;
        gap: 6px;
    }
    
    .meter-service-bg-icon {
        font-size: 1.6rem;
        min-width: 30px;
    }
    
    .meter-service-card h3 {
        font-size: 0.9rem;
    }
    
    .meter-service-description {
        font-size: 0.7rem;
    }
    
    .meter-image-wrapper {
        height: 120px;
    }
    
    .meter-price-text {
        font-size: 0.8rem;
        padding: 3px 8px;
    }
    
    .meter-specs {
        padding: 8px;
    }
    
    .meter-specs p {
        font-size: 0.75rem;
    }
}

@media (max-width: 640px) {
    .meter-services-grid,
    .meter-images-grid {
        grid-template-columns: 1fr; /* Только на 640px переходим на 1 колонку */
        gap: 15px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .meter-service-card .green-frame {
        padding: 15px;
        min-height: 80px;
        gap: 12px;
    }
    
    .meter-service-bg-icon {
        font-size: 2.2rem;
        min-width: 40px;
    }
    
    .meter-service-card h3 {
        font-size: 1.1rem;
    }
    
    .meter-service-description {
        font-size: 0.9rem;
    }
    
    .meter-image-wrapper {
        height: 160px;
    }
    
    .meter-price-text {
        font-size: 1rem;
        padding: 6px 15px;
    }
    
    .meter-specs {
        padding: 12px;
    }
    
    .meter-specs p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .meter-services-grid,
    .meter-images-grid {
        max-width: 350px;
        gap: 12px;
    }
    
    .meter-service-card .green-frame {
        padding: 12px;
    }
    
    .meter-service-bg-icon {
        font-size: 2rem;
    }
    
    .meter-image-wrapper {
        height: 140px;
    }
    
    .meter-specs {
        padding: 10px;
    }
    
    .meter-specs p {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .meter-services-grid,
    .meter-images-grid {
        max-width: 300px;
    }
    
    .meter-service-card .green-frame {
        padding: 10px;
    }
    
    .meter-service-bg-icon {
        font-size: 1.8rem;
    }
    
    .meter-image-wrapper {
        height: 130px;
    }
    
    .meter-price-text {
        font-size: 0.9rem;
        padding: 4px 10px;
    }
}








/*счетчики*/
/* Стили для блока выбора котлов */
/* Стили для блока выбора котлов */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.approach-card {
    position: relative;
    transition: transform 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
}

.approach-card .green-frame {
    padding: 30px 25px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.approach-icon {
    font-size: 3.5rem;
    color: #48bb78;
    margin-bottom: 20px;
    animation: approach-icon-float 3s ease-in-out infinite;
}

@keyframes approach-icon-float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1);
    }
    33% { 
        transform: translateY(-8px) rotate(3deg) scale(1.1);
    }
    66% { 
        transform: translateY(5px) rotate(-3deg) scale(0.98);
    }
}















/*блок как с яндекс картой, но только для картинки*/
.stove-content-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.stove-text-compact .green-frame {
    padding: 30px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stove-photo-compact {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stove-photo-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(72, 187, 120, 0.2);
}

.stove-photo-container {
    height: 400px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.stove-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Адаптивность */
@media (max-width: 968px) {
    .stove-content-compact {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stove-photo-container {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .stove-content-compact {
        gap: 20px;
    }
    
    .stove-text-compact .green-frame {
        padding: 25px 20px;
    }
    
    .stove-photo-container {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .stove-text-compact .green-frame {
        padding: 20px 15px;
    }
    
    .stove-photo-container {
        height: 200px;
    }
}










/* Стили для блока с 2 карточками*/
/* Стили для 2 карточек по центру */
.finance-cards-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 60px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.finance-card-two {
    position: relative;
    transition: transform 0.3s ease;
}

.finance-card-two:hover {
    transform: translateY(-5px);
}

.finance-card-two .green-frame {
    padding: 30px;
    border-radius: 20px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Увеличиваем размеры для 2 карточек */
.finance-card-two .card-image {
    width: 100%;
    height: 220px;
    border-radius: 15px;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(72, 187, 120, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.finance-card-two .step-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
}



/* Стили для блока сравнения радиаторов */
.comparison-summary {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(72, 187, 120, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(72, 187, 120, 0.3);
}

.comparison-summary p {
    margin-bottom: 15px;
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
}

.comparison-summary p:last-child {
    margin-bottom: 0;
}

.comparison-summary strong {
    color: #2d3748;
}

/* Стили для примечания в карточках */
.boiler-card-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 165, 0, 0.3);
    text-align: center;
}

.boiler-card-note p {
    color: #d69e2e;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}

/* Адаптивность для 2 карточек */
@media (max-width: 1024px) {
    .finance-cards-two {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 900px;
    }
    
    .finance-card-two .green-frame {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .finance-cards-two {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 600px;
    }
    
    .finance-card-two .green-frame {
        padding: 25px;
    }
    
    .finance-card-two .card-image {
        height: 200px;
    }
    
    .finance-card-two .step-icon {
        font-size: 3rem;
    }
    

    
    .comparison-summary {
        padding: 20px;
        margin: 30px 0;
    }
    
    .comparison-summary p {
        font-size: 1rem;
    }
    
    .boiler-card-note {
        padding: 12px;
        margin-top: 15px;
    }
    
    .boiler-card-note p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .finance-cards-two {
        gap: 15px;
    }
    
    .finance-card-two .green-frame {
        padding: 20px;
    }
    
    .finance-card-two .card-image {
        height: 180px;
    }
    
    .finance-card-two .step-icon {
        font-size: 2.5rem;
    }
    
    
    .comparison-summary {
        padding: 15px;
        margin: 25px 0;
    }
    
    .comparison-summary p {
        font-size: 0.9rem;
    }
    
    .boiler-card-note {
        padding: 10px;
    }
    
    .boiler-card-note p {
        font-size: 0.8rem;
    }
}











/*стили модального окна в галереи*/
/*стили модального окна в галереи*/
.modal-gallery {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-gallery.active {
    display: block;
    opacity: 1;
}

/* Убираем все обертки - фото напрямую в modal-gallery */
.modal-content {
    display: none;
}

/* Фото занимает ВЕСЬ ЭКРАН с сохранением пропорций */
.modal-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0;
    padding: 0;
    background: black;
}

/* Крестик поверх фото */
.modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: white;
    background: rgba(255, 140, 0, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    border: none;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 140, 0, 1);
    transform: scale(1.1);
}

/* Счетчик поверх фото */
.modal-counter {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.4rem;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 25px;
    border-radius: 25px;
    border: 1px solid rgba(255, 140, 0, 0.4);
    font-weight: bold;
    backdrop-filter: blur(10px);
}

/* Стрелки - ВСЕГДА ПО ЦЕНТРУ */
.modal-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 140, 0, 0.8);
    color: white;
    border: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.modal-nav:hover {
    background: rgba(255, 140, 0, 1);    
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.6);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

/* Убираем миниатюры */
.modal-thumbnails {
    display: none;
}

/* Адаптивность */
@media (max-width: 768px) {
    .modal-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 30px;
    }
    
    .modal-nav {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        /* СТРЕЛКИ ОСТАЮТСЯ ПО ЦЕНТРУ */
        top: 50%;
        transform: translateY(-50%);
    }
    
    .modal-prev {
        left: 15px;
    }
    
    .modal-next {
        right: 15px;
    }
    
    .modal-counter {
        top: 15px;
        font-size: 1.1rem;
        padding: 8px 20px;
    }
}

@media (max-width: 480px) {
    .modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 25px;
    }
    
    .modal-nav {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 100px; /* ПОДНИМАЕМ ЕЩЕ ВЫШЕ */
        top: auto;
        transform: none;
    }
    
    .modal-prev {
        left: 20px;
        top: auto;
        bottom: 190px; /* ПОДНИМАЕМ ЕЩЕ ВЫШЕ */
    }
    
    .modal-next {
        right: 20px;
        top: auto;
        bottom: 190px; /* ПОДНИМАЕМ ЕЩЕ ВЫШЕ */
    }
    
    .modal-counter {
        font-size: 1rem;
        padding: 6px 15px;
        top: 10px;
    }
}

/* ДЛЯ ОЧЕНЬ УЗКИХ ЭКРАНОВ ПОДНИМАЕМ ЕЩЕ ВЫШЕ */
@media (max-width: 360px) {
    .modal-nav {
        bottom: 190px; /* ЕЩЕ ВЫШЕ */
    }
    
    .modal-prev {
        bottom: 190px;
    }
    
    .modal-next {
        bottom: 190px;
    }
}





/*стили для быстрой загрузки, отключение анимации на старте*/
/* ==================== */
/* ОПТИМИЗАЦИЯ АНИМАЦИЙ */
/* ==================== */
/* ОТКЛЮЧАЕМ ВСЕ АНИМАЦИИ ПО УМОЛЧАНИЮ */
.phone-link {
    text-shadow: 0 0 10px rgba(255, 150, 0, 0.8) !important;
}

.menu-link--active {
    box-shadow: 0 0 20px rgba(255, 200, 0, 0.9) !important;
}

 
/*.process::before {
    display: none !important;
}
*/












