.section {
    padding: 5rem 0;
}

.services {
    background: #070a18;
    color: #ffffff;
}

.services .container {
    display: grid;
    gap: 2rem;
}

.services h2,
.featured-products-home h2 {
    color: #ffffff;
}

.service-grid,
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.service-card,
.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2rem;
    color: #e2e8f0;
}

.service-card h3,
.product-card h3 {
    margin-bottom: 1rem;
}

.product-card {
    position: relative;
    min-height: 280px;
}

.product-card img {
    width: 100%;
    border-radius: 1.25rem;
    margin-bottom: 1rem;
    display: block;
}

.product-card p {
    margin-bottom: 1.5rem;
}

.product-card .btn-link {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: transparent;
}

.featured-products-home {
    background: linear-gradient(180deg, #050816 0%, #0f172a 100%);
}

.featured-products-home .container {
    display: grid;
    gap: 2rem;
}

@media (max-width: 980px) {
    .service-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }
}
