* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF1B54;
    --primary-dark: #d61442;
    --primary-light: #ff5a7e;
    --secondary: #667eea;
    --secondary-dark: #5a67d8;
    
    /* Обновленная цветовая схема - единый фон */
    /* Светлая тема */
    --bg-main: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f1f3f5;
    --bg-card: #ffffff;
    --bg-hover: #f8f9fa;
    --bg-solid: #ffffff;
    
    --text-primary: #212529;
    --text-secondary: #495057;
    --text-tertiary: #6c757d;
    --text-light: #868e96;
    
    --border-color: rgba(222, 226, 230, 0.5);
    --border-light: rgba(233, 236, 239, 0.5);
    --border-dark: #ced4da;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.15);
    
    --gradient-primary: linear-gradient(135deg, #FF1B54 0%, #ff5a7e 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    
    --success: #51cf66;
    --info: #339af0;
    --warning: #ffd43b;
    
    /* Убираем все border-radius глобально */
    --radius: 0px;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

/* Lazy loading для изображений */
img {
    opacity: 0;
    transition: opacity 0.3s;
}

img.loaded {
    opacity: 1;
}

/* Изображения в lightbox всегда видимы */
.lightbox-image,
.advantage-lightbox-image {
    opacity: 1 !important;
}

/* Анимации появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Классы для анимаций */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation-duration: 0.6s;
    animation-fill-mode: both;
    animation-timing-function: ease-out;
}

.animate-on-scroll.animated.fadeInUp {
    animation-name: fadeInUp;
}

.animate-on-scroll.animated.fadeIn {
    animation-name: fadeIn;
}

.animate-on-scroll.animated.slideInLeft {
    animation-name: slideInLeft;
}

.animate-on-scroll.animated.slideInRight {
    animation-name: slideInRight;
}

.animate-on-scroll.animated.scaleIn {
    animation-name: scaleIn;
}

/* Задержки анимации */
.animation-delay-100 {
    animation-delay: 0.1s !important;
}

.animation-delay-200 {
    animation-delay: 0.2s !important;
}

.animation-delay-300 {
    animation-delay: 0.3s !important;
}

.animation-delay-400 {
    animation-delay: 0.4s !important;
}

/* Анимированный фон - обновлен */
.bg-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(255, 27, 84, 0.015) 0%, rgba(102, 126, 234, 0.015) 100%);
    overflow: hidden;
}

.bg-animation::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF1B54' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border: 2px solid var(--bg-card);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-tertiary);
}

/* Grid System */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Mobile First Approach */
@media (min-width: 576px) {
    .container { max-width: 540px; }
    .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
    .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
}

@media (min-width: 768px) {
    .container { max-width: 720px; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
}

@media (min-width: 992px) {
    .container { max-width: 816px; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
}

@media (min-width: 1200px) {
    .container { max-width: 969px; }
}

@media (min-width: 1400px) {
    .container { max-width: 1122px; }
}

/* Хедер - обновлен под новый фон */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    min-height: 70px;
}

@media (min-width: 992px) {
    .header-content {
        padding: 13px 0;
        min-height: 60px;
    }
}

.logo-section {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 900;
    text-decoration: none;
    letter-spacing: -1px;
    position: relative;
    color: var(--text-primary) !important;
}

@media (min-width: 992px) {
    .logo {
        font-size: 27px;
    }
}

.logo-go {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.logo:hover::after {
    transform: scaleX(1);
}

.nav {
    display: none;
    list-style: none;
    gap: clamp(20px, 2vw, 35px);
}

@media (min-width: 992px) {
    .nav {
        display: flex;
        gap: 30px;
    }
    
    .nav a {
        font-size: 13px;
    }
}

.nav a {
    color: var(--text-secondary) !important;
    text-decoration: none;
    font-size: clamp(14px, 1.5vw, 15px);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav a:hover {
    color: var(--primary) !important;
}

.nav a:hover::before {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: clamp(15px, 2vw, 30px);
}

.header-contacts {
    display: none;
}

@media (min-width: 768px) {
    .header-contacts {
        display: flex;
        align-items: center;
        gap: 20px;
    }
}

@media (min-width: 992px) {
    .header-contacts {
        gap: 17px;
    }
}

.contact-block {
    text-align: right;
}

.phone, .email {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;
    color: var(--text-primary) !important;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .phone, .email {
        font-size: 14px;
    }
}

.phone:hover, .email:hover {
    color: var(--primary) !important;
}

.work-time {
    font-size: 11px;
    color: var(--text-tertiary);
    margin-top: 3px;
    display: none;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (min-width: 992px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-list {
    list-style: none;
}

.mobile-menu-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu-list li:last-child {
    border-bottom: none;
}

.mobile-menu-list a {
    color: var(--text-primary) !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: block;
    transition: color 0.3s;
}

.mobile-menu-list a:hover {
    color: var(--primary) !important;
}

.mobile-menu-contacts {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.mobile-menu-phone,
.mobile-menu-email {
    display: block;
    color: var(--primary) !important;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.header-btn {
    padding: clamp(10px, 1.5vw, 12px) clamp(15px, 2vw, 25px);
    background: var(--primary) !important;
    color: white !important;
    border: none;
    font-size: clamp(13px, 1.5vw, 15px);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .header-btn {
        padding: 10px 21px;
        font-size: 13px;
    }
}

.header-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    border-radius: 50%;
}

.header-btn:hover::before {
    width: 300px;
    height: 300px;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 27, 84, 0.3);
}

/* УЛУЧШЕННЫЙ Hero Section для всех устройств */
.hero {
    padding: 120px 0 60px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent;
}

/* Мобильная версия hero */
@media (max-width: 991px) {
    .hero {
        padding: 90px 0 40px;
        min-height: auto;
    }
}

/* Десктоп версия с правильным расположением */
@media (min-width: 992px) {
    .hero {
        padding: 102px 0 51px;
        min-height: 85vh;
    }
}

@media (min-width: 1200px) {
    .hero {
        padding: 119px 0 68px;
    }
}

/* Scroll Indicator - ПОДНЯТ НА 100px */
.scroll-indicator {
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

/* Скрываем индикатор на мобильных */
@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}

@media (min-width: 992px) {
    .scroll-indicator {
        bottom: 110px;
    }
}

.scroll-indicator-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 27, 84, 0.3);
    border-radius: 15px;
    position: relative;
}

@media (min-width: 992px) {
    .scroll-indicator-mouse {
        width: 22px;
        height: 34px;
    }
}

.scroll-indicator-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: wheel 2s infinite;
    opacity: 0.6;
}

.scroll-indicator-arrows {
    display: flex;
    flex-direction: column;
    gap: -4px;
}

.scroll-indicator-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid rgba(255, 27, 84, 0.3);
    animation: arrow-fade 2s infinite;
}

.scroll-indicator-arrow:nth-child(2) {
    animation-delay: 0.2s;
    margin-top: -4px;
}

.scroll-indicator-arrow:nth-child(3) {
    animation-delay: 0.4s;
    margin-top: -4px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes wheel {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 20px;
        opacity: 0;
    }
}

@keyframes arrow-fade {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 27, 84, 0.08);
    border: 1px solid rgba(255, 27, 84, 0.2);
    margin-bottom: 20px;
    border-radius: var(--radius);
    font-size: 12px;
}

@media (min-width: 768px) {
    .hero-badge {
        padding: 10px 20px;
        margin-bottom: 30px;
        font-size: 13px;
    }
}

@media (min-width: 992px) {
    .hero-badge {
        padding: 9px 17px;
        margin-bottom: 26px;
        font-size: 11px;
    }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    animation: pulse 2s infinite;
    flex-shrink: 0;
    border-radius: 50%;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.badge-text {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Улучшенная типографика для заголовка */
h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px !important;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
}

@media (min-width: 768px) {
    h1 {
        font-size: 36px !important;
        line-height: 1.15;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 37px !important;
        margin-bottom: 21px;
    }
}

@media (min-width: 1200px) {
    h1 {
        font-size: 37px !important;
        margin-bottom: 21px;
    }
}

@media (min-width: 1400px) {
    h1 {
        font-size: 41px !important;
    }
}

h1 strong {
    font-weight: 900 !important;
}

h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 34px;
    }
}

@media (min-width: 1200px) {
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 43px;
    }
}

/* Улучшенные Feature cards для мобильных */
.features-row {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (min-width: 768px) {
    .features-row {
        margin-bottom: 30px;
        gap: 15px;
    }
}

@media (min-width: 992px) {
    .features-row {
        margin-bottom: 26px;
        gap: 13px;
    }
}

.features-row .col {
    flex: 1 1 100%;
    padding: 0;
}

@media (min-width: 480px) {
    .features-row .col {
        flex: 1 1 calc(50% - 5px);
    }
}

@media (min-width: 768px) {
    .features-row .col {
        flex: 1 1 calc(33.333% - 10px);
    }
}

.feature-card {
    padding: 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    max-width: none;
}

@media (min-width: 768px) {
    .feature-card {
        padding: 18px;
    }
}

@media (min-width: 992px) {
    .feature-card {
        padding: 15px;
    }
}

/* Фоновая иконка с эмоджи */
.feature-card::after {
    content: '';
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 60px;
    height: 60px;
    font-size: 50px;
    opacity: 0.3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    filter: grayscale(100%) sepia(100%) hue-rotate(320deg) saturate(2) brightness(0.8);
}

@media (min-width: 768px) {
    .feature-card::after {
        width: 70px;
        height: 70px;
        font-size: 60px;
        right: -15px;
        bottom: -15px;
    }
}

@media (min-width: 992px) {
    .feature-card::after {
        width: 60px;
        height: 60px;
        font-size: 51px;
        right: -13px;
        bottom: -13px;
    }
}

.features-row .col:nth-child(1) .feature-card::after {
    content: '🏗️';
}

.features-row .col:nth-child(2) .feature-card::after {
    content: '📋';
}

.features-row .col:nth-child(3) .feature-card::after {
    content: '🚚';
}

.feature-card:hover::after {
    opacity: 0.5;
    right: -10px;
    bottom: -10px;
    transform: scale(1.1);
}

.feature-card:hover {
    background: var(--bg-hover);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.feature-number {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .feature-number {
        font-size: 24px;
    }
}

@media (min-width: 992px) {
    .feature-number {
        font-size: 20px;
    }
}

.feature-text {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .feature-text {
        font-size: 13px;
    }
}

@media (min-width: 992px) {
    .feature-text {
        font-size: 11px;
    }
}

/* Специальные стили для карточки с доставкой */
.delivery-card .feature-number {
    font-size: 17px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
    .delivery-card .feature-number {
        font-size: 19px;
    }
}

@media (min-width: 992px) {
    .delivery-card .feature-number {
        font-size: 16px;
    }
}

/* Улучшенные кнопки hero для мобильных */
.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-direction: column;
}

@media (min-width: 576px) {
    .hero-buttons {
        flex-direction: row;
        gap: 15px;
    }
}

@media (min-width: 768px) {
    .hero-buttons {
        gap: 20px;
        margin-bottom: 30px;
    }
}

@media (min-width: 992px) {
    .hero-buttons {
        gap: 17px;
        margin-bottom: 26px;
    }
}

.btn {
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border: none;
    white-space: nowrap;
    border-radius: var(--radius);
    width: 100%;
}

@media (min-width: 576px) {
    .btn {
        width: auto;
        padding: 16px 30px;
    }
}

@media (min-width: 768px) {
    .btn {
        padding: 18px 35px;
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .btn {
        padding: 15px 30px;
        font-size: 14px;
    }
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 27, 84, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 27, 84, 0.35);
    background: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 27, 84, 0.25);
}

