/*
===============================================
B2B DUKEN - ИСПРАВЛЕНИЕ ЧИТАЕМОСТИ
Финальные стили для улучшения UX
===============================================
*/

/* === HERO СЕКЦИЯ - ЗАГОЛОВОК === */
.hero-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: clamp(2.2rem, 4vw, 3.5rem) !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.015em !important;
    color: #0F2441 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08) !important;
    margin-bottom: 1.5rem !important;
}

/* === КНОПКИ HERO === */
.btn-hero-primary {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    padding: 1.25rem 2.5rem !important;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 50%, #2F5F8F 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    letter-spacing: 0.8px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4) !important;
    min-width: 280px !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.5) !important;
    background: linear-gradient(135deg, #357ABD 0%, #2F5F8F 100%) !important;
    color: white !important;
}

.btn-hero-secondary {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    padding: 1.25rem 2.5rem !important;
    background: white !important;
    border: 3px solid #4A90E2 !important;
    border-radius: 50px !important;
    color: #4A90E2 !important;
    text-decoration: none !important;
    letter-spacing: 0.8px !important;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.25) !important;
    min-width: 280px !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-hero-secondary:hover {
    background: #4A90E2 !important;
    color: white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.4) !important;
}

/* === СЕКЦИЯ ПОПУЛЯРНЫЕ ПРОДУКТЫ === */
.products-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #1B365D !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
}

.products-subtitle {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    color: #4b5563 !important;
    text-align: center !important;
    margin-bottom: 0 !important;
}

.btn-view-all {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    padding: 1.25rem 2.5rem !important;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 50%, #2F5F8F 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    letter-spacing: 0.8px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4) !important;
    min-width: 300px !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-view-all:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.5) !important;
    background: linear-gradient(135deg, #357ABD 0%, #2F5F8F 100%) !important;
    color: white !important;
}

/* === СТАТИСТИЧЕСКАЯ СЕКЦИЯ === */
.stats-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #1B365D !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
}

/* === ИКОНКИ В РЕШЕНИЯХ === */
.solution-icon {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15) 0%, rgba(47, 95, 143, 0.15) 100%) !important;
    border: 2px solid rgba(74, 144, 226, 0.3) !important;
}

.solution-icon i {
    color: #4A90E2 !important;
    font-size: 2.2rem !important;
}

.solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #4A90E2 0%, #2F5F8F 100%) !important;
    border-color: #4A90E2 !important;
}

.solution-card:hover .solution-icon i {
    color: white !important;
}

/* === КАРТОЧКИ ПРОДУКТОВ === */
.product-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #1B365D !important;
    line-height: 1.4 !important;
}

.price-amount {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #4A90E2 0%, #2F5F8F 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.btn-add-cart {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.5px !important;
    background: linear-gradient(135deg, #4A90E2 0%, #2F5F8F 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3) !important;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, #357ABD 0%, #1B365D 100%) !important;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4) !important;
}

.btn-quote {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.5px !important;
    background: white !important;
    color: #4A90E2 !important;
    border: 2px solid #4A90E2 !important;
}

.btn-quote:hover {
    background: #4A90E2 !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3) !important;
}

/* === МОБИЛЬНАЯ АДАПТИВНОСТЬ === */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100% !important;
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }
    
    .btn-view-all {
        width: 100% !important;
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }
    
    .products-title,
    .stats-title {
        font-size: 2rem !important;
    }
}

/* === ФИНАЛЬНЫЕ ПЕРЕОПРЕДЕЛЕНИЯ === */
.text-primary {
    color: #4A90E2 !important;
}

.bg-primary {
    background: linear-gradient(135deg, #4A90E2 0%, #2F5F8F 100%) !important;
}

.btn-primary {
    background: linear-gradient(135deg, #4A90E2 0%, #2F5F8F 100%) !important;
    border-color: #4A90E2 !important;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3) !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #357ABD 0%, #1B365D 100%) !important;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4) !important;
}

/* Конец файла */ 