.products-hero {
    min-height: 55vh;
    background: linear-gradient(160deg, #0F2B5B 0%, var(--b2e-primary) 40%, #1340A5 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 80px;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -15%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.products-hero::after {
    content: '';
    position: absolute;
    bottom: -25%;
    right: -10%;
    width: 55%;
    height: 55%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.products-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.products-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--b2e-white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.products-hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
}

/* Filter Tabs */
.products-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.products-filter-btn {
    background: var(--b2e-white);
    border: 2px solid var(--b2e-gray-200);
    color: var(--b2e-gray-600);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Heebo', sans-serif;
    cursor: pointer;
    transition: var(--b2e-transition);
}

.products-filter-btn:hover {
    border-color: var(--b2e-primary);
    color: var(--b2e-primary);
}

.products-filter-btn.active {
    background: var(--b2e-primary);
    border-color: var(--b2e-primary);
    color: var(--b2e-white);
    box-shadow: 0 4px 14px rgba(26, 86, 219, 0.35);
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Product Card */
.product-card {
    background: var(--b2e-white);
    border: 1px solid var(--b2e-gray-200);
    border-radius: var(--b2e-radius-lg);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 4px 24px rgba(0, 0, 0, 0.04);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0; left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--b2e-primary), var(--b2e-accent));
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    border-color: transparent;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 16px 48px rgba(26, 86, 219, 0.12);
    transform: translateY(-8px);
}

.product-card:hover::before {
    opacity: 1;
}

/* Card Image Area */
.product-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--b2e-gray-50), var(--b2e-gray-100));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-image .product-placeholder-icon {
    font-size: 3rem;
    color: var(--b2e-gray-300);
}

/* Card Badge / Category */
.product-category-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--b2e-primary);
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: var(--b2e-shadow-sm);
}

/* Card Body */
.product-card-body {
    padding: 28px 28px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--b2e-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
    transition: var(--b2e-transition);
}

.product-card:hover .product-card-icon {
    transform: scale(1.1);
}

.product-card-body h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
    transition: var(--b2e-transition);
}

.product-card:hover .product-card-body h3 {
    color: var(--b2e-primary);
}

.product-card-body .product-desc {
    font-size: 0.95rem;
    color: var(--b2e-gray-500);
    line-height: 1.8;
    margin-bottom: 20px;
    flex: 1;
}

/* Feature Tags */
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.product-tag {
    background: var(--b2e-gray-50);
    color: var(--b2e-gray-600);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--b2e-gray-200);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.product-tag i {
    font-size: 0.7rem;
    color: var(--b2e-primary);
}

/* Card Footer */
.product-card-footer {
    padding: 0 28px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--b2e-primary), var(--b2e-primary-dark));
    color: var(--b2e-white) !important;
    border: none;
    padding: 11px 24px;
    border-radius: var(--b2e-radius-sm);
    font-size: 0.92rem;
    font-weight: 600;
    font-family: 'Heebo', sans-serif;
    cursor: pointer;
    transition: var(--b2e-transition);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(26, 86, 219, 0.25);
}

.product-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.4);
}

.product-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--b2e-primary-light);
    color: var(--b2e-primary) !important;
    border: 2px solid var(--b2e-primary);
    padding: 9px 22px;
    border-radius: var(--b2e-radius-sm);
    font-size: 0.92rem;
    font-weight: 600;
    font-family: 'Heebo', sans-serif;
    cursor: pointer;
    transition: var(--b2e-transition);
    text-decoration: none;
}

.product-btn-secondary:hover {
    background: var(--b2e-primary);
    color: var(--b2e-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(26, 86, 219, 0.3);
}

/* Stats Row */
.products-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 60px;
    padding-top: 48px;
    border-top: 1px solid var(--b2e-gray-200);
}

.products-stat-item {
    text-align: center;
}

.products-stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--b2e-primary);
    line-height: 1.2;
}

.products-stat-label {
    font-size: 0.9rem;
    color: var(--b2e-gray-500);
    margin-top: 4px;
}

/* CTA Section */
.products-cta {
    background: linear-gradient(160deg, #0F2B5B 0%, var(--b2e-primary) 50%, #1340A5 100%);
    color: var(--b2e-white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.products-cta::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.products-cta h2 {
    color: var(--b2e-white);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.products-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

/* Card enter animation */
.product-card-enter {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-enter.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .products-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .products-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    .products-hero h1 {
        font-size: 1.8rem;
    }
    .products-stats {
        gap: 28px;
    }
    .product-card-footer {
        flex-wrap: wrap;
    }
}