/* /Components/Pages/Home.razor.rz.scp.css */
/* Updated Hero Section - More Compact */

/*.hero {
    background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
    padding: 3rem 0;*/ /* Reduced from var(--spacing-xl) */
    /*color: white;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(0, 188, 212, 0.2) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(66, 165, 245, 0.2) 0%, transparent 50%);
        pointer-events: none;
    }*/

.hero-content[b-hi1ko117yy] {
    position: relative;
    z-index: 1;
    display: grid;
    /* Text column needs ~490px so both CTA buttons sit on one line.
       The image still runs far wider because it bleeds to the viewport edge. */
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-title[b-hi1ko117yy] {
    font-size: 2.5rem; /* Slightly smaller if needed */
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.hero-subtitle[b-hi1ko117yy] {
    color: rgba(255, 255, 255, 0.95);
    opacity: 1;
    font-size: 1.1rem; /* Slightly smaller */
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-cta[b-hi1ko117yy] {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Remove hero-stats from hero section */
.hero .hero-stats[b-hi1ko117yy] {
    display: none; /* We'll move this outside */
}

.hero-image[b-hi1ko117yy] {
    display: block !important;
    /* Bleed the image toward the right edge of the viewport.
       568px = half the 1136px container content width.
       The extra 48px is a deliberate gutter: 100vw INCLUDES the
       scrollbar (~17px), so bleeding to a full 50vw pushes the image
       under the scrollbar and .hero overflow:hidden clips it. */
    margin-right: calc(-1 * max(0px, 50vw - 616px)) !important;
}

.hero .dashboard-screenshot[b-hi1ko117yy] {
    width: 100% !important;
    max-width: none !important;
    transform: none !important;
}

.hero .screenshot-img[b-hi1ko117yy] {
    width: 100% !important;
    height: auto !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
}

/* New Stats Bar Section - Outside Hero */
.stats-bar[b-hi1ko117yy] {
    background: var(--bg-darker);
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid[b-hi1ko117yy] {
    display: grid;
    /* Was repeat(3, 1fr), which orphaned the 4th stat onto a second
       row and roughly doubled the height of this band. */
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.stats-bar .stat[b-hi1ko117yy] {
    text-align: center;
}

.stats-bar .stat-number[b-hi1ko117yy] {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-blue-light);
    line-height: 1.15;
    margin-bottom: 0.15rem;
}

.stats-bar .stat-label[b-hi1ko117yy] {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.35;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .hero-content[b-hi1ko117yy] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image[b-hi1ko117yy] {
        margin-right: 0 !important;
    }

    .hero[b-hi1ko117yy] {
        padding: 2rem 0;
    }

    .hero-title[b-hi1ko117yy] {
        font-size: 2rem;
    }

    .stats-grid[b-hi1ko117yy] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
/* /Components/Pages/Products.razor.rz.scp.css */
/*@media (max-width: 968px) 
{
    .products-hero h1 {
        font-size: 2.5rem
    }

    .products-hero p {
        font-size: 1.25rem
    }

    .core-product-grid {
        grid-template-columns: 1fr
    }

    .benefits-grid {
        grid-template-columns: 1fr
    }

    .section-title {
        font-size: 2rem
    }

    .features-grid {
        grid-template-columns: 1fr
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center
    }
}*/
