.hero-header-v2 {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 20px 40px 0; 
    will-change: transform;
}
.hero-header-v2__inner {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-header-v2__title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 100px;
    font-weight: 700;
    line-height: 0.80;
    letter-spacing: -2px;
    text-align: center;
    margin: 0 auto 150px; 
    max-width: 1440px;
    position: relative;
    z-index: 5; 
    padding-bottom: 20px; 
    background: linear-gradient(
        180deg,
        #FFFFFF 0%,
        #FFFFFF 25%,
        rgba(255, 255, 255, 0.75) 50%,
        rgba(255, 255, 255, 0.35) 70%,
        rgba(255, 255, 255, 0.15) 90%,
        rgba(255, 255, 255, 0.05) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}
.hero-header-v2__image-wrapper {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: -400px; 
    overflow: hidden;
    z-index: 20; 
    will-change: transform;
    transform: translate3d(0, 0, 0);
}
.hero-header-v2__image {
    width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: cover;
    object-position: center 65%;
    display: block;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.hero-header-v2__subtitle {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    margin: -160px auto 40px; 
    max-width: 800px;
    position: relative;
    z-index: 4; 
    will-change: transform;
    transform: translate3d(0, 0, 0);
}
@media (max-width: 1024px) {
    .hero-header-v2 {
        padding: 15px 32px 0;
    }
    .hero-header-v2__title {
        font-size: 70px;
        line-height: 0.85;
        margin-bottom: 120px;
        letter-spacing: -1.5px;
    }
    .hero-header-v2__subtitle {
        font-size: 20px;
        margin-top: -120px;
        margin-bottom: 30px;
    }
    .hero-header-v2__image-wrapper {
        margin-top: -200px;
    }
    .hero-header-v2__image {
        min-height: 450px;
    }
}
@media (max-width: 768px) {
    .hero-header-v2 {
        padding: 10px 20px 0;
    }
    .hero-header-v2__title {
        font-size: 42px;
        line-height: 0.9;
        margin-bottom: 120px;
        letter-spacing: -0.8px;
        max-width: 100%;
        padding-bottom: 15px; 
    }
    .hero-header-v2__subtitle {
        font-size: 16px;
        margin-top: -100px;
        margin-bottom: 20px;
        max-width: 100%;
        padding: 0 10px;
    }
    .hero-header-v2__image-wrapper {
        margin-top: -200px;
        width: 100vw;
    }
    .hero-header-v2__image {
        min-height: 400px;
        object-position: center 60%;
    }
}
@media (max-width: 480px) {
    .hero-header-v2 {
        padding: 10px 16px 0;
    }
    .hero-header-v2__title {
        font-size: 32px;
        line-height: 0.95;
        margin-bottom: 100px;
        letter-spacing: -0.6px;
        padding-bottom: 12px; 
    }
    .hero-header-v2__subtitle {
        font-size: 14px;
        margin-top: -85px;
        margin-bottom: 16px;
        padding: 0 5px;
    }
    .hero-header-v2__image-wrapper {
        margin-top: -180px;
    }
    .hero-header-v2__image {
        min-height: 350px;
        object-position: center 55%;
    }
}

/* Full width alignment */
.alignfull.hero-header-v2 {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Wide alignment */
.alignwide.hero-header-v2 {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