/* Минималистичные эмодзи для кнопок */
.btn-icon-emoji {
    font-size: 18px;
    line-height: 1;
}

@media (min-width: 992px) {
    .btn-icon-emoji {
        font-size: 15px;
    }
}

.btn-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .btn-icon {
        width: 17px;
        height: 17px;
    }
}

.hero-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.5;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    border-left: 3px solid var(--success);
}

@media (min-width: 768px) {
    .hero-note {
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .hero-note {
        font-size: 12px;
        padding: 13px;
    }
}

.check-icon {
    width: 20px;
    height: 20px;
    background: rgba(81, 207, 102, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
}

@media (min-width: 992px) {
    .check-icon {
        width: 17px;
        height: 17px;
    }
}

.check-icon svg {
    width: 12px;
    height: 12px;
    fill: var(--success);
}

@media (min-width: 992px) {
    .check-icon svg {
        width: 10px;
        height: 10px;
    }
}

/* Улучшенное Hero Image для всех устройств */
.hero-visual {
    position: relative;
    margin-top: 0px;
}

@media (min-width: 992px) {
    .hero-visual {
        padding-left: 34px;
        position: relative;
        top: 85px;
    }
}

@media (min-width: 1200px) {
    .hero-visual {
        margin-left: -94px;
    }
}

@media (min-width: 1400px) {
    .hero-visual {
        transform: scale(0.935);
        margin-left: -94px;
        transform-origin: left center;
    }
}

.hero-image-wrapper {
    position: relative;
    transition: transform 0.5s;
}

@media (min-width: 992px) {
    .hero-image-wrapper {
        transform: perspective(1000px) rotateY(-10deg);
    }
    
    .hero-image-wrapper:hover {
        transform: perspective(1000px) rotateY(0deg) scale(1.03);
    }
}

.hero-image {
    width: 100%;
    aspect-ratio: 10/8;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}

/* Увеличиваем картинку только для десктопа */
@media (min-width: 992px) {
    .hero-image {
        width: 115%;
    }
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* ПРОДУКТОВАЯ ЛИНЕЙКА - обновлена под новый фон */
.products {
    padding: clamp(60px, 10vh, 100px) 0;
    position: relative;
    background: transparent;
}

@media (min-width: 992px) {
    .products {
        padding: 85px 0;
    }
}

.products .row {
    row-gap: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
}

@media (min-width: 992px) {
    .section-header {
        margin-bottom: 51px;
    }
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
    line-height: 1.2;
}

@media (min-width: 992px) {
    .section-title {
        font-size: 36px;
        margin-bottom: 13px;
    }
}

.section-title .accent-text {
    color: var(--primary);
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-secondary);
    line-height: 1.5;
    margin-top: 10px;
}

@media (min-width: 992px) {
    .section-subtitle {
        font-size: 15px;
        margin-top: 9px;
    }
}

.section-label-top {
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: clamp(15px, 2vw, 20px);
    position: relative;
    display: inline-block;
}

@media (min-width: 992px) {
    .section-label-top {
        font-size: 12px;
        margin-bottom: 17px;
    }
}

.section-label-top::before,
.section-label-top::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: var(--primary);
    opacity: 0.3;
}

@media (min-width: 992px) {
    .section-label-top::before,
    .section-label-top::after {
        width: 43px;
    }
}

.section-label-top::before {
    right: calc(100% + 20px);
}

.section-label-top::after {
    left: calc(100% + 20px);
}

@media (min-width: 992px) {
    .section-label-top::before {
        right: calc(100% + 17px);
    }
    
    .section-label-top::after {
        left: calc(100% + 17px);
    }
}

/* Слайдер продуктов для мобильных с тач-поддержкой */
.products-slider-wrapper {
    position: relative;
    overflow: hidden;
    display: none;
    touch-action: pan-y;
}

@media (max-width: 991px) {
    .products-slider-wrapper {
        display: block;
    }
    
    .products .row {
        display: none;
    }
}

@media (max-width: 576px) {
    .products-slider-wrapper {
        padding-top: 20px;
        padding-bottom: 40px;
    }
    
    .products-slide {
        min-height: auto;
    }
    
    .products-dots {
        margin-top: 20px;
        position: relative;
        bottom: auto;
    }
}

.products-slider {
    display: flex;
    transition: transform 0.3s ease;
}

.products-slide {
    min-width: 100%;
    padding: 0 15px;
}

@media (min-width: 576px) and (max-width: 991px) {
    .products-slide {
        min-width: 50%;
    }
}

.products-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(255, 27, 84, 0.3);
    transition: all 0.3s;
}

.products-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.products-nav.prev {
    left: 10px;
}

.products-nav.next {
    right: 10px;
}

.products-dots {
    display: flex;
    justify-content: center;
    gap: 11px;
    margin-top: 20px;
}

.products-dot {
    width: 15px;
    height: 15px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.products-dot.active {
    background: var(--primary);
    transform: scale(1.5);
}

/* Продуктовые карточки - обновлены под новый фон с более заметными границами */
.product-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
    padding: 0;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.product-card.accent-blue {
    border-color: rgba(102, 126, 234, 0.3);
}

.product-card.accent-blue::before {
    background: var(--gradient-secondary);
}

.product-card.accent-blue:hover {
    border-color: var(--secondary);
}

.product-card.accent-green {
    border-color: rgba(81, 207, 102, 0.3);
}

.product-card.accent-green::before {
    background: linear-gradient(90deg, var(--success) 0%, #8bc34a 100%);
}

.product-card.accent-green:hover {
    border-color: var(--success);
}

.product-card.accent-orange {
    border-color: rgba(255, 215, 59, 0.3);
}

.product-card.accent-orange::before {
    background: linear-gradient(90deg, var(--warning) 0%, #ff9800 100%);
}

.product-card.accent-orange:hover {
    border-color: var(--warning);
}

/* Хедер карточки продукта */
.product-card-header {
    padding: 20px 20px 15px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
}

@media (min-width: 992px) {
    .product-card-header {
        padding: 17px 17px 13px;
    }
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

@media (min-width: 992px) {
    .product-header {
        gap: 10px;
        margin-bottom: 9px;
    }
}

.product-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    padding: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    position: relative;
    border-radius: var(--radius);
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .product-icon {
        width: 60px;
        height: 60px;
        padding: 9px;
        font-size: 30px;
    }
}

.product-icon svg {
    width: 110px;
    height: 110px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.4s;
}

@media (min-width: 992px) {
    .product-icon svg {
        width: 94px;
        height: 94px;
    }
}

.product-card:hover .product-icon svg {
    stroke-width: 2;
    transform: scale(1.1);
}

.product-card.accent-blue .product-icon svg {
    stroke: var(--secondary);
}

.product-card.accent-green .product-icon svg {
    stroke: var(--success);
}

.product-card.accent-orange .product-icon svg {
    stroke: var(--warning);
}

.product-icon .pulse {
    animation: pulse 2s infinite;
}

.product-icon .rotate {
    animation: rotate 10s linear infinite;
    transform-origin: center;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.product-badge {
    padding: 4px 10px;
    background: rgba(255, 27, 84, 0.08);
    border: 1px solid var(--primary);
    font-size: 10px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .product-badge {
        padding: 3px 9px;
        font-size: 9px;
    }
}

.product-card.accent-blue .product-badge {
    background: rgba(102, 126, 234, 0.08);
    border-color: var(--secondary);
    color: var(--secondary);
}

.product-card.accent-green .product-badge {
    background: rgba(81, 207, 102, 0.08);
    border-color: var(--success);
    color: var(--success);
}

.product-card.accent-orange .product-badge {
    background: rgba(255, 215, 59, 0.08);
    border-color: var(--warning);
    color: #ff9800;
}

.product-name {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(18px, 2.2vw, 20px);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

@media (min-width: 992px) {
    .product-name {
        font-size: 17px;
    }
}

.product-tagline {
    font-size: clamp(12px, 1.4vw, 13px);
    color: var(--primary);
    font-weight: 500;
    margin-top: 5px;
}

@media (min-width: 992px) {
    .product-tagline {
        font-size: 11px;
        margin-top: 4px;
    }
}

.product-card.accent-blue .product-tagline {
    color: var(--secondary);
}

.product-card.accent-green .product-tagline {
    color: var(--success);
}

.product-card.accent-orange .product-tagline {
    color: #ff9800;
}

/* Тело карточки */
.product-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .product-card-body {
        padding: 17px;
    }
}

.product-description {
    font-size: clamp(13px, 1.5vw, 14px);
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .product-description {
        font-size: 12px;
        margin-bottom: 17px;
    }
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
    flex: 1;
}

@media (min-width: 992px) {
    .product-features {
        margin-bottom: 17px;
    }
}

.product-features li {
    font-size: clamp(12px, 1.4vw, 13px);
    color: var(--text-secondary);
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
    line-height: 1.4;
}

@media (min-width: 992px) {
    .product-features li {
        font-size: 11px;
        padding: 5px 0;
        padding-left: 19px;
    }
}

.product-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 16px;
}

@media (min-width: 992px) {
    .product-features li::before {
        font-size: 14px;
    }
}

.product-card.accent-blue .product-features li::before {
    color: var(--secondary);
}

.product-card.accent-green .product-features li::before {
    color: var(--success);
}

.product-card.accent-orange .product-features li::before {
    color: var(--warning);
}

/* Футер карточки */
.product-card-footer {
    padding: 20px;
    border-top: 1px solid var(--border-light);
}

@media (min-width: 992px) {
    .product-card-footer {
        padding: 17px;
    }
}

.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .product-btn {
        padding: 10px 17px;
        font-size: 12px;
        gap: 7px;
    }
}

.product-btn:hover {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.product-card.accent-blue .product-btn {
    border-color: var(--secondary);
    color: var(--secondary);
}

.product-card.accent-blue .product-btn:hover {
    background: var(--secondary);
}

.product-card.accent-green .product-btn {
    border-color: var(--success);
    color: var(--success);
}

.product-card.accent-green .product-btn:hover {
    background: var(--success);
}

.product-card.accent-orange .product-btn {
    border-color: #ff9800;
    color: #ff9800;
}

.product-card.accent-orange .product-btn:hover {
    background: #ff9800;
}

/* КЛЮЧЕВЫЕ ПРЕИМУЩЕСТВА - обновлены под новый фон */
.advantages {
    padding: clamp(60px, 10vh, 100px) 0;
    position: relative;
    background: transparent;
}

@media (min-width: 992px) {
    .advantages {
        padding: 85px 0;
    }
}

.section-title .highlight {
    color: var(--primary);
}

.advantage-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    margin-bottom: clamp(30px, 4vw, 40px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    padding: clamp(30px, 3.5vw, 40px);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

@media (min-width: 992px) {
    .advantage-card {
        padding: 34px;
        margin-bottom: 34px;
    }
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.advantage-inner {
    display: flex;
    gap: clamp(30px, 4vw, 40px);
    align-items: flex-start;
    flex-direction: column;
}

@media (min-width: 992px) {
    .advantage-inner {
        flex-direction: row;
        gap: 34px;
    }
}

/* Слайдер изображений в преимуществах с тач-поддержкой */
.advantage-image-section {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 7/7;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 auto;
    border-radius: var(--radius);
    cursor: pointer;
    touch-action: pan-y;
}

@media (min-width: 768px) {
    .advantage-image-section {
        width: 350px;
        max-width: none;
        margin: 0;
    }
}

@media (min-width: 992px) {
    .advantage-image-section {
        width: 323px;
    }
}

@media (min-width: 1200px) {
    .advantage-image-section {
        width: 340px;
    }
}

@media (min-width: 1400px) {
    .advantage-image-section {
        width: 366px;
    }
}

.advantage-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.advantage-slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.advantage-slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.advantage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: all 0.4s;
}

.advantage-image-contain {
    object-fit: contain !important;
}

.advantage-card:hover .advantage-image {
    opacity: 1;
    transform: scale(1.05);
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text-tertiary);
    text-align: center;
    padding: 30px;
    width: 100%;
    height: 100%;
}

@media (min-width: 992px) {
    .image-placeholder {
        gap: 13px;
        padding: 26px;
    }
}

.placeholder-icon {
    width: 100px;
    height: 100px;
    border: 2px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .placeholder-icon {
        width: 85px;
        height: 85px;
    }
}

.placeholder-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--text-tertiary);
    fill: none;
    stroke-width: 1.5;
    opacity: 0.5;
}

@media (min-width: 992px) {
    .placeholder-icon svg {
        width: 43px;
        height: 43px;
    }
}

.placeholder-text {
    font-size: clamp(13px, 1.6vw, 15px);
    color: var(--text-tertiary);
    opacity: 0.7;
}

@media (min-width: 992px) {
    .placeholder-text {
        font-size: 13px;
    }
}

/* Стрелки навигации для слайдера преимуществ */
.advantage-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 5;
    opacity: 0.6;
    border-radius: 50%;
}

