/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    padding: 6rem 0 5rem;
    background: linear-gradient(160deg, var(--gov-navy) 0%, var(--gov-navy-light) 100%);
    overflow: hidden;
}

/* Subtle pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(200,169,81,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(200,169,81,0.15);
    color: var(--gov-gold);
    border: 1px solid rgba(200,169,81,0.3);
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: var(--gov-white);
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Stats panel on the right */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200,169,81,0.2);
    border-left: 4px solid var(--gov-gold);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(4px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gov-gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 500;
}
