/* Features Grid Section Styles */
.features-grid-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 1.5rem 10rem; /* Space below headline, large bottom space */
    background: transparent;
}

.features-grid-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bento-row {
    display: grid;
    gap: 24px;
}

.bento-row-top {
    grid-template-columns: 1.6fr 1fr;
}

.bento-row-bottom {
    grid-template-columns: repeat(3, 1fr);
}

.bento-card {
    background: rgba(255, 255, 255, 0.03);
    border: none !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 40px;
    padding: 3rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bento-card:active {
    background: rgba(255, 255, 255, 0.03);
    transform: scale(0.98);
    transition: all 0.1s;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-family: 'Public Sans', sans-serif;
}

.card-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
    font-family: 'Public Sans', sans-serif;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .bento-row-top, .bento-row-bottom {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .bento-row-top, .bento-row-bottom {
        grid-template-columns: 1fr;
    }
    
    .bento-card {
        min-height: 300px;
    }
}
