/* --- Hero Section --- */
.hero {
    position: relative;
    background-image: url('../images/hero/hero.jpg.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(11, 17, 32, 0.4), rgba(11, 17, 32, 0.4)), url('../images/hero/hero.jpg.png');
    background-size: cover;
    background-position: center;
}

.hero-content h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    font-size: 1.25rem;
    line-height: 1.6;
}