/* Hero Visualization Styles */
.hero-visual-container {
    width: 100%;
    max-width: 900px;
    margin: 2rem auto 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-visual-container img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.1));
    border-radius: 12px;
}

/* Product Showcase Styles - Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(250px, auto));
    gap: 24px;
    margin-top: 3rem;
}

.bento-item {
    background: white;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid #F3F4F6;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #E5E7EB;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

.bento-wide {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}

.bento-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
}

.bg-blue-light {
    background: #DBEAFE;
    color: #3B82F6;
}

.bg-green-light {
    background: #D1FAE5;
    color: #10B981;
}

.bg-purple-light {
    background: #EDE9FE;
    color: #8B5CF6;
}

.bento-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
}

.bento-desc {
    font-size: 0.95rem;
    color: #6B7280;
    line-height: 1.5;
}

/* Cockpit Visual in Bento */
.cockpit-visual {
    flex: 1;
    background: white;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    margin-top: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.cockpit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cockpit-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.cockpit-stat-card {
    background: #F9FAFB;
    padding: 10px;
    border-radius: 8px;
}

.cockpit-graph {
    flex: 1;
    background: #F3F4F6;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.cockpit-graph::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    clip-path: polygon(0 100%, 0 80%, 20% 60%, 40% 70%, 60% 40%, 80% 50%, 100% 20%, 100% 100%);
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero-visual-container {
        height: 300px;
        transform: scale(0.8);
        margin-top: 1rem;
    }

    .floating-card {
        display: none;
        /* Simplify for mobile */
    }

    .bento-grid {
        display: flex;
        flex-direction: column;
    }

    .bento-large,
    .bento-wide,
    .bento-tall {
        grid-column: auto;
        grid-row: auto;
    }
}