@media (min-width: 992px) {
    .advantage-nav {
        width: 27px;
        height: 27px;
    }
}

.advantage-nav:hover {
    opacity: 1;
    background: white;
    box-shadow: var(--shadow-md);
}

.advantage-nav.prev {
    left: 10px;
}

.advantage-nav.next {
    right: 10px;
}

@media (min-width: 992px) {
    .advantage-nav.prev {
        left: 9px;
    }
    
    .advantage-nav.next {
        right: 9px;
    }
}

.advantage-nav svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-secondary);
    fill: none;
    stroke-width: 2;
}

@media (min-width: 992px) {
    .advantage-nav svg {
        width: 14px;
        height: 14px;
    }
}

.advantage-content-wrapper {
    flex: 1;
    position: relative;
    min-width: 0;
}

.advantage-number {
    position: absolute;
    top: -10px;
    right: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(60px, 7vw, 80px);
    font-weight: 900;
    color: rgba(255, 27, 84, 0.1);
    line-height: 1;
    z-index: 0;
}

@media (max-width: 768px) {
    .advantage-number {
        font-size: clamp(40px, 6vw, 60px);
        top: -5px;
    }
}

@media (min-width: 992px) {
    .advantage-number {
        font-size: 68px;
        top: -9px;
    }
}

.advantage-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    margin-bottom: clamp(20px, 2.5vw, 25px);
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    padding-right: 60px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .advantage-title {
        font-size: clamp(18px, 2.5vw, 22px);
        padding-right: 40px;
    }
}

@media (min-width: 992px) {
    .advantage-title {
        font-size: 22px;
        margin-bottom: 21px;
        padding-right: 51px;
    }
}

.advantage-title .highlight {
    color: var(--primary);
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(8px, 1vw, 12px);
    align-items: center;
    margin-bottom: clamp(15px, 2vw, 20px);
    padding: clamp(12px, 1.5vw, 15px);
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .partners-logos {
        gap: 10px;
        margin-bottom: 17px;
        padding: 13px;
    }
}

/* ИСПРАВЛЕННЫЙ Слайдер логотипов партнеров */
.partners-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: clamp(40px, 5vw, 60px);
    padding: 20px 0;
}

@media (min-width: 992px) {
    .partners-slider {
        margin-bottom: 51px;
        padding: 17px 0;
    }
}

.partners-slider-track {
    display: flex;
    animation: slidePartners 20s linear infinite;
}

@keyframes slidePartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .partners-slider-track {
        animation: slidePartnersMobile 25s linear infinite;
    }
    
    @keyframes slidePartnersMobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-120px * 7));
        }
    }
}

.partner-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .partner-slide {
        min-width: 150px;
        padding: 0 15px;
    }
}

@media (min-width: 992px) {
    .partner-slide {
        min-width: 170px;
        padding: 0 17px;
    }
}

.partner-slide img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .partner-slide img {
        max-width: 100px;
        max-height: 50px;
    }
}

@media (min-width: 992px) {
    .partner-slide img {
        max-width: 102px;
        max-height: 51px;
    }
}

