.products-hero {
    padding: 100px 0;
    text-align: center;
    background: var(--surface);
}

.page-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(30, 79, 154, .08);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.products-hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

.products-hero p {
    max-width: 700px;
    margin: auto;
    color: var(--text-secondary);
}

.products-section {
    padding: 100px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: .3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.product-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.catalog-section {
    padding: 100px 0;
}

.catalog-box {
    text-align: center;
    background: linear-gradient( 135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 70px;
    border-radius: 24px;
}

.catalog-box h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.catalog-box p {
    margin-bottom: 30px;
}

.catalog-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media(max-width:991px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .products-hero h1 {
        font-size: 42px;
    }
    .catalog-box {
        padding: 40px 25px;
    }
    .catalog-box h2 {
        font-size: 32px;
    }
}