@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.product-section--why-new {
    background-color: #f8fafc !important;
    padding: 20px 0 !important;
    font-family: 'Inter', sans-serif !important;
    position: relative;
    overflow: hidden;
}

/* Ambient SaaS Background Blobs */
.product-section--why-new::before,
.product-section--why-new::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.4;
}

.product-section--why-new::before {
    background: rgba(37, 99, 235, 0.1);
    top: -100px;
    right: -100px;
}

.product-section--why-new::after {
    background: rgba(205, 8, 8, 0.05);
    bottom: -100px;
    left: -100px;
}

.product-why-header {
    position: relative;
    z-index: 1;
    text-align: left !important;
    margin-bottom: 48px !important;
}

.product-why-grid {
    position: relative;
    z-index: 1;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
}

.product-why-card {
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 20px !important;
    padding: 32px !important;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex;
    flex-direction: column;
}

.product-why-card:hover {
    transform: translateY(-4px) !important;
    background: rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(37, 99, 235, 0.3) !important;
    box-shadow: 0 10px 30px -4px rgba(15, 23, 42, 0.1) !important;
}

.product-why-card h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
    font-family: 'Inter', sans-serif !important;
}

.product-why-card p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #64748b !important;
    margin: 0 !important;
    font-family: 'Inter', sans-serif !important;
}

@media (max-width: 1200px) {
    .product-why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .product-why-grid {
        grid-template-columns: 1fr !important;
    }

    .product-section--why-new {
        padding: 60px 0 !important;
    }
}

.product-why-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 60px -15px rgba(15, 23, 42, 0.08);
}

.product-why-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.4;
}

.product-why-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .product-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-why-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .product-why-grid {
        grid-template-columns: 1fr;
    }

    .product-section--why-new {
        padding: 60px 0;
    }

    .product-why-header {
        margin-bottom: 40px;
    }

    .product-why-header h2 {
        font-size: 32px;
    }

    .product-why-card {
        padding: 32px;
    }
}