.hero {
    position: relative;
    background: var(--hero-bg, none) center/cover no-repeat, linear-gradient(135deg, #0B4EA2, #072F63);
    color: #fff;
    padding: 72px 0 56px;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 78, 162, 0.85), rgba(7, 47, 99, 0.9));
}

.hero__inner {
    position: relative;
    z-index: 1;
}

.hero__content {
    max-width: 720px;
}

.hero__eyebrow {
    color: var(--color-accent);
}

.hero__eyebrow::after {
    background: var(--color-accent);
}

.hero__heading {
    color: #fff;
    font-size: clamp(36px, 5.5vw, 58px);
    font-weight: 800;
    margin: 20px 0 20px;
}

.hero__heading .highlight {
    color: var(--color-accent);
}

.hero__subtext {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    max-width: 560px;
    margin-bottom: 32px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero__secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.hero__secondary-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #fff;
    color: #fff;
}

.hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    font-weight: 500;
}

.hero__features .material-symbols-rounded {
    font-size: 18px;
    color: var(--color-accent);
}

.hero__stat {
    position: absolute;
    right: 24px;
    bottom: 32px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-md);
    padding: 16px 22px;
}

.hero__stat-value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 26px;
    color: #fff;
    white-space: nowrap;
}

.hero__stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.hero__stat-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 26px;
}

.hero__stat-bars span {
    width: 6px;
    border-radius: 2px;
    background: #8EC5FF;
}

.hero__stat-bars span:nth-child(1) { height: 40%; }
.hero__stat-bars span:nth-child(2) { height: 60%; }
.hero__stat-bars span:nth-child(3) { height: 80%; }
.hero__stat-bars span:nth-child(4) { height: 100%; background: var(--color-accent); }

@media (max-width: 640px) {
    .hero {
        padding: 40px 0 72px;
    }

    .hero__stat {
        position: static;
        margin: 24px auto 0;
        width: fit-content;
        gap: 10px;
        padding: 10px 14px;
    }

    .hero__stat-value {
        font-size: 18px;
    }

    .hero__stat-divider {
        height: 22px;
    }

    .hero__stat-bars {
        height: 18px;
        gap: 3px;
    }

    .hero__stat-bars span {
        width: 4px;
    }
}
