/* Bento Grid Styles */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.bento-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 69, 69, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bento-content h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    font-weight: 700;
    line-height: 1.2;
}

.bento-content h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.bento-subtitle {
    color: #FF4545;
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: block;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bento-features {
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.bento-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.bento-features li:before {
    content: '→';
    color: #FF4545;
    margin-right: 10px;
    font-weight: bold;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.feature-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
    color: #FF4545;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 69, 69, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.bento-item:hover .feature-icon {
    background: rgba(255, 69, 69, 0.2);
    transform: scale(1.1);
}

.difference-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FF4545;
    line-height: 1;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.difference-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: #FF4545;
    transition: all 0.3s ease;
}

.bento-item:hover .difference-icon {
    background: rgba(255, 69, 69, 0.1);
    transform: translateY(-3px);
}

.difference-description {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.difference-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #fff;
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.bento-item:hover .difference-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 69, 69, 0.3);
}

.difference-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 69, 69, 0.1);
    color: #FF4545;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.bento-item:hover .difference-tag {
    background: rgba(255, 69, 69, 0.2);
    transform: translateX(3px);
}

.bento-stats {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 1000px;
    }
    
    .bento-item[style*="grid-column: 1 / 7"],
    .bento-item[style*="grid-column: 7 / 13"],
    .bento-item[style*="grid-column: 1 / -1"] {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .bento-item {
        padding: 30px;
    }
    
    .bento-content h2 {
        font-size: 1.8rem;
    }
    
    .bento-stats {
        flex-direction: column;
        gap: 15px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bento-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.bento-item:nth-child(1) { animation-delay: 0.1s; }
.bento-item:nth-child(2) { animation-delay: 0.2s; }
.bento-item:nth-child(3) { animation-delay: 0.3s; }
.bento-item:nth-child(4) { animation-delay: 0.4s; }
.bento-item:nth-child(5) { animation-delay: 0.5s; }
