.home-hero {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
}

.home-hero-img {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: 20% 50%;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    /* Gradient: dark bottom-left fade, lighter top-right */
    background: linear-gradient(to top right, rgba(0,0,0,0.78) 0%, rgba(0,10,40,0.45) 55%, rgba(0,0,0,0.15) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(1rem, 3vw, 2rem);
    padding-top: 80px; /* clear fixed navbar */
}

.home-hero-overlay .badge-pill {
    display: inline-block;
    background: var(--gradient-blue);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 6px 22px;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 20px var(--blue-glow);
}

.home-hero-overlay h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1rem;
    margin-top: 0;
    letter-spacing: -1px;
}

.home-hero-overlay h1 span {
    background: var(--gradient-energetic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-hero-overlay h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.home-hero-overlay p {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    max-width: 660px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

/* Stack CTA buttons vertically on small screens */
@media (max-width: 575px) {
    .home-hero-overlay .d-flex {
        flex-direction: column !important;
        align-items: center;
    }
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 5px 18px;
    margin-bottom: 1rem;
    color: #fff;
}

.section-eyebrow.blue { background: var(--gradient-blue); box-shadow: 0 4px 16px var(--blue-glow); }
.section-eyebrow.orange { background: var(--gradient-orange); box-shadow: 0 4px 16px var(--orange-glow); }
.section-eyebrow.green { background: var(--gradient-green); box-shadow: 0 4px 16px var(--green-glow); }
