  /*==============================================
    Homepage Layout
    Hero overrides, phone CTA, responsive
===============================================*/

/* ---- Hero ---- */
.home-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.home-hero .lp-hero__bg {
    opacity: 0.8;
}

.home-hero .container {
    padding-top: 80px;
    padding-bottom: 80px;
}

.home-hero .lp-hero__content h1 {
    font-size: 48px;
    line-height: 1.15;
    max-width: 700px;
}

.home-hero .lp-hero__content .lead {
    font-size: 18px;
    max-width: 600px;
}

/* ---- Hero Buttons ---- */
.home-hero__btns {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.home-hero__phone {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--suntop-white);
    transition: all 0.3s;
}

.home-hero__phone:hover {
    color: var(--suntop-base);
}

.home-hero__phone-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--suntop-base);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--suntop-base);
    font-size: 18px;
    flex-shrink: 0;
}

.home-hero__phone-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.home-hero__phone-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .home-hero .lp-hero__content h1 {
        font-size: 34px;
        text-align: center;
        max-width: none;
    }

    .home-hero .lp-hero__content .lead {
        text-align: center;
        max-width: none;
    }

    .home-hero .lp-hero__content .lp-checklist {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 16px;
    }

    .home-hero__btns {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .home-hero .lp-hero__content h1 {
        font-size: 28px;
    }

    .home-hero__phone-number {
        font-size: 17px;
    }
}
