/**
 * Products Landing Page Styles
 */

/* Hero */
.products-hero {
    background: linear-gradient(135deg, var(--bs-primary-dark, #001a3d) 0%, var(--bs-primary, #002b5c) 100%);
    padding: 5rem 0 3.5rem;
    color: #f1f5f9;
}

.products-hero h1 {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
}

.products-hero .lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 580px;
}

/* Products Grid */
.products-grid {
    padding: 3.5rem 0 4rem;
    background: #f8fafc;
}

/* Product Card */
.product-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.875rem;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    border-color: var(--bs-primary, #002b5c);
    box-shadow: 0 8px 24px rgba(0,43,92,0.08);
}

.product-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.product-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--bs-primary, #002b5c), #003d80);
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.15rem;
    line-height: 1.3;
}

.product-tagline {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0;
    max-width: none;
}

.product-badge {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.product-description {
    font-size: 0.925rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    max-width: none;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.product-features li {
    font-size: 0.875rem;
    color: #334155;
    padding: 0.35rem 0;
    display: flex;
    align-items: center;
}

.product-actions {
    display: flex;
    gap: 0.6rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.product-actions .btn {
    font-size: 0.85rem;
    padding: 0.5rem 1.1rem;
}

/* CTA */
.products-cta {
    background: var(--bs-primary, #002b5c);
    color: #fff;
    padding: 3.5rem 0;
}

.products-cta h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.products-cta p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin: 0 auto 1.75rem;
    max-width: none;
}

/* Responsive */
@media (max-width: 768px) {
    .products-hero { padding: 3.5rem 0 2.5rem; }
    .products-grid { padding: 2.5rem 0 3rem; }
    .product-card { padding: 1.5rem; }
    .product-card-header { flex-wrap: wrap; }
    .products-cta { padding: 2.5rem 0; }
}
