/* ==========================================================
   Block: Page Hero — frontend styles
   ========================================================== */

.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 60%, var(--blue-dark) 100%);
    padding: 56px 0 52px !important;
    position: relative;
    overflow: hidden;
}

.page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.page-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 12px;
}


.page-hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    line-height: 1.6;
}

/* Stats */
.page-hero-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-stat-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 18px 24px;
}

.hero-stat-box .num {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.hero-stat-box .lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 36px 0 32px;
    }

    .page-hero-title {
        font-size: 30px;
    }

    .page-hero-stats {
        display: none;
    }
}

@media (min-width: 768px) {
    .page-hero-title {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .page-hero-title {
        font-size: 42px;
    }
}