.partner-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.partners-label {
    font-size: clamp(10px, 1.2vw, 11px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
    margin-right: 12px;
    padding-right: 12px;
    border-right: 1px solid var(--border-light);
}

@media (max-width: 768px) {
    .partners-label {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 8px;
        margin-bottom: 8px;
        margin-right: 0;
        padding-right: 0;
    }
}

@media (min-width: 992px) {
    .partners-label {
        font-size: 9px;
        margin-right: 10px;
        padding-right: 10px;
    }
}

.partner-logo {
    padding: clamp(4px, 0.8vw, 8px) clamp(10px, 1.5vw, 15px);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    font-size: clamp(11px, 1.3vw, 12px);
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s;
    white-space: nowrap;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .partner-logo {
        padding: 7px 13px;
        font-size: 10px;
    }
}

.partner-logo:hover {
    background: rgba(255, 27, 84, 0.05);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.advantage-content {
    position: relative;
    z-index: 1;
}

.advantage-section {
    margin-bottom: clamp(20px, 2.5vw, 25px);
}

@media (min-width: 992px) {
    .advantage-section {
        margin-bottom: 21px;
    }
}

.section-label {
    font-size: clamp(11px, 1.4vw, 12px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: clamp(8px, 1vw, 12px);
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (min-width: 992px) {
    .section-label {
        font-size: 10px;
        margin-bottom: 10px;
        gap: 7px;
    }
}

.section-label::before {
    content: '';
    width: 15px;
    height: 2px;
    background: var(--primary);
}

@media (min-width: 992px) {
    .section-label::before {
        width: 13px;
    }
}

.advantage-text {
    font-size: clamp(13px, 1.6vw, 14px);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: clamp(12px, 1.5vw, 15px);
}

@media (min-width: 992px) {
    .advantage-text {
        font-size: 12px;
        margin-bottom: 13px;
    }
}

.advantage-highlight-text {
    font-size: clamp(14px, 1.7vw, 15px);
    color: var(--text-primary);
    line-height: 1.6;
    padding: clamp(12px, 1.5vw, 15px);
    background: rgba(255, 27, 84, 0.05);
    border-left: 3px solid var(--primary);
    margin: clamp(15px, 2vw, 20px) 0;
    border-radius: 0;
}

@media (min-width: 992px) {
    .advantage-highlight-text {
        font-size: 13px;
        padding: 13px;
        margin: 17px 0;
    }
}

.numbered-list {
    list-style: none;
    margin-bottom: clamp(15px, 2vw, 20px);
    counter-reset: item;
}

@media (min-width: 992px) {
    .numbered-list {
        margin-bottom: 17px;
    }
}

.numbered-list li {
    padding: clamp(6px, 0.8vw, 8px) 0;
    padding-left: 30px;
    position: relative;
    font-size: clamp(13px, 1.6vw, 14px);
    color: var(--text-secondary);
    line-height: 1.5;
    counter-increment: item;
}

@media (min-width: 992px) {
    .numbered-list li {
        padding: 7px 0;
        padding-left: 26px;
        font-size: 12px;
    }
}

.numbered-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    height: 20px;
    background: rgba(255, 27, 84, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
}

@media (min-width: 992px) {
    .numbered-list li::before {
        width: 17px;
        height: 17px;
        font-size: 9px;
        top: 5px;
    }
}

.feature-list {
    list-style: none;
    margin-bottom: clamp(15px, 2vw, 20px);
}

@media (min-width: 992px) {
    .feature-list {
        margin-bottom: 17px;
    }
}

.feature-list li {
    padding: clamp(6px, 0.8vw, 8px) 0;
    padding-left: 25px;
    position: relative;
    font-size: clamp(13px, 1.6vw, 14px);
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (min-width: 992px) {
    .feature-list li {
        padding: 7px 0;
        padding-left: 21px;
        font-size: 12px;
    }
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-size: 14px;
    font-weight: bold;
}

@media (min-width: 992px) {
    .feature-list li::before {
        font-size: 12px;
    }
}

/* Обновленные метрики */
.final-metrics {
    padding: clamp(25px, 3vw, 35px) clamp(20px, 2.5vw, 30px);
    background: linear-gradient(135deg, rgba(255, 27, 84, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid var(--primary);
    margin-top: clamp(30px, 4vw, 40px);
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .final-metrics {
        padding: 30px 26px;
        margin-top: 34px;
    }
}

.metrics-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    text-align: center;
    margin-bottom: clamp(20px, 2.5vw, 30px);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 992px) {
    .metrics-title {
        font-size: 20px;
        margin-bottom: 26px;
    }
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: clamp(10px, 1.5vw, 20px);
    margin-bottom: clamp(20px, 2.5vw, 30px);
}

@media (max-width: 576px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .metrics-grid {
        gap: 17px;
        margin-bottom: 26px;
    }
}

.metric-card {
    text-align: center;
    padding: clamp(10px, 1.5vw, 15px);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    transition: all 0.3s;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .metric-card {
        padding: 13px;
    }
}

.metric-card:hover {
    background: var(--bg-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.metric-value {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1;
}

@media (min-width: 992px) {
    .metric-value {
        font-size: 27px;
        margin-bottom: 4px;
    }
}

.metric-label {
    font-size: clamp(11px, 1.3vw, 12px);
    color: var(--text-secondary);
    line-height: 1.3;
}

@media (min-width: 992px) {
    .metric-label {
        font-size: 10px;
    }
}

.cta-section {
    text-align: center;
    padding-top: clamp(15px, 2vw, 20px);
    border-top: 1px solid var(--border-light);
}

@media (min-width: 992px) {
    .cta-section {
        padding-top: 17px;
    }
}

.cta-subtitle {
    font-size: clamp(14px, 1.7vw, 16px);
    color: var(--text-secondary);
    margin-bottom: clamp(12px, 1.5vw, 15px);
}

@media (min-width: 992px) {
    .cta-subtitle {
        font-size: 14px;
        margin-bottom: 13px;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: clamp(10px, 1.5vw, 12px) clamp(18px, 2vw, 24px);
    background: var(--primary);
    color: white;
    font-size: clamp(13px, 1.5vw, 14px);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 27, 84, 0.25);
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .cta-button {
        gap: 7px;
        padding: 10px 20px;
        font-size: 12px;
    }
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 27, 84, 0.35);
}

.cta-button svg {
    width: 16px;
    height: 16px;
}

@media (min-width: 992px) {
    .cta-button svg {
        width: 14px;
        height: 14px;
    }
}

.cta-note {
    margin-top: clamp(10px, 1.3vw, 12px);
    font-size: clamp(11px, 1.3vw, 12px);
    color: var(--text-tertiary);
}

@media (min-width: 992px) {
    .cta-note {
        margin-top: 10px;
        font-size: 10px;
    }
}

/* КОМПАКТНЫЙ БЛОК СЕГМЕНТОВ - обновлен под новый фон */
.segments {
    padding: clamp(50px, 8vh, 80px) 0;
    background: transparent;
    position: relative;
}

@media (min-width: 992px) {
    .segments {
        padding: 68px 0;
    }
}

.segment-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    padding: clamp(20px, 2.5vw, 25px);
    height: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

@media (min-width: 992px) {
    .segment-card {
        padding: 21px;
        margin-bottom: 13px;
    }
}

.segment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.segment-card:hover::before {
    transform: scaleX(1);
}

.segment-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.segment-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 27, 84, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .segment-icon-wrapper {
        width: 43px;
        height: 43px;
        margin-bottom: 13px;
    }
}

.segment-icon {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
}

@media (min-width: 992px) {
    .segment-icon {
        width: 20px;
        height: 20px;
    }
}

.segment-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.2;
}

@media (min-width: 992px) {
    .segment-title {
        font-size: 15px;
        margin-bottom: 9px;
    }
}

.segment-text {
    color: var(--text-secondary);
    font-size: clamp(12px, 1.4vw, 13px);
    line-height: 1.5;
    flex: 1;
}

@media (min-width: 992px) {
    .segment-text {
        font-size: 11px;
    }
}

.segment-highlight {
    display: inline-block;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s;
}

@media (min-width: 992px) {
    .segment-highlight {
        margin-top: 9px;
        font-size: 9px;
    }
}

.segment-card:hover .segment-highlight {
    transform: translateX(5px);
}

/* БЛОК ПРОИЗВОДСТВА - обновлен под новый фон */
.production {
    padding: clamp(60px, 10vh, 100px) 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .production {
        padding: 85px 0;
    }
}

.production::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 27, 84, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(102, 126, 234, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.production-container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.production-header {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 60px);
}

@media (min-width: 992px) {
    .production-header {
        margin-bottom: 51px;
    }
}

.production-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 800;
    margin-bottom: clamp(15px, 2vw, 20px);
    color: var(--text-primary);
    line-height: 1.2;
}

@media (min-width: 992px) {
    .production-title {
        font-size: 36px;
        margin-bottom: 17px;
    }
}

/* Акцентный цвет для "полный контроль качества" */
.production-title .accent-text {
    color: var(--primary);
}

.production-subtitle {
    font-size: clamp(14px, 1.6vw, 16px);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .production-subtitle {
        font-size: 14px;
        max-width: 680px;
    }
}

/* Слайдер контейнер */
.slider-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: clamp(30px, 4vw, 40px);
}

@media (min-width: 992px) {
    .slider-wrapper {
        margin-bottom: 34px;
    }
}

.slider-container {
    overflow: hidden;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 992px) {
    .slider-container {
        max-width: 1190px;
    }
}

.slider-track {
    display: flex;
    gap: clamp(10px, 1.5vw, 20px);
    padding: 0 clamp(10px, 1.5vw, 20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 992px) {
    .slider-track {
        gap: 17px;
        padding: 0 17px;
    }
}

/* Слайды */
.slide {
    flex: 0 0 calc(25% - 15px);
    aspect-ratio: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 1200px) {
    .slide {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .slide {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .slide {
        flex: 0 0 calc(100% - 0px);
    }
}

@media (min-width: 992px) {
    .slide {
        flex: 0 0 calc(25% - 13px);
    }
}

.slide:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* Навигационные стрелки - более заметные */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary);
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    color: white;
    font-size: 28px;
    font-weight: bold;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(255, 27, 84, 0.4);
}

@media (min-width: 992px) {
    .slider-arrow {
        width: 51px;
        height: 51px;
        font-size: 24px;
    }
}

.slider-arrow:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 30px rgba(255, 27, 84, 0.6);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

@media (min-width: 992px) {
    .slider-arrow.prev {
        left: 17px;
    }
    
    .slider-arrow.next {
        right: 17px;
    }
}

.slider-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: var(--bg-tertiary);
    border-color: var(--border-color);
    box-shadow: none;
    color: var(--text-tertiary);
}

.slider-arrow.disabled:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-color);
    transform: translateY(-50%);
    box-shadow: none;
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 22px;
        border-width: 2px;
    }
    
    .slider-arrow.prev {
        left: 10px;
    }
    
    .slider-arrow.next {
        right: 10px;
    }
}

/* Навигационные точки */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: clamp(30px, 4vw, 40px);
}

@media (min-width: 992px) {
    .slider-dots {
        gap: 7px;
        margin-bottom: 34px;
    }
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--border-color);
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50%;
}

@media (min-width: 992px) {
    .dot {
        width: 7px;
        height: 7px;
    }
}

.dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 27, 84, 0.5);
    border-color: rgba(255, 27, 84, 0.5);
}

/* Подпись */
.production-note {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 992px) {
    .production-note {
        max-width: 595px;
    }
}

.note-content {
    padding: clamp(20px, 2.5vw, 25px);
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .note-content {
        padding: 21px;
    }
}

.note-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--primary);
    opacity: 0.5;
}

.note-text-wrapper {
    text-align: center;
}

.note-label {
    font-size: clamp(10px, 1.2vw, 11px);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 6px;
}

@media (min-width: 992px) {
    .note-label {
        font-size: 9px;
        margin-bottom: 5px;
    }
}

.note-text {
    font-size: clamp(13px, 1.5vw, 14px);
    color: var(--text-secondary);
    line-height: 1.4;
    font-weight: 400;
}

@media (min-width: 992px) {
    .note-text {
        font-size: 12px;
    }
}

/* Lightbox для просмотра фото */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    cursor: pointer;
    animation: fadeIn 0.3s;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50%;
}

@media (min-width: 992px) {
    .lightbox-close {
        width: 34px;
        height: 34px;
        font-size: 20px;
    }
}

.lightbox-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(90deg);
}

/* Навигация в lightbox */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50%;
}

@media (min-width: 992px) {
    .lightbox-nav {
        width: 43px;
        height: 43px;
        font-size: 20px;
    }
}

.lightbox-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

@media (min-width: 992px) {
    .lightbox-prev {
        left: 26px;
    }
    
    .lightbox-next {
        right: 26px;
    }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.map-section {
    padding: clamp(60px, 10vh, 100px) 0;
    background: transparent;
    position: relative;
}

@media (min-width: 992px) {
    .map-section {
        padding: 85px 0;
    }
}

.map-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

@media (min-width: 992px) {
    .map-section .section-header {
        margin-bottom: 43px;
    }
}

.map-section .section-title .accent {
    color: var(--primary);
}

/* Статистика */
.stats-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 1200px) {
    .stats-panel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-panel {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (min-width: 992px) {
    .stats-panel {
        gap: 26px;
        margin-bottom: 43px;
    }
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .stat-card {
        padding: 20px;
    }
}

@media (min-width: 992px) {
    .stat-card {
        padding: 26px;
    }
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

@media (min-width: 992px) {
    .stat-value {
        font-size: 36px;
        margin-bottom: 9px;
    }
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 992px) {
    .stat-label {
        font-size: 12px;
    }
}

.stat-sublabel {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 5px;
}

@media (min-width: 992px) {
    .stat-sublabel {
        font-size: 10px;
        margin-top: 4px;
    }
}

/* Основной контент с картой */
.map-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 1200px) {
    .map-content {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
    .map-content {
        grid-template-columns: 272px 1fr;
        gap: 26px;
    }
}

/* Фильтры */
.filters-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 30px;
    position: sticky;
    top: 90px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

@media (max-width: 1200px) {
    .filters-panel {
        position: static;
        margin-bottom: 30px;
    }
}

@media (min-width: 992px) {
    .filters-panel {
        padding: 26px;
        top: 77px;
    }
}

.filters-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

@media (min-width: 992px) {
    .filters-title {
        font-size: 15px;
        margin-bottom: 17px;
    }
}

.filter-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
    padding: 10px;
    background: var(--bg-secondary);
    transition: all 0.2s;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .filter-item {
        margin-bottom: 13px;
        padding: 9px;
    }
}

.filter-item:hover {
    background: var(--bg-tertiary);
    transform: translateX(5px);
}

.filter-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: var(--primary);
}

@media (min-width: 992px) {
    .filter-checkbox {
        width: 17px;
        height: 17px;
        margin-right: 10px;
    }
}

.filter-color {
    width: 14px;
    height: 14px;
    margin-right: 12px;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .filter-color {
        width: 12px;
        height: 12px;
        margin-right: 10px;
    }
}

.filter-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

@media (min-width: 992px) {
    .filter-label {
        font-size: 12px;
    }
}

.filter-separator {
    height: 1px;
    background: var(--border-light);
    margin: 20px 0;
}

@media (min-width: 992px) {
    .filter-separator {
        margin: 17px 0;
    }
}

.filter-note {
    font-size: 11px;
    color: var(--text-tertiary);
    margin-top: 15px;
    font-style: italic;
}

@media (min-width: 992px) {
    .filter-note {
        font-size: 9px;
        margin-top: 13px;
    }
}

/* Контейнер карты */
.map-container {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.map-header-bar {
    background: var(--bg-secondary);
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 768px) {
    .map-header-bar {
        padding: 15px;
    }
}

@media (min-width: 992px) {
    .map-header-bar {
        padding: 17px 26px;
        gap: 13px;
    }
}

.map-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

@media (min-width: 992px) {
    .map-title {
        font-size: 14px;
    }
}

.map-legend {
    display: flex;
    gap: 20px;
    font-size: 13px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .map-legend {
        display: none;
    }
}

@media (min-width: 992px) {
    .map-legend {
        gap: 17px;
        font-size: 11px;
    }
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (min-width: 992px) {
    .legend-item {
        gap: 7px;
    }
}

.legend-dot {
    width: 12px;
    height: 12px;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .legend-dot {
        width: 10px;
        height: 10px;
    }
}

#senergo-map {
    width: 100%;
    height: 600px;
    position: relative;
}

@media (max-width: 768px) {
    #senergo-map {
        height: 400px;
    }
}

@media (min-width: 992px) {
    #senergo-map {
        height: 510px;
    }
}

