.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('../assets/hero-banner.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding-top: 80px;
}

/* White fade overlay for readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.9) 30%,
            rgba(255, 255, 255, 0.6) 60%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

.hero-content {
    max-width: 650px;
}

.hero-tagline {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.1;
}

.hero-title span {
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px var(--primary-color);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.4;
}

.hero-info {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.info-icon {
    font-size: 1.5rem;
}

.info-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .hero::before {
        width: 100%;
        background: linear-gradient(to bottom,
                rgba(255, 255, 255, 0.95) 0%,
                rgba(255, 255, 255, 0.8) 50%,
                rgba(255, 255, 255, 0.6) 100%);
    }

    .hero {
        background-attachment: initial;
        text-align: center;
    }

    .hero-container {
        padding: 100px 5% 50px;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-info,
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
}