/* Modern Features Hero */
.features-hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* .features-hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.08) 0%, rgba(255,255,255,0) 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    z-index: 0;
} */

.features-hero .container {
    position: relative;
    z-index: 1;
}

/* Modern Bento Grid System */
.bento-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    border: 1px solid #eef2f6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(10, 102, 255, 0.1);
    border-color: #dce7ff;
}

.bento-card.dark-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    border: none;
}

.bento-card.dark-card p {
    color: #94a3b8;
}

.bento-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    transition: transform 0.3s ease;
}

.bento-card:hover .bento-icon {
    transform: scale(1.1);
}

.bento-card.dark-card .bento-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #38bdf8;
}

.bento-card h3 {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.bento-card p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

@media (max-width: 767.98px) {
    .features-hero { padding: 72px 0 52px; }
    .features-hero::after { width: 320px; height: 320px; top: -120px; right: -160px; }
    .bento-card { padding: 24px 20px; border-radius: 18px; }
    .bento-icon { width: 52px; height: 52px; font-size: 1.35rem; margin-bottom: 16px; }
    .bento-card h3 { font-size: 1.2rem; }
    .bento-card p { font-size: 0.96rem; }
}