/* Кастомные маркеры */
.custom-marker {
    width: 20px !important;
    height: 20px !important;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    border: 3px solid white;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .custom-marker {
        width: 17px !important;
        height: 17px !important;
    }
}

.custom-marker:hover {
    transform: scale(1.2);
    z-index: 1000 !important;
}

.marker-residential { background: #3b82f6; }
.marker-industrial { background: #f59e0b; }
.marker-social { background: #10b981; }
.marker-military { background: #ef4444; }
.marker-energy { background: #8b5cf6; }

/* Попапы */
.leaflet-popup-content-wrapper {
    background: var(--bg-card);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
}

.leaflet-popup-content {
    margin: 20px;
    min-width: 280px;
}

@media (min-width: 992px) {
    .leaflet-popup-content {
        margin: 17px;
        min-width: 238px;
    }
}

.leaflet-popup-tip {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-top: none;
    border-right: none;
}

.popup-header {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

@media (min-width: 992px) {
    .popup-header {
        font-size: 14px;
        margin-bottom: 9px;
    }
}

.popup-info {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
}

@media (min-width: 992px) {
    .popup-info {
        font-size: 11px;
        margin-bottom: 7px;
    }
}

.popup-specs {
    font-size: 12px;
    color: var(--text-tertiary);
    padding: 10px;
    background: var(--bg-secondary);
    margin: 10px 0;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .popup-specs {
        font-size: 10px;
        padding: 9px;
        margin: 9px 0;
    }
}

.popup-btn {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary) !important;
    color: white !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 10px;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .popup-btn {
        padding: 7px 14px;
        font-size: 11px;
        margin-top: 9px;
    }
}

.popup-btn:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
}

/* Модальное окно с полным описанием */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    padding: 40px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
    }
}

@media (min-width: 992px) {
    .modal-content {
        padding: 34px;
        max-width: 765px;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    color: var(--text-tertiary);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .modal-close {
        top: 17px;
        right: 17px;
        width: 34px;
        height: 34px;
        font-size: 20px;
    }
}

.modal-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
    padding-right: 50px;
}

@media (max-width: 768px) {
    .modal-title {
        font-size: 22px;
    }
}

@media (min-width: 992px) {
    .modal-title {
        font-size: 24px;
        margin-bottom: 17px;
        padding-right: 43px;
    }
}

.modal-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .modal-meta {
        gap: 17px;
        margin-bottom: 17px;
        padding-bottom: 17px;
    }
}

.modal-meta-item {
    font-size: 14px;
    color: var(--text-secondary);
}

@media (min-width: 992px) {
    .modal-meta-item {
        font-size: 12px;
    }
}

.modal-meta-item strong {
    color: var(--text-primary);
}

.modal-section {
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .modal-section {
        margin-bottom: 26px;
    }
}

.modal-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (min-width: 992px) {
    .modal-section-title {
        font-size: 15px;
        margin-bottom: 13px;
        gap: 9px;
    }
}

.modal-section-title::before {
    content: '';
    width: 3px;
    height: 20px;
    background: var(--primary);
}

@media (min-width: 992px) {
    .modal-section-title::before {
        height: 17px;
    }
}

.modal-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    .modal-text {
        font-size: 13px;
        margin-bottom: 13px;
    }
}

.modal-specs {
    background: var(--bg-secondary);
    padding: 20px;
    margin: 20px 0;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .modal-specs {
        padding: 17px;
        margin: 17px 0;
    }
}

.modal-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (max-width: 576px) {
    .modal-specs-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
    .modal-specs-grid {
        gap: 13px;
    }
}

.modal-spec-item {
    font-size: 14px;
}

@media (min-width: 992px) {
    .modal-spec-item {
        font-size: 12px;
    }
}

.modal-spec-label {
    color: var(--text-tertiary);
    margin-bottom: 5px;
}

@media (min-width: 992px) {
    .modal-spec-label {
        margin-bottom: 4px;
    }
}

.modal-spec-value {
    color: var(--text-primary);
    font-weight: 600;
}

.modal-results {
    background: linear-gradient(135deg, rgba(255, 27, 84, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid var(--primary);
    padding: 25px;
    margin: 30px 0;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .modal-results {
        padding: 21px;
        margin: 26px 0;
    }
}

.modal-results-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    .modal-results-title {
        font-size: 14px;
        margin-bottom: 13px;
    }
}

.modal-results-list {
    list-style: none;
}

.modal-results-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: var(--text-primary);
}

@media (min-width: 992px) {
    .modal-results-list li {
        padding: 7px 0;
        padding-left: 21px;
        font-size: 12px;
    }
}

.modal-results-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* НОВЫЕ стили для улучшенной CTA секции */
.map-cta-section {
    margin-top: 80px;
    padding: 0;
    background: transparent;
    border: none;
}

@media (min-width: 992px) {
    .map-cta-section {
        margin-top: 68px;
    }
}

.map-cta-section .cta-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 27, 84, 0.1);
}

@media (min-width: 992px) {
    .map-cta-section .cta-content {
        padding: 51px 43px;
    }
}

/* Фоновый паттерн */
.map-cta-section .cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 27, 84, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

@media (min-width: 992px) {
    .map-cta-section .cta-content::before {
        width: 255px;
        height: 255px;
    }
}

.map-cta-section .cta-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, 50%);
}

@media (min-width: 992px) {
    .map-cta-section .cta-content::after {
        width: 213px;
        height: 213px;
    }
}

/* Иконка */
.cta-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .cta-icon-wrapper {
        width: 68px;
        height: 68px;
        margin-bottom: 26px;
    }
}

.cta-icon {
    width: 100%;
    height: 100%;
    color: var(--primary);
}

/* Анимация галочки - ИСПРАВЛЕНО */
@keyframes checkmark {
    0% {
        stroke-dasharray: 0 100;
    }
    100% {
        stroke-dasharray: 100 0;
    }
}

.map-cta-section.animated .cta-icon {
    animation: checkmark 0.8s ease-out forwards;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}

/* Заголовки */
.map-cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

@media (min-width: 992px) {
    .map-cta-title {
        font-size: 31px;
        margin-bottom: 17px;
    }
}

.map-cta-title .accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.map-cta-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

@media (min-width: 992px) {
    .map-cta-subtitle {
        font-size: 15px;
        margin-bottom: 34px;
        max-width: 510px;
    }
}

/* Фичи */
.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .cta-features {
        gap: 34px;
        margin-bottom: 34px;
    }
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 1;
}

@media (min-width: 992px) {
    .cta-feature {
        gap: 9px;
    }
}

.cta-feature-icon {
    font-size: 24px;
    filter: grayscale(0%);
}

@media (min-width: 992px) {
    .cta-feature-icon {
        font-size: 20px;
    }
}

.cta-feature-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

@media (min-width: 992px) {
    .cta-feature-text {
        font-size: 12px;
    }
}

/* Кнопки */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .cta-buttons {
        gap: 17px;
        margin-bottom: 34px;
    }
}

.map-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    border-radius: var(--radius);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .map-cta-button {
        gap: 10px;
        padding: 15px 30px;
        font-size: 14px;
    }
}

.map-cta-button.primary {
    background: var(--primary);
    color: white !important;
    box-shadow: 0 10px 30px rgba(255, 27, 84, 0.3);
}

.map-cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.map-cta-button.primary:hover::before {
    left: 100%;
}

.map-cta-button.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 27, 84, 0.4);
}

.map-cta-button.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.map-cta-button.secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 27, 84, 0.3);
}

.button-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

@media (min-width: 992px) {
    .button-arrow {
        width: 17px;
        height: 17px;
    }
}

.map-cta-button:hover .button-arrow {
    transform: translateX(5px);
}

/* Статистика */
.cta-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .cta-stats {
        gap: 26px;
        padding-top: 26px;
    }
}

.cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

@media (min-width: 992px) {
    .stat-number {
        font-size: 24px;
        margin-bottom: 4px;
    }
}

.stat-text {
    font-size: 13px;
    color: var(--text-tertiary);
    text-align: center;
}

@media (min-width: 992px) {
    .stat-text {
        font-size: 11px;
    }
}

.cta-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

@media (min-width: 992px) {
    .cta-stat-divider {
        height: 34px;
    }
}

/* ИСПРАВЛЕНИЕ АНИМАЦИИ - убираем конфликтующие стили */
.map-cta-section.animated .cta-feature {
    opacity: 1 !important;
    animation: none;
}

/* Пульсация кнопки - ИСПРАВЛЕНО */
@keyframes pulse-shadow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 27, 84, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(255, 27, 84, 0.5);
    }
}

.map-cta-button.primary {
    animation: pulse-shadow 2s infinite;
}

