/* Modern Products Showcase */
.products-showcase-section {
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #439EDC;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.section-label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background: #439EDC;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

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

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e2e8f0;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ai-badge {
    background: rgba(67, 158, 220, 0.15);
    color: #439EDC;
    backdrop-filter: blur(5px);
}

.hr-badge {
    background: rgba(67, 158, 220, 0.15);
    color: #439EDC;
    backdrop-filter: blur(5px);
}

.product-media {
    position: relative;
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
}

.product-logo {
    height: 60px;
    width: auto;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.product-screenshot {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateX(10deg);
}

.product-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

.product-card:hover .product-screenshot {
    transform: perspective(1000px) rotateX(5deg) translateY(-5px);
}

.product-content {
    padding: 30px;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
}

.product-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.product-tagline {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.5;
}

.product-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* background: rgba(67, 158, 220, 0.1); */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #439EDC;
    font-size: 16px;
}

.hr-badge ~ .product-content .feature-icon {
    /* background: rgba(67, 158, 220, 0.1); */
    color: #439EDC;
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

.product-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.btn-primary {
    background: #439EDC;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #3a8bc7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 158, 220, 0.3);
}

.btn-primary i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(3px);
}

.product-stats {
    display: flex;
    gap: 15px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-top: 2px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-media {
        padding: 30px;
    }
    
    .product-content {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .product-cta {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .product-stats {
        width: 100%;
        justify-content: space-between;
    }
}