/* =========================
   HEADER V2 (FIXED / CLEAN)
========================= */

.site-header,
.header-inner,
.header-v2 {
    box-sizing: border-box;
}


.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 10px 24px;
    /* smaller */
}

.header-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* LOGO */
.header-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 115px;
    /* ✅ key fix */
    width: auto;
    display: block;
}

/* CTA */
.header-cta {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.call-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

/* BUTTON (single source of truth) */
.btn-solid {
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 900;
    background: #e51b27;
    color: #fff;
    border: 2px solid #e51b27;
    box-shadow: 0 5px 15px rgba(229, 27, 39, .45);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;

    font-size: clamp(22px, 3vw, 50px);
    line-height: 1;
    /* ✅ remove huge line-height */
    width: auto;
    /* ✅ remove 70% width */
}

.call-sub {
    margin: 0;
    font-size: 18px;
    color: #040404;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 700;
    text-align: center;
}

/* =========================
   TABLET / MOBILE HEADER
========================= */
@media (max-width: 992px) {
    .header-inner {
        padding: 10px 14px;
    }

    .header-v2 {
        flex-direction: column;
        /* ✅ stack */
        align-items: center;
        gap: 10px;
    }

    .header-logo img {
        height: 54px;
    }

    .btn-solid {
        width: 100%;
        /* ✅ full width on mobile */
        max-width: 520px;
        font-size: 18px;
        padding: 12px 16px;
    }

    .call-sub {
        font-size: 16px;
    }
}

/* =========================
   MOBILE HEADER: logo left, CTA right
========================= */
@media (max-width: 768px) {
    .header-v2 {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 10px 14px;
    }

    /* LEFT: LOGO */
    .header-logo {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .header-logo img {
        height: 44px;
        width: auto;
        max-width: 160px;
        /* keep it from pushing CTA */
        object-fit: contain;
    }

    /* RIGHT: CTA (button + subtitle) */
    .header-cta {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .call-wrap {
        width: auto;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
    }

    .btn-solid {
        font-size: 20px;
        /* bigger CALL NOW */
        font-weight: 900;
        letter-spacing: .5px;
        padding: 14px 22px;
        /* taller pill */
        max-width: 240px;
        /* keeps it from overflowing */
    }

    .call-sub {
        font-size: 10px;
        /* subtitle like the pic */
        font-weight: 800;
        letter-spacing: .3px;
    }
}