/* Адаптивность */
@media (max-width: 768px) {
    .map-cta-section .cta-content {
        padding: 40px 25px;
    }
    
    .map-cta-title {
        font-size: 28px;
    }
    
    .map-cta-subtitle {
        font-size: 16px;
    }
    
    .cta-features {
        gap: 20px;
    }
    
    .cta-feature {
        flex-basis: calc(50% - 10px);
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .map-cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .cta-stats {
        gap: 20px;
    }
    
    .cta-stat-divider {
        display: none;
    }
    
    .cta-stat {
        flex-basis: 100%;
    }
}

/* Скрыть атрибуцию Leaflet */
.leaflet-control-attribution {
    display: none !important;
}

/* Переопределение стилей Leaflet */
.leaflet-control-zoom {
    border: 1px solid var(--border-light);
    background: var(--bg-card);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
}

.leaflet-control-zoom a {
    background: var(--bg-card);
    color: var(--text-tertiary);
    width: 36px;
    height: 36px;
    line-height: 36px;
}

@media (min-width: 992px) {
    .leaflet-control-zoom a {
        width: 31px;
        height: 31px;
        line-height: 31px;
    }
}

.leaflet-control-zoom a:hover {
    background: var(--bg-secondary);
    color: var(--primary);
}

/* ПРОЦЕСС РАБОТЫ */
.process {
    padding: clamp(60px, 10vh, 100px) 0;
    background: transparent;
    position: relative;
}

@media (min-width: 992px) {
    .process {
        padding: 85px 0;
    }
}

.process-timeline {
    position: relative;
    padding: 20px 0;
}

@media (min-width: 992px) {
    .process-timeline {
        padding: 17px 0;
    }
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, var(--border-color) 10%, var(--border-color) 90%, transparent 100%);
    transform: translateX(-50%);
}

@media (max-width: 767px) {
    .process-timeline::before {
        left: 30px;
    }
}

.process-item {
    position: relative;
    margin-bottom: 50px;
}

@media (min-width: 992px) {
    .process-item {
        margin-bottom: 43px;
    }
}

.process-content {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: clamp(20px, 3vw, 30px);
    width: calc(50% - 40px);
    transition: all 0.3s;
    position: relative;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

@media (min-width: 992px) {
    .process-content {
        padding: 26px;
        width: calc(50% - 34px);
    }
}

.process-item:nth-child(odd) .process-content {
    margin-left: auto;
    margin-right: 0;
}

.process-item:nth-child(even) .process-content {
    margin-left: 0;
    margin-right: auto;
}

@media (max-width: 767px) {
    .process-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
}

.process-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 1px;
    background: var(--border-color);
    top: 30px;
}

@media (min-width: 992px) {
    .process-content::before {
        width: 17px;
        top: 26px;
    }
}

.process-item:nth-child(odd) .process-content::before {
    left: -20px;
}

.process-item:nth-child(even) .process-content::before {
    right: -20px;
}

@media (min-width: 992px) {
    .process-item:nth-child(odd) .process-content::before {
        left: -17px;
    }
    
    .process-item:nth-child(even) .process-content::before {
        right: -17px;
    }
}

@media (max-width: 767px) {
    .process-content::before {
        left: -30px !important;
        right: auto !important;
    }
}

.process-content:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 6px var(--bg-solid);
    color: white;
}

@media (min-width: 992px) {
    .process-number {
        width: 34px;
        height: 34px;
        font-size: 15px;
        top: 17px;
    }
}

@media (max-width: 767px) {
    .process-number {
        left: 30px;
        transform: translateX(-50%);
    }
}

.process-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(18px, 2.2vw, 20px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

@media (min-width: 992px) {
    .process-title {
        font-size: 17px;
        margin-bottom: 4px;
    }
}

.process-time {
    color: var(--primary);
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 600;
}

@media (min-width: 992px) {
    .process-time {
        font-size: 11px;
        margin-bottom: 9px;
    }
}

.process-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 992px) {
    .process-text {
        font-size: 12px;
    }
}


.btp-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 27, 84, 0.02) 0%, rgba(102, 126, 234, 0.02) 100%);
    position: relative;
}

@media (min-width: 992px) {
    .btp-section {
        padding: 68px 0;
    }
}

.btp-container {
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    padding: 60px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .btp-container {
        padding: 51px;
    }
}

.btp-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

@media (max-width: 992px) {
    .btp-container {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .btp-container {
        padding: 30px 20px;
    }
}

/* Слайдер БТП */
.btp-slider-section {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    cursor: pointer;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .btp-slider-section {
        margin-bottom: 26px;
    }
}

.btp-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.btp-slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.btp-slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btp-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

.btp-image-contain {
    object-fit: contain !important;
    padding: 20px;
}

@media (min-width: 992px) {
    .btp-image-contain {
        padding: 17px;
    }
}

.btp-container:hover .btp-image {
    transform: scale(1.05);
}

/* Навигация слайдера */
.btp-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 5;
    opacity: 0.6;
    border-radius: 50%;
}

@media (min-width: 992px) {
    .btp-nav {
        width: 27px;
        height: 27px;
    }
}

.btp-nav:hover {
    opacity: 1;
    background: white;
    box-shadow: var(--shadow-md);
}

.btp-nav.prev {
    left: 10px;
}

.btp-nav.next {
    right: 10px;
}

@media (min-width: 992px) {
    .btp-nav.prev {
        left: 9px;
    }
    
    .btp-nav.next {
        right: 9px;
    }
}

.btp-nav svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-secondary);
    fill: none;
    stroke-width: 2;
}

@media (min-width: 992px) {
    .btp-nav svg {
        width: 14px;
        height: 14px;
    }
}

/* Точки навигации для БТП слайдера */
.btp-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

@media (min-width: 992px) {
    .btp-dots {
        gap: 7px;
        bottom: 13px;
    }
}

.btp-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 27, 84, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

@media (min-width: 992px) {
    .btp-dot {
        width: 7px;
        height: 7px;
    }
}

.btp-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.3);
}

.btp-dot:hover {
    background: rgba(255, 27, 84, 0.7);
}

/* Для изображений без contain класса */
.btp-slide .btp-image:not(.btp-image-contain) {
    object-fit: cover;
    padding: 0;
}

/* Контент БТП */
.btp-content {
    padding-left: 40px;
}

@media (max-width: 992px) {
    .btp-content {
        padding-left: 0;
    }
}

@media (min-width: 992px) {
    .btp-content {
        padding-left: 34px;
    }
}

.btp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 27, 84, 0.08);
    border: 1px solid rgba(255, 27, 84, 0.2);
    border-radius: var(--radius);
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .btp-badge {
        gap: 7px;
        padding: 7px 14px;
        margin-bottom: 17px;
    }
}

.btp-badge span:last-child {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 992px) {
    .btp-badge span:last-child {
        font-size: 10px;
    }
}

.btp-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.2;
}

@media (min-width: 992px) {
    .btp-title {
        font-size: 31px;
        margin-bottom: 17px;
    }
}

.btp-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .btp-title {
        font-size: 28px;
    }
}

.btp-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

@media (min-width: 992px) {
    .btp-subtitle {
        font-size: 14px;
        margin-bottom: 34px;
    }
}

.btp-subtitle strong {
    color: var(--primary);
    font-weight: 600;
}

/* Фичи БТП */
.btp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 35px;
}

@media (max-width: 768px) {
    .btp-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (min-width: 992px) {
    .btp-features-grid {
        gap: 26px;
        margin-bottom: 30px;
    }
}

.btp-feature {
    text-align: left;
}

.btp-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 27, 84, 0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    .btp-feature-icon {
        width: 41px;
        height: 41px;
        margin-bottom: 13px;
    }
}

.btp-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    fill: none;
}

@media (min-width: 992px) {
    .btp-feature-icon svg {
        width: 20px;
        height: 20px;
    }
}

.btp-feature h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

@media (min-width: 992px) {
    .btp-feature h4 {
        font-size: 14px;
        margin-bottom: 7px;
    }
}

.btp-feature p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (min-width: 992px) {
    .btp-feature p {
        font-size: 11px;
    }
}

/* Преимущества БТП */
.btp-advantages {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .btp-advantages {
        padding: 17px;
        margin-bottom: 26px;
    }
}

.btp-advantage {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

@media (min-width: 992px) {
    .btp-advantage {
        gap: 10px;
        padding: 7px 0;
        font-size: 12px;
    }
}

.btp-check {
    color: var(--success);
    font-weight: bold;
    font-size: 16px;
}

@media (min-width: 992px) {
    .btp-check {
        font-size: 14px;
    }
}

/* Кнопки БТП */
.btp-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .btp-buttons {
        gap: 13px;
    }
}

.btp-btn {
    padding: 16px 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

@media (min-width: 992px) {
    .btp-btn {
        padding: 14px 26px;
        font-size: 13px;
        gap: 9px;
    }
}

.btp-btn.primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 27, 84, 0.25);
}

.btp-btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 27, 84, 0.35);
}

.btp-btn.primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

@media (min-width: 992px) {
    .btp-btn.primary svg {
        width: 15px;
        height: 15px;
    }
}

.btp-btn.primary:hover svg {
    transform: translateX(3px);
}

.btp-btn.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btp-btn.secondary:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 27, 84, 0.25);
}

@media (max-width: 576px) {
    .btp-buttons {
        flex-direction: column;
    }
    
    .btp-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ОБНОВЛЕННЫЙ ИТП БЛОК - обновлен под новый фон */
.itp-special {
    padding: clamp(60px, 10vh, 100px) 0;
    background: transparent;
    position: relative;
}

@media (min-width: 992px) {
    .itp-special {
        padding: 85px 0;
    }
}

.itp-container {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(255, 27, 84, 0.04) 100%);
    border: 1px solid rgba(102, 126, 234, 0.15);
    padding: clamp(40px, 5vw, 60px);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .itp-container {
        padding: 51px;
    }
}

.itp-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 50%, #764ba2 100%);
}

.itp-header {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 50px);
}

@media (min-width: 992px) {
    .itp-header {
        margin-bottom: 43px;
    }
}

.itp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .itp-badge {
        gap: 7px;
        padding: 7px 17px;
        margin-bottom: 17px;
        font-size: 10px;
    }
}

.itp-badge-icon {
    width: 16px;
    height: 16px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

@media (min-width: 992px) {
    .itp-badge-icon {
        width: 14px;
        height: 14px;
    }
}

.itp-badge-icon::after {
    content: '✓';
    color: white;
    font-size: 10px;
    font-weight: bold;
}

@media (min-width: 992px) {
    .itp-badge-icon::after {
        font-size: 9px;
    }
}

.itp-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.2;
}

@media (min-width: 992px) {
    .itp-title {
        font-size: 32px;
        margin-bottom: 13px;
    }
}

