/* Контейнер секции */
.pricing-section {
    padding: 100px 20px;
    background: #000;
    color: #fff;
    text-align: center;
}

.modern-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Типовая карточка */
.product-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 25px;
    display: flex;
    flex-direction: column; /* Вертикальный стек */
    justify-content: space-between; /* Расталкивает контент и кнопку */
    transition: all 0.3s ease;
    height: 100%; /* Заставляет все карточки в ряду быть одной высоты */
}

.product-card:hover {
    border-color: #D4FC1E;
    background: #111;
    transform: translateY(-5px);
}

/* Область изображения */
.product-image {
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.product-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Текстовые блоки с фиксацией высоты для ровности */
.product-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    min-height: 48px; /* Резервирует место под 2 строки */
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    min-height: 42px; /* Резервирует место под текст описания */
    line-height: 1.4;
}

.product-price {
    font-size: 26px;
    font-weight: 800;
    color: #D4FC1E;
    margin-bottom: 20px;
    margin-top: auto; /* Прижимает цену и кнопку к низу карточки */
}

/* Кнопка */
.btn-order {
    display: block;
    background: #D4FC1E;
    color: #000;
    text-decoration: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    transition: 0.3s;
}

.btn-order:hover {
    box-shadow: 0 0 20px rgba(212, 252, 30, 0.4);
}
/* Основной контейнер заголовков */
.section-header {
    margin-bottom: 60px;
    text-align: center;
}

/* Стилизация основного заголовка "Разная Техника" */
.section-category-title {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px; /* Сближаем буквы для "плотного" вида */
    margin-bottom: 15px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* Эффект градиентного текста */
    position: relative;
    display: inline-block;
}

/* Декоративная линия под заголовком */
.section-category-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 450px;
    height: 4px;
    background: #D4FC1E; /* Твой фирменный лаймовый цвет */
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(212, 252, 30, 0.6); /* Неоновое свечение линии */
}

/* Стилизация подзаголовка */
.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5); /* Приглушенный белый */
    font-weight: 400;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .section-category-title {
        font-size: 32px;
        letter-spacing: 0;
    }
    
    .section-subtitle {
        font-size: 15px;
        padding: 0 20px;
    }
}
/* МОБИЛЬНАЯ ВЕРСИЯ: 2 колонки */
@media (max-width: 768px) {
    .modern-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-card {
        padding: 15px;
    }
    
    .product-image {
        height: 130px;
    }

    .product-description {
        display: none; /* Скрываем на мобильных для компактности */
    }

    .product-name {
        font-size: 14px;
        min-height: 36px;
    }

    .product-price {
        font-size: 18px;
    }
}