/* ============================================================
   Vectribe — supplementary styles
   1) Page-banner H1 support
   2) Blog typography helpers
   3) Service quote CTA consistency
   ============================================================ */

.inner-wrap-content h1 {
    font-family: var(--fbolder);
    font-size: clamp(30px, 4.4vw, 64px);
    line-height: 1.12;
    color: var(--c3);
    margin-top: 120px;
    margin-bottom: 0;
}

.inner-wrap-content h1 span {
    color: var(--c1);
    font-family: var(--fbolder);
}

@media (max-width: 991px) {
    .inner-wrap-content h1 { margin-top: 90px; }
}

@media (max-width: 767px) {
    .inner-wrap-content h1 { margin-top: 50px; text-align: center; }
}

/* --- blog typography --- */

.vd-prose p,
.vd-prose li {
    color: rgba(255, 255, 255, .82);
}

.vd-prose h2,
.vd-prose h3 {
    color: var(--c3);
    font-family: var(--fbold);
}

.vd-prose a {
    color: var(--c1);
    text-decoration: none;
    transition: all .3s;
}

.vd-prose a:hover {
    color: var(--c3);
    text-decoration: underline;
}

.vd-prose strong {
    color: var(--c3);
}

/* --- live service form CTA: match the site's primary buttons --- */
.service-wrap-form .wrap-form-submit .vd-quote-submit {
    display: inline-block !important;
    width: auto !important;
    min-height: 64px;
    margin: 0;
    padding: 18px 40px !important;
    border: 2px solid var(--c1) !important;
    border-radius: 0 !important;
    outline: 0;
    background: var(--c1) !important;
    color: var(--c3) !important;
    font-family: "Satoshi", sans-serif;
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 10px 60px 0 rgb(125 42 232 / 40%);
    transition: all .4s;
    appearance: none;
    -webkit-appearance: none;
}

.service-wrap-form .wrap-form-submit .vd-quote-submit:hover,
.service-wrap-form .wrap-form-submit .vd-quote-submit:focus {
    background: transparent !important;
    border-color: var(--c1) !important;
    color: var(--c3) !important;
}

@media (max-width: 767px) {
    .service-wrap-form .wrap-form-submit .vd-quote-submit {
        width: 100% !important;
    }
}