.itp-title span {
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.itp-subtitle {
    font-size: clamp(15px, 1.8vw, 17px);
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .itp-subtitle {
        font-size: 14px;
        max-width: 595px;
    }
}

/* Компактная сетка кейсов */
.itp-features {
    margin-bottom: clamp(40px, 5vw, 50px);
}

@media (min-width: 992px) {
    .itp-features {
        margin-bottom: 43px;
    }
}

.itp-features-title {
    font-size: clamp(18px, 2.2vw, 20px);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

@media (min-width: 992px) {
    .itp-features-title {
        font-size: 17px;
        margin-bottom: 21px;
    }
}

.itp-features-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--secondary);
}

@media (min-width: 992px) {
    .itp-features-title::after {
        bottom: -9px;
        width: 43px;
    }
}

.itp-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .itp-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
    .itp-features-grid {
        gap: 17px;
    }
}

.itp-feature {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 25px;
    position: relative;
    transition: all 0.3s;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .itp-feature {
        padding: 21px;
    }
}

.itp-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(102, 126, 234, 0.3);
}

.itp-feature-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    .itp-feature-header {
        gap: 13px;
        margin-bottom: 13px;
    }
}

.itp-feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(255, 27, 84, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .itp-feature-icon {
        width: 34px;
        height: 34px;
    }
}

.itp-feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--secondary);
    fill: none;
    stroke-width: 2;
}

@media (min-width: 992px) {
    .itp-feature-icon svg {
        width: 17px;
        height: 17px;
    }
}

.itp-feature-content {
    flex: 1;
}

.itp-feature-title {
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

@media (min-width: 992px) {
    .itp-feature-title {
        font-size: 14px;
        margin-bottom: 7px;
    }
}

.itp-feature-text {
    font-size: clamp(13px, 1.5vw, 14px);
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (min-width: 992px) {
    .itp-feature-text {
        font-size: 12px;
    }
}

/* Возможности */
.itp-capabilities {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: clamp(30px, 4vw, 40px);
    margin-bottom: clamp(40px, 5vw, 50px);
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .itp-capabilities {
        padding: 34px;
        margin-bottom: 43px;
    }
}

.itp-capabilities-header {
    text-align: center;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .itp-capabilities-header {
        margin-bottom: 26px;
    }
}

.itp-capabilities-title {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

@media (min-width: 992px) {
    .itp-capabilities-title {
        font-size: 20px;
        margin-bottom: 9px;
    }
}

.itp-capabilities-subtitle {
    font-size: clamp(14px, 1.6vw, 15px);
    color: var(--text-secondary);
}

@media (min-width: 992px) {
    .itp-capabilities-subtitle {
        font-size: 13px;
    }
}

.itp-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 768px) {
    .itp-capabilities-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
    .itp-capabilities-grid {
        gap: 21px;
    }
}

.itp-capability {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

@media (min-width: 992px) {
    .itp-capability {
        gap: 13px;
    }
}

.itp-capability-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--secondary) 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 14px;
    border-radius: 50%;
}

@media (min-width: 992px) {
    .itp-capability-number {
        width: 27px;
        height: 27px;
        font-size: 12px;
    }
}

.itp-capability-content {
    flex: 1;
}

.itp-capability-title {
    font-size: clamp(15px, 1.8vw, 16px);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

@media (min-width: 992px) {
    .itp-capability-title {
        font-size: 14px;
        margin-bottom: 4px;
    }
}

.itp-capability-desc {
    font-size: clamp(13px, 1.5vw, 14px);
    color: var(--text-secondary);
    line-height: 1.4;
}

@media (min-width: 992px) {
    .itp-capability-desc {
        font-size: 12px;
    }
}

/* CTA секция */
.itp-cta {
    text-align: center;
    padding: clamp(35px, 4vw, 45px);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(255, 27, 84, 0.05) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .itp-cta {
        padding: 38px;
    }
}

.itp-cta-icon {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid rgba(102, 126, 234, 0.2);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

@media (min-width: 992px) {
    .itp-cta-icon {
        width: 51px;
        height: 51px;
        margin-bottom: 17px;
    }
}

.itp-cta-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--secondary);
    fill: none;
    stroke-width: 2;
}

@media (min-width: 992px) {
    .itp-cta-icon svg {
        width: 24px;
        height: 24px;
    }
}

.itp-cta-text {
    font-size: clamp(20px, 2.5vw, 24px);
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

@media (min-width: 992px) {
    .itp-cta-text {
        font-size: 20px;
        margin-bottom: 9px;
    }
}

.itp-cta-subtext {
    font-size: clamp(14px, 1.7vw, 16px);
    color: var(--text-secondary);
    margin-bottom: 25px;
}

@media (min-width: 992px) {
    .itp-cta-subtext {
        font-size: 14px;
        margin-bottom: 21px;
    }
}

.itp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: clamp(14px, 1.8vw, 16px) clamp(25px, 3vw, 35px);
    background: linear-gradient(135deg, var(--secondary) 0%, #764ba2 100%);
    color: white;
    border: none;
    font-size: clamp(14px, 1.7vw, 15px);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .itp-btn {
        gap: 9px;
        padding: 14px 30px;
        font-size: 13px;
    }
}

.itp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.itp-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

@media (min-width: 992px) {
    .itp-btn svg {
        width: 15px;
        height: 15px;
    }
}

/* ДОПОЛНИТЕЛЬНЫЕ УСЛУГИ - обновлены под новый фон */
.services {
    padding: clamp(60px, 10vh, 100px) 0;
    background: transparent;
    position: relative;
}

@media (min-width: 992px) {
    .services {
        padding: 85px 0;
    }
}

.services-header {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 50px);
}

@media (min-width: 992px) {
    .services-header {
        margin-bottom: 43px;
    }
}

.services-cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

@media (min-width: 992px) {
    .services-cta-wrapper {
        margin-top: 34px;
    }
}

.services-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .services-cta-btn {
        gap: 7px;
        padding: 10px 21px;
        font-size: 12px;
    }
}

.services-cta-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 27, 84, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
    .services-grid {
        gap: 26px;
    }
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

@media (min-width: 992px) {
    .service-card {
        padding: 30px;
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 27, 84, 0.05), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 27, 84, 0.08) 0%, rgba(255, 27, 84, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 21px;
    }
}

.service-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (min-width: 992px) {
    .service-icon svg {
        width: 30px;
        height: 30px;
    }
}

.service-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    color: white;
}

@media (min-width: 992px) {
    .service-number {
        top: -9px;
        right: -9px;
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
}

.service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(20px, 2.5vw, 22px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    .service-title {
        font-size: 19px;
        margin-bottom: 13px;
    }
}

.service-description {
    color: var(--text-secondary);
    font-size: clamp(14px, 1.6vw, 15px);
    line-height: 1.6;
    flex: 1;
}

@media (min-width: 992px) {
    .service-description {
        font-size: 13px;
    }
}

.service-features {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

@media (min-width: 992px) {
    .service-features {
        margin-top: 17px;
        padding-top: 17px;
    }
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    color: var(--text-secondary);
    font-size: 13px;
}

@media (min-width: 992px) {
    .service-feature {
        gap: 9px;
        padding: 4px 0;
        font-size: 11px;
    }
}

.service-feature-icon {
    width: 16px;
    height: 16px;
    background: rgba(81, 207, 102, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .service-feature-icon {
        width: 14px;
        height: 14px;
    }
}

.service-feature-icon::after {
    content: '✓';
    color: var(--success);
    font-size: 10px;
    font-weight: bold;
}

@media (min-width: 992px) {
    .service-feature-icon::after {
        font-size: 9px;
    }
}

.service-card.highlight {
    background: linear-gradient(135deg, rgba(255, 27, 84, 0.03) 0%, rgba(102, 126, 234, 0.03) 100%);
    border: 2px solid var(--primary);
}

.service-card.highlight .service-icon {
    background: linear-gradient(135deg, rgba(255, 27, 84, 0.15) 0%, rgba(102, 126, 234, 0.15) 100%);
}

.service-card.highlight::after {
    content: 'Популярно';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
    text-transform: uppercase;
}

@media (min-width: 992px) {
    .service-card.highlight::after {
        top: 17px;
        right: -26px;
        padding: 4px 34px;
        font-size: 10px;
    }
}

.faq {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-main) 100%);
    position: relative;
}

@media (min-width: 992px) {
    .faq {
        padding: 51px 0;
    }
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .faq-header {
        margin-bottom: 34px;
    }
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
    .faq-grid {
        gap: 17px;
        margin-bottom: 43px;
    }
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    position: relative;
    background: var(--bg-card);
    transition: all 0.3s;
}

@media (min-width: 992px) {
    .faq-question {
        gap: 13px;
        padding: 17px 21px;
    }
}

.faq-item.active .faq-question {
    background: rgba(255, 27, 84, 0.03);
}

.faq-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.5;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .faq-number {
        font-size: 12px;
    }
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    flex: 1;
    margin: 0;
}

@media (min-width: 992px) {
    .faq-question h3 {
        font-size: 14px;
    }
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

@media (min-width: 992px) {
    .faq-icon {
        width: 20px;
        height: 20px;
    }
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-tertiary);
    fill: none;
    stroke-width: 2;
}

