/* Bulletproof Hero Wrapper */
.hero-wrapper {
    /* svh is native mobile height, vh is fallback */
    min-height: 110vh !important;
    min-height: 110svh !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /* Force the overlay to bleed 2px past the bottom boundary */
    bottom: -2px;
    z-index: 1;
    /* Assuming you have background color/image set here or in style.css */
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Content sits cleanly above the overlay */
    width: 100%;
    text-align: center;
}

.hero-content h1 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* THE ULTIMATE FIX FOR THE WHITE LINE */
/* We physically pull the features section 1px upward, creating a seamless overlap */
#features {
    position: relative;
    z-index: 10;
    /* Ensures it sits tightly over the bleeding hero section */
    /* margin-top: -1px; 
    padding-top: 1px; */
    /* Balances out the negative margin so inner spacing isn't ruined */
}