@media (min-width: 992px) {
    .faq-icon svg {
        width: 14px;
        height: 14px;
    }
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-icon svg {
    stroke: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--bg-card);
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.faq-answer p {
    padding: 0 25px;
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

@media (min-width: 992px) {
    .faq-answer p {
        padding: 0 21px;
        margin: 0 0 13px;
        font-size: 12px;
    }
}

.faq-answer p:first-child {
    padding-top: 5px;
}

@media (min-width: 992px) {
    .faq-answer p:first-child {
        padding-top: 4px;
    }
}

.faq-answer p:last-child {
    padding-bottom: 20px;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .faq-answer p:last-child {
        padding-bottom: 17px;
    }
}

.faq-answer strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* CTA блок */
.faq-cta {
    margin-top: 50px;
}

@media (min-width: 992px) {
    .faq-cta {
        margin-top: 43px;
    }
}

.faq-cta-content {
    background: linear-gradient(135deg, rgba(255, 27, 84, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
}

@media (min-width: 992px) {
    .faq-cta-content {
        padding: 34px;
    }
}

.faq-cta-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

@media (min-width: 992px) {
    .faq-cta-content h3 {
        font-size: 24px;
        margin-bottom: 9px;
    }
}

.faq-cta-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

@media (min-width: 992px) {
    .faq-cta-content p {
        font-size: 14px;
        margin-bottom: 21px;
    }
}

.faq-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .faq-cta-buttons {
        gap: 13px;
    }
}

.faq-cta-btn {
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
}

@media (min-width: 992px) {
    .faq-cta-btn {
        padding: 12px 26px;
        font-size: 13px;
        gap: 9px;
    }
}

.faq-cta-btn.primary {
    background: var(--primary);
    color: white;
}

.faq-cta-btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.faq-cta-btn.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.faq-cta-btn.secondary:hover {
    background: var(--primary);
    color: white;
}

.faq-cta-btn svg {
    width: 18px;
    height: 18px;
}

@media (min-width: 992px) {
    .faq-cta-btn svg {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 576px) {
    .faq {
        padding: 40px 0;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-answer p {
        padding-left: 15px;
        padding-right: 15px;
        font-size: 13px;
    }
    
    .faq-cta-content {
        padding: 25px 20px;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
    }
    
    .faq-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ФОРМА ЗАЯВКИ - уже в нужном стиле */
.contact-form-section {
    padding: clamp(60px, 10vh, 100px) 0;
    background: transparent;
    position: relative;
}

@media (min-width: 992px) {
    .contact-form-section {
        padding: 85px 0;
    }
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: clamp(40px, 5vw, 60px);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .form-container {
        padding: clamp(30px, 4vw, 40px);
    }
}

@media (min-width: 992px) {
    .form-container {
        max-width: 680px;
        padding: 51px;
    }
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .form-header {
        margin-bottom: 34px;
    }
}

.form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
}

@media (min-width: 992px) {
    .form-title {
        font-size: 31px;
        margin-bottom: 13px;
    }
}

.form-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (min-width: 992px) {
    .form-subtitle {
        font-size: 15px;
    }
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
    .form-row {
        gap: 17px;
        margin-bottom: 17px;
    }
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}

@media (min-width: 992px) {
    .form-group label {
        margin-bottom: 7px;
        font-size: 12px;
    }
}

.form-group label span {
    color: var(--primary);
}

.form-group label .optional {
    color: var(--text-tertiary);
    font-size: 12px;
    font-weight: 400;
    margin-left: 5px;
}

@media (min-width: 992px) {
    .form-group label .optional {
        font-size: 10px;
        margin-left: 4px;
    }
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    font-size: 15px;
    transition: all 0.3s;
    font-family: inherit;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 13px;
    }
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

@media (min-width: 992px) {
    .form-group textarea {
        min-height: 102px;
    }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--bg-card);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 27, 84, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 30px 0;
}

@media (min-width: 992px) {
    .form-checkbox {
        gap: 10px;
        margin: 26px 0;
    }
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary);
}

@media (min-width: 992px) {
    .form-checkbox input[type="checkbox"] {
        width: 17px;
        height: 17px;
    }
}

.form-checkbox label {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
}

@media (min-width: 992px) {
    .form-checkbox label {
        font-size: 12px;
    }
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.file-upload {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-secondary);
    border: 2px dashed var(--border-color);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .file-upload {
        gap: 13px;
        padding: 13px;
    }
}

.file-upload:hover {
    border-color: var(--primary);
    background: rgba(255, 27, 84, 0.03);
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 27, 84, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .file-upload-icon {
        width: 34px;
        height: 34px;
        font-size: 17px;
    }
}

.file-upload-text {
    flex: 1;
}

.file-upload-title {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 3px;
}

@media (min-width: 992px) {
    .file-upload-title {
        font-size: 14px;
    }
}

.file-upload-subtitle {
    color: var(--text-tertiary);
    font-size: 13px;
}

@media (min-width: 992px) {
    .file-upload-subtitle {
        font-size: 11px;
    }
}

.form-submit-btn {
    width: 100%;
    padding: 18px 40px;
    background: var(--primary);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 30px;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .form-submit-btn {
        padding: 15px 34px;
        font-size: 14px;
        margin-top: 26px;
    }
}

.form-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 27, 84, 0.3);
}

.form-note {
    text-align: center;
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

@media (min-width: 992px) {
    .form-note {
        margin-top: 17px;
        font-size: 12px;
    }
}

.form-note-highlight {
    color: var(--primary);
    font-weight: 600;
}

/* ФУТЕР */
.footer {
    padding: clamp(40px, 6vw, 60px) 0 clamp(20px, 3vw, 30px);
    background: var(--text-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    color: white;
}

@media (min-width: 992px) {
    .footer {
        padding: 51px 0 26px;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (min-width: 992px) {
    .footer-content {
        gap: 34px;
        margin-bottom: 34px;
    }
}

.footer-column h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .footer-column h3 {
        font-size: 15px;
        margin-bottom: 17px;
    }
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
    color: white;
}

@media (min-width: 992px) {
    .footer-logo {
        font-size: 24px;
        margin-bottom: 13px;
    }
}

.footer-logo-go {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .footer-description {
        font-size: 12px;
        margin-bottom: 17px;
    }
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

@media (min-width: 992px) {
    .footer-links li {
        margin-bottom: 10px;
    }
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

@media (min-width: 992px) {
    .footer-links a {
        font-size: 12px;
        gap: 7px;
    }
}

.footer-links a:hover {
    color: var(--primary-light) !important;
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

@media (min-width: 992px) {
    .footer-contact-item {
        gap: 10px;
        margin-bottom: 13px;
        font-size: 12px;
    }
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    background: rgba(255, 27, 84, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-light);
    font-size: 12px;
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .footer-contact-icon {
        width: 17px;
        height: 17px;
        font-size: 10px;
    }
}

.footer-contact-text {
    flex: 1;
}

.footer-contact-text a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-text a:hover {
    color: var(--primary-light) !important;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media (min-width: 992px) {
    .footer-bottom {
        padding-top: 26px;
        gap: 17px;
    }
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

@media (min-width: 992px) {
    .footer-copyright {
        font-size: 11px;
    }
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

@media (min-width: 992px) {
    .footer-bottom-links {
        gap: 26px;
    }
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
    cursor: pointer;
}

@media (min-width: 992px) {
    .footer-bottom-links a {
        font-size: 11px;
    }
}

.footer-bottom-links a:hover {
    color: var(--primary-light) !important;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Popup - обновлен под новый фон */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 20px;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: clamp(30px, 5vw, 50px);
    max-width: 550px;
    width: 100%;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 576px) {
    .popup {
        padding: clamp(25px, 4vw, 35px);
    }
}

@media (min-width: 992px) {
    .popup {
        padding: 43px;
        max-width: 468px;
    }
}

.popup-overlay.active .popup {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: clamp(15px, 2vw, 20px);
    right: clamp(15px, 2vw, 20px);
    width: clamp(35px, 5vw, 40px);
    height: clamp(35px, 5vw, 40px);
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    font-size: clamp(18px, 2.5vw, 20px);
    transition: all 0.3s;
    border-radius: 50%;
}

@media (min-width: 992px) {
    .popup-close {
        top: 17px;
        right: 17px;
        width: 34px;
        height: 34px;
        font-size: 17px;
    }
}

.popup-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.popup h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    padding-right: 40px;
}

@media (min-width: 992px) {
    .popup h3 {
        font-size: 24px;
        margin-bottom: 9px;
        padding-right: 34px;
    }
}

.popup-subtitle {
    color: var(--text-secondary);
    margin-bottom: clamp(20px, 3vw, 30px);
    font-size: clamp(14px, 1.8vw, 15px);
    line-height: 1.5;
}

@media (min-width: 992px) {
    .popup-subtitle {
        margin-bottom: 26px;
        font-size: 13px;
    }
}

.form-submit {
    width: 100%;
    padding: clamp(14px, 2vw, 16px);
    background: var(--primary);
    color: white;
    border: none;
    font-size: clamp(15px, 2vw, 16px);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: clamp(15px, 2vw, 20px);
    border-radius: var(--radius);
}

@media (min-width: 992px) {
    .form-submit {
        padding: 14px;
        font-size: 14px;
        margin-top: 17px;
    }
}

.form-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 27, 84, 0.4);
}

/* Utility classes */
.d-none { display: none !important; }
.d-block { display: block !important; }

@media (min-width: 576px) {
    .d-sm-none { display: none !important; }
    .d-sm-block { display: block !important; }
}

@media (min-width: 768px) {
    .d-md-none { display: none !important; }
    .d-md-block { display: block !important; }
}

@media (min-width: 992px) {
    .d-lg-none { display: none !important; }
    .d-lg-block { display: block !important; }
}

/* Дополнительная адаптация для планшетов */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .btn {
        padding: 16px 30px;
    }
    
    .product-card {
        margin-bottom: 30px;
    }
    
    .advantage-card {
        padding: 35px;
    }
}

/* Адаптация для больших экранов */
@media (min-width: 1920px) {
    .container {
        max-width: 1190px;
    }
    
    h1 {
        font-size: 44px !important;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .section-title {
        font-size: 39px;
    }
}

/* Фикс для iOS Safari */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* Печать */
@media print {
    .header,
    .footer,
    .scroll-indicator,
    .mobile-menu,
    .popup-overlay {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Стили для уведомления об отправке */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 20px 30px;
    background: white;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius);
    z-index: 3000;
    transform: translateX(400px);
    transition: transform 0.3s;
    max-width: 350px;
}

@media (min-width: 992px) {
    .notification {
        top: 85px;
        right: 17px;
        padding: 17px 26px;
        max-width: 298px;
    }
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left: 4px solid var(--success);
}

.notification.error {
    border-left: 4px solid var(--primary);
}

.notification-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

@media (min-width: 992px) {
    .notification-title {
        font-size: 14px;
        margin-bottom: 4px;
    }
}

.notification-message {
    font-size: 14px;
    color: var(--text-secondary);
}

@media (min-width: 992px) {
    .notification-message {
        font-size: 12px;
    }
}

/* Lightbox для слайдеров преимуществ */
.advantage-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    cursor: pointer;
    animation: fadeIn 0.3s;
}

.advantage-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

.advantage-lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50%;
}

@media (min-width: 992px) {
    .advantage-lightbox-close {
        top: 26px;
        right: 26px;
        width: 34px;
        height: 34px;
        font-size: 20px;
    }
}

.advantage-lightbox-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(90deg);
}

.advantage-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50%;
}

@media (min-width: 992px) {
    .advantage-lightbox-nav {
        width: 43px;
        height: 43px;
        font-size: 20px;
    }
}

.advantage-lightbox-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.advantage-lightbox-prev {
    left: 30px;
}

.advantage-lightbox-next {
    right: 30px;
}

@media (min-width: 992px) {
    .advantage-lightbox-prev {
        left: 26px;
    }
    
    .advantage-lightbox-next {
        right: 26px;
    }
}