/* Homepage hero premium tokens (accent used sparingly) */
:root {
    --hero-accent: #F5B301;
    --hero-accent-text: #050505;
    --hero-border-soft: rgba(255, 255, 255, 0.16);
    --hero-star: #FFC107;
    /* Matches header .navbar-brand { right: 95px } — keeps banner copy aligned with logo */
    --teg-header-content-inset: 95px;
}

/* Desktop: banner copy left edge lines up with header logo */
@media (min-width: 768px) {
    .home_hero .hero-banner-overlay,
    .home_hero .vector-banner-copy {
        right: var(--teg-header-content-inset);
        left: auto;
        margin-left: 0;
        text-align: left;
    }

    .home_hero .container > .row > [class*="col-"] {
        align-items: flex-start;
        justify-content: center;
    }
}

/* Reusable homepage banner overlays */
.home_hero.home_hero--vector {
    --vector-banner-proof-left: max(12px, calc((100vw - 1320px) / 2 + 12px));
    align-items: center;
    padding-top: clamp(100px, 11vh, 140px);
    padding-bottom: clamp(80px, 9vh, 120px);
}

.home_hero--vector::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .56) 46%, rgba(0, 0, 0, .34) 100%);
    opacity: 1;
}

.home_hero--vector .container {
    position: static;
}

.vector-banner-copy {
    position: relative;
    top: auto;
    right: 95px;
    left: auto;
    z-index: 3;
    max-width: 760px;
    padding-left: 0;
    transform: none;
}

.vector-banner-kicker {
    margin: 0 0 6px;
    color: #fff;
    font-family: "P-SemiBold";
    font-size: clamp(25px, 2.75vw, 30px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.035em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, .55);
}

.home_hero .vector-banner-title {
    margin: 0 0 24px;
    max-width: 610px;
    color: var(--hero-accent);
    font-family: "P-Bold";
    font-size: clamp(46px, 5.45vw, 78px);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.045em;
    text-transform: none;
    text-shadow: 0 5px 16px rgba(0, 0, 0, .58);
}

.vector-banner-bullets {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vector-banner-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: "P-SemiBold";
    font-size: clamp(15px, 1.22vw, 20px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -.02em;
    text-shadow: 0 3px 10px rgba(0, 0, 0, .6);
}

.vector-bullet-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: var(--hero-accent);
    font-size: clamp(19px, 1.7vw, 28px);
    line-height: 1;
}

.vector-banner-cta {
    margin-top: 22px;
    margin-left: 0;
}

.vector-banner-proof {
    position: absolute;
    right: auto;
    bottom: clamp(38px, 5vh, 58px);
    left: var(--vector-banner-proof-left);
    z-index: 3;
    width: min(880px, 78vw);
    margin: 0;
    transform: none;
}

.vector-feature-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    padding: 16px clamp(18px, 2vw, 30px);
    overflow: hidden;
    border: 1px solid rgba(255, 167, 1, .42);
    border-radius: 14px;
    background: rgba(0, 0, 0, .74);
    box-shadow: inset 0 0 24px rgba(255, 167, 1, .12), 0 12px 26px rgba(0, 0, 0, .38);
    right: 95px;
    position: relative;
    bottom: 50px;
}

.vector-feature-item {
    display: flex;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1vw, 15px);
    min-width: 0;
    padding: 0 clamp(13px, 1.45vw, 22px);
    border-right: 1px solid rgba(255, 167, 1, .34);
}

.vector-feature-item:first-child {
    justify-content: flex-start;
    padding-left: 0;
}

.vector-feature-item:last-child {
    justify-content: flex-end;
    padding-right: 0;
    border-right: 0;
}

.vector-feature-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: clamp(32px, 3.3vw, 48px);
    color: var(--c2);
    font-size: clamp(29px, 2.95vw, 44px);
    line-height: 1;
}

.vector-feature-text {
    display: inline-block;
    color: #fff;
    font-family: "P-SemiBold";
    font-size: clamp(13px, 1.18vw, 19px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    white-space: nowrap;
    text-align: left;
    text-shadow: 0 2px 7px rgba(0, 0, 0, .65);
}

.vector-strip-stars {
    flex: 0 0 auto;
    color: var(--hero-star);
    font-size: .92em;
    letter-spacing: 3px;
}

@media (max-width: 1399px) {
    .home_hero.home_hero--vector {
        --vector-banner-proof-left: max(12px, calc((100vw - 1140px) / 2 + 12px));
    }

    .home_hero.home_hero--patches {
        --patches-banner-proof-left: max(12px, calc((100vw - 1140px) / 2 + 12px));
    }
}

@media (max-width: 1199px) {
    .home_hero.home_hero--vector {
        --vector-banner-proof-left: max(12px, calc((100vw - 960px) / 2 + 12px));
        padding-bottom: clamp(72px, 8.5vh, 100px);
    }

    .vector-banner-proof {
        width: min(820px, 88vw);
        bottom: 40px;
    }
}

@media (max-width: 991px) {
    .home_hero.home_hero--vector {
        --vector-banner-proof-left: max(12px, calc((100vw - 720px) / 2 + 12px));
        min-height: clamp(540px, 50vw, 680px);
        padding-top: clamp(92px, 10.5vh, 112px);
        padding-bottom: clamp(72px, 8.5vh, 100px);
    }

    .vector-banner-copy {
        top: auto;
        right: auto;
        left: auto;
        max-width: 560px;
        padding-left: 0;
        transform: none;
    }

    .vector-banner-proof {
        width: calc(100vw - (var(--vector-banner-proof-left) * 2));
        bottom: 36px;
        max-width: none;
    }

    .vector-feature-strip {
        min-height: 74px;
        padding: 12px 14px;
    }

    .vector-feature-item {
        gap: 7px;
        padding: 0 9px;
    }

    .vector-feature-icon {
        width: 28px;
        font-size: 27px;
    }

    .vector-feature-text {
        font-size: clamp(11px, 1.55vw, 15px);
        white-space: normal;
    }
}

@media (max-width: 767px) {
    .home_hero.home_hero--vector {
        --vector-banner-proof-left: 0px;
        min-height: clamp(620px, 92svh, 720px);
        padding-top: 84px;
        padding-bottom: 28px;
    }

    .vector-banner-copy {
        top: auto;
        right: auto;
        left: auto;
        max-width: none;
        transform: none;
    }

    .home_hero .vector-banner-title {
        margin-bottom: 10px;
        font-size: 50px;
    }

    .vector-banner-kicker {
        font-size: clamp(18px, 4.8vw, 26px);
    }

    .vector-banner-bullets {
        gap: 6px;
    }

    .vector-banner-bullets li {
        font-size: clamp(12.5px, 3.4vw, 15px);
    }

    .vector-banner-cta {
        margin-top: 14px;
    }

    .vector-banner-cta.btn,
    .vector-banner-cta.bbtn {
        padding: 9px 22px;
        font-size: 16px;
    }

    .vector-banner-proof {
        position: static;
        bottom: auto;
        left: auto;
        width: 100%;
        margin-top: 14px;
    }

    /* Vector mobile: 2x2 cards only (no outer wrapper box — matches Digitizing/Patches) */
    .vector-feature-strip {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
        min-height: 0;
        padding: 0;
        border: none !important;
        border-radius: 0;
        background: transparent !important;
        box-shadow: none !important;
        overflow: visible;
    }

    .vector-feature-item {
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        min-width: 0;
        min-height: 80px;
        padding: 12px 14px;
        border: 1px solid rgba(255, 167, 1, .3) !important;
        border-radius: 10px;
        background: rgba(1, 20, 38, .72) !important;
        box-shadow: inset 0 0 18px rgba(255, 167, 1, .08), 0 10px 24px rgba(0, 0, 0, .28) !important;
        overflow: hidden;
    }

    .vector-feature-item:first-child,
    .vector-feature-item:last-child {
        justify-content: flex-start;
        padding: 12px 14px;
        border-right: 1px solid rgba(255, 167, 1, .3) !important;
    }

    .vector-feature-icon {
        flex: 0 0 32px;
        width: 32px;
        height: 32px;
        font-size: 0;
    }

    .vector-feature-icon img {
        width: 28px;
        height: 28px;
        object-fit: contain;
    }

    .vector-feature-text {
        flex: 1 1 auto;
        min-width: 0;
        color: rgba(255, 255, 255, .96);
        font-family: "P-Bold", "Poppins", sans-serif;
        font-size: clamp(11.5px, 3.2vw, 13px);
        font-weight: 800;
        line-height: 1.25;
        letter-spacing: -.01em;
        text-align: left;
        white-space: normal;
        overflow: hidden;
        word-break: normal;
        overflow-wrap: normal;
    }

    .vector-customer-strip {
        gap: 6px;
        width: 100%;
        min-height: 36px;
        margin-top: 8px;
        padding: 6px 8px;
        font-size: clamp(12px, 3.2vw, 15px);
    }

    .vector-strip-stars {
        letter-spacing: 1px;
    }
}

@media (max-width: 420px) {
    .vector-feature-strip {
        gap: 10px;
    }

    .vector-feature-item {
        min-width: 0;
        min-height: 86px;
        padding: 12px 10px;
    }

    .vector-feature-text {
        font-size: clamp(11px, 3.3vw, 12.5px);
    }

    .vector-customer-strip {
        font-size: 13px;
    }

    .vector-strip-stars {
        font-size: .78em;
    }
}

/* Custom patches banner overlay */

.home_hero.home_hero--patches {
    align-items: stretch;
    justify-content: center;
    padding-top: clamp(80px, 8vh, 110px);
    padding-bottom: clamp(80px, 8vh, 110px);
}

.home_hero--patches::before {
    background: linear-gradient(90deg, rgba(1, 20, 38, .82) 0%, rgba(1, 20, 38, .64) 38%, rgba(1, 20, 38, .42) 72%, rgba(1, 20, 38, .3) 100%);
    opacity: 1;
}

.home_hero--patches .hero-bg {
    object-position: center 42%;
}

.home_hero--patches .container {
    position: relative;
}

.hero-banner-overlay {
    position: relative;
    top: auto;
    right: 95px;
    left: auto;
    z-index: 3;
    width: min(980px, 78vw);
    max-width: 980px;
    margin-left: 0;
    padding-left: 0;
    color: #fff;
    transform: none;
}

.hero-banner-overlay--patches,
.hero-banner-overlay--vector {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(18px, 2vw, 30px);
}

.hero-banner-heading {
    flex: 0 0 auto;
    max-width: 600px;
}

.hero-banner-eyebrow {
    margin: 0 0 8px;
    color: var(--c2);
    font-family: "P-Bold";
    font-size: clamp(12px, .95vw, 14px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: .22em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .55);
}

.hero-banner-kicker {
    margin: 0 0 4px;
    color: #fff;
    font-family: "P-SemiBold";
    font-size: clamp(25px, 2.75vw, 40px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.035em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, .55);
}

.home_hero .hero-banner-title {
    margin: 0 0 14px;
    max-width: 540px;
    color: var(--hero-accent);
    font-family: "P-Bold";
    font-size: clamp(46px, 5.45vw, 75px);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.045em;
    text-transform: none;
    text-shadow: 0 5px 16px rgba(0, 0, 0, .58);
}

.hero-banner-subtitle {
    margin: 0;
    max-width: 480px;
    color: #fff;
    font-family: "P-SemiBold";
    font-size: clamp(14px, 1.05vw, 17px);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -.01em;
    text-shadow: 0 3px 10px rgba(0, 0, 0, .6);
}

.hero-banner-subtitle strong {
    display: inline-block;
    margin-top: 2px;
    font-family: "P-Bold";
    font-weight: 800;
}

.hero-banner-trust-stars {
    color: var(--hero-star);
}

.hero-banner-cta.btn {
    margin-top: 20px;
    margin-left: 0;
    padding: 11px 26px;
    border-radius: 6px;
    font-size: clamp(13px, 1vw, 15px);
}

.hero-banner-feature-grid {
    display: grid;
    flex: 0 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: min(400px, 100%);
    align-self: center;
}

.hero-banner-feature-grid--row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(10px, 1.1vw, 16px);
    width: 100%;
    max-width: 722px;
    align-self: flex-start;
}

.hero-banner-feature-grid--row .hero-banner-feature-card {
    min-width: 0;
    min-height: 80px;
    padding: 10px 14px;
    gap: 11px;
}

.hero-banner-feature-grid--row .hero-banner-card-text {
    flex: 1 1 auto;
    min-width: 0;
}

.hero-banner-feature-grid--row .hero-banner-card-label {
    font-size: clamp(8.5px, .65vw, 16px);
    letter-spacing: .14em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-banner-feature-grid--row .hero-banner-card-value {
    font-size: clamp(11.5px, .9vw, 16px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-banner-feature-grid--row .hero-banner-icon {
    width: 30px;
    height: 30px;
    font-size: 35px;
}

.hero-banner-feature-card,
.hero-banner-feature-strip,
.hero-banner-trust-strip {
    border: 1px solid rgba(255, 167, 1, .3);
    background: rgba(1, 20, 38, .72);
    box-shadow: inset 0 0 18px rgba(255, 167, 1, .08), 0 10px 24px rgba(0, 0, 0, .28);
    backdrop-filter: blur(2px);
}

.hero-banner-feature-card {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 70px;
    padding: 10px 18px 10px 14px;
    border-radius: 10px;
    color: #fff;
    text-shadow: 0 2px 7px rgba(0, 0, 0, .62);
}

.hero-banner-card-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.15;
}

.hero-banner-card-label {
    color: rgba(255, 255, 255, .6);
    font-family: "P-SemiBold";
    font-size: clamp(9px, .68vw, 10.5px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-banner-card-value {
    margin-top: 4px;
    color: #fff;
    font-family: "P-Bold";
    font-size: clamp(12.5px, 1vw, 14.5px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.01em;
    white-space: nowrap;
}

.hero-banner-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
   /*  background: rgba(255, 167, 1, .15); */
    font-size: 30px;
    line-height: 1;
}

.hero-banner-proof {
    position: absolute;
    right: auto;
    bottom: clamp(12px, 0vh, 58px);
    z-index: 3;
    max-width: 1320px;
    margin: 0;
    transform: none;
}

.hero-banner-proof--patches {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: clamp(0px, 2vw, 14px);
}

.hero-banner-feature-strip {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    width: auto;
    padding: 8px clamp(13px, 2vw, 15px);
    overflow: hidden;
    border-color: rgba(255, 167, 1, .42);
    border-radius: 14px;
    background: rgba(0, 0, 0, .74);
    box-shadow: inset 0 0 24px rgba(255, 167, 1, .12), 0 12px 26px rgba(0, 0, 0, .38);
}

.hero-banner-strip-item {
    display: flex;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1vw, 15px);
    min-width: 0;
    padding: 0 clamp(13px, 1.45vw, 22px);
    border-right: 1px solid rgba(255, 167, 1, .34);
    color: #fff;
    font-family: "P-SemiBold";
    font-size: clamp(13px, 1.18vw, 19px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    text-align: left;
    text-shadow: 0 2px 7px rgba(0, 0, 0, .62);
}

.hero-banner-strip-item:last-child {
    justify-content: flex-end;
    padding-right: 0;
    border-right: 0;
}

.hero-banner-strip-item:first-child {
    justify-content: flex-start;
    padding-left: 0;
}

.hero-banner-strip-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: clamp(32px, 3.3vw, 48px);
    font-size: clamp(29px, 2.95vw, 44px);
    line-height: 1;
}

.hero-banner-trust-strip {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.4vw, 0px);
    width: auto;
    min-height: 88px;
    margin: 0;
    padding: 6px clamp(0px, 2.4vw, 9px);
    border-color: rgba(255, 167, 1, .34);
    border-radius: 13px;
    background: rgba(0, 0, 0, .74);
    color: #fff;
    font-family: "P-Regular";
    font-size: clamp(15px, 1.45vw, 23px);
    line-height: 1.1;
    letter-spacing: -.02em;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .65);
    white-space: nowrap;
}

.hero-banner-trust-strip strong {
    font-family: "P-Bold";
    font-weight: 800;
}

.hero-banner-trust-strip strong span {
    color: var(--c2);
}

.hero-banner-trust-stars {
    flex: 0 0 auto;
    font-size: .92em;
    letter-spacing: 3px;
}

@media (max-width: 1199px) {
    .hero-banner-overlay {
        width: min(900px, 86vw);
        gap: 22px;
    }

    .hero-banner-heading {
        flex: 0 0 auto;
    }

    .hero-banner-feature-grid {
        flex: 0 1 360px;
        width: min(360px, 100%);
    }

    .hero-banner-feature-grid--row {
        flex: 0 0 auto;
        width: 100%;
        max-width: 780px;
    }

    .home_hero.home_hero--patches {
        --patches-banner-proof-left: max(12px, calc((100vw - 960px) / 2 + 12px));
        padding-bottom: clamp(72px, 8.5vh, 100px);
    }

    .hero-banner-proof {
        bottom: 40px;
        width: calc(100vw - (var(--patches-banner-proof-left) * 2));
        max-width: 1140px;
    }
}

@media (max-width: 991px) {
    .home_hero.home_hero--patches {
        --patches-banner-proof-left: max(12px, calc((100vw - 720px) / 2 + 12px));
        min-height: clamp(540px, 50vw, 680px);
        padding-top: clamp(92px, 10.5vh, 112px);
        padding-bottom: clamp(72px, 8.5vh, 100px);
    }

    .home_hero--patches::before {
        background: linear-gradient(90deg, rgba(1, 20, 38, .74) 0%, rgba(1, 20, 38, .54) 48%, rgba(1, 20, 38, .24) 100%);
    }

    .hero-banner-overlay {
        width: min(620px, 80vw);
    }

    .hero-banner-overlay--patches {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .hero-banner-heading {
        flex: 1 1 auto;
        max-width: 560px;
    }

    .hero-banner-feature-grid {
        flex: 1 1 auto;
        width: min(440px, 100%);
        align-self: flex-start;
    }

    .hero-banner-feature-grid--row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(560px, 100%);
        max-width: none;
        gap: 12px;
    }

    .hero-banner-proof {
        bottom: 34px;
        width: calc(100vw - (var(--patches-banner-proof-left) * 2));
        max-width: none;
    }

    .hero-banner-proof--patches {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 10px;
    }

    .hero-banner-feature-strip {
        min-height: 70px;
        padding: 12px 14px;
        width: 100%;
    }

    .hero-banner-strip-item {
        gap: 7px;
        padding: 0 8px;
        font-size: clamp(10px, 1.45vw, 14px);
    }

    .hero-banner-strip-icon {
        width: 26px;
        font-size: 24px;
    }

    .hero-banner-trust-strip {
        flex: 0 1 auto;
        width: 100%;
        min-height: 44px;
        white-space: normal;
    }
}

@media (max-width: 767px) {
    .home_hero.home_hero--patches {
        --patches-banner-proof-left: 0px;
        align-items: flex-start;
        min-height: clamp(620px, 92svh, 720px);
        padding-top: 84px;
        padding-bottom: 28px;
    }

    .home_hero--patches .hero-bg {
        object-position: 58% 32%;
    }

    .home_hero--patches::before {
        background: linear-gradient(90deg, rgba(1, 20, 38, .82) 0%, rgba(1, 20, 38, .66) 58%, rgba(1, 20, 38, .36) 100%);
    }

    .hero-banner-overlay {
        width: 100%;
        max-width: none;
    }

    .hero-banner-overlay--patches {
        gap: 8px;
    }

    .home_hero .hero-banner-title {
        margin-bottom: 10px;
        font-size: 50px;
    }

    .hero-banner-eyebrow {
        font-size: 11px;
        letter-spacing: .2em;
    }

    .hero-banner-kicker {
        font-size: clamp(18px, 4.8vw, 26px);
    }

    .hero-banner-subtitle {
        max-width: none;
        font-size: clamp(13px, 3.4vw, 15px);
    }

    .hero-banner-cta.btn,
    .hero-banner-overlay--patches .vector-banner-cta.btn {
        margin-top: 14px;
        padding: 9px 22px;
        font-size: 16px;
    }

    .hero-banner-feature-grid {
        width: 100%;
        max-width: none;
        gap: 10px;
    }

    .hero-banner-feature-grid--row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        max-width: none;
        gap: 10px;
    }

    .hero-banner-feature-card {
        box-sizing: border-box;
        align-items: center;
        min-height: 80px;
        padding: 12px 14px;
        gap: 10px;
        overflow: hidden;
    }

    .hero-banner-card-label {
        font-size: 8.5px;
        letter-spacing: .1em;
        line-height: 1.2;
        white-space: normal;
        overflow: hidden;
        word-break: break-word;
    }

    .hero-banner-card-value {
        font-size: 12px;
        line-height: 1.25;
        white-space: normal;
        overflow: hidden;
        word-break: break-word;
    }

    .hero-banner-icon {
        flex: 0 0 32px;
        width: 32px;
        height: 32px;
        border-radius: 8px;
        font-size: 0;
    }

    .hero-banner-icon img {
        width: 28px;
        height: 28px;
        object-fit: contain;
    }

    .hero-banner-proof {
        position: static;
        bottom: auto;
        left: auto;
        width: 100%;
        max-width: none;
        margin-top: 14px;
    }

    .hero-banner-proof--patches {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    /* Banner 2 mobile: bottom 4-item strip uses unified 2x2 card grid */
    .hero-banner-proof--patches .hero-banner-feature-strip {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: stretch;
        min-height: auto;
        padding: 8px;
        gap: 8px;
        overflow: visible;
        border-radius: 12px;
    }

    .hero-banner-proof--patches .hero-banner-strip-item {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        min-width: 0;
        max-width: none;
        min-height: 48px;
        padding: 8px 10px;
        border: 1px solid rgba(255, 167, 1, .26);
        border-right: 0;
        border-radius: 10px;
        background: rgba(0, 0, 0, .42);
        font-size: clamp(10px, 2.5vw, 12px);
        line-height: 1.15;
        white-space: normal;
    }

    .hero-banner-proof--patches .hero-banner-strip-item:first-child,
    .hero-banner-proof--patches .hero-banner-strip-item:last-child {
        justify-content: flex-start;
        padding-right: 10px;
        padding-left: 10px;
    }

    .hero-banner-proof--patches .hero-banner-strip-icon {
        flex: 0 0 24px;
        width: 24px;
        height: 24px;
        font-size: 18px;
    }

    .hero-banner-trust-strip {
        width: 100%;
        min-height: 38px;
        padding: 7px 10px;
        font-size: 13px;
    }

    .hero-banner-trust-stars {
        letter-spacing: 1px;
    }
}

@media (max-width: 420px) {
    .hero-banner-feature-strip {
        padding-right: 8px;
        padding-left: 8px;
    }

    .hero-banner-strip-item {
        min-width: 0;
        padding: 8px 5px;
        font-size: 9.4px;
    }

    .hero-banner-trust-strip {
        flex-wrap: wrap;
        gap: 5px;
    }
}

/* ------------------------------------------------------------------ */
/* Banner 3: Digitizing service overlay (reuses Banner 2 components)  */
/* ------------------------------------------------------------------ */

.home_hero.home_hero--digitizing {
    --digitizing-banner-proof-left: max(12px, calc((100vw - 1320px) / 2 + 12px));
    align-items: stretch;
    justify-content: center;
    padding-top: clamp(80px, 8vh, 110px);
    padding-bottom: clamp(80px, 8vh, 110px);
}

.home_hero--digitizing::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .6) 46%, rgba(0, 0, 0, .38) 100%);
    opacity: 1;
}

.home_hero--digitizing .container {
    position: relative;
}

.hero-banner-overlay--digitizing {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(20px, 2.8vw, 34px);
}

.hero-banner-feature-grid--digitizing-top {
    width: 100%;
    max-width: 665px;
    align-self: flex-start;
}

.hero-banner-proof--digitizing {
    left: var(--digitizing-banner-proof-left);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    width: calc(100vw - (var(--digitizing-banner-proof-left) * 2));
    max-width: 1320px;
}

.hero-banner-proof--digitizing .hero-banner-feature-strip {
    flex: 1 1 auto;
    width: 100%;
}

.hero-banner-proof--digitizing .hero-banner-strip-item strong {
    color: var(--c2);
    font-family: "P-Bold";
    font-weight: 800;
}

.hero-banner-feature-grid--digitizing-top .hero-banner-feature-card {
    align-items: center;
    min-height: 80px;
    padding: 8px 12px;
    gap: 10px;
}

.hero-banner-feature-grid--digitizing-top .hero-banner-icon {
    margin-top: 0;
    width: 32px;
    height: 32px;
    font-size: 35px;
}

.hero-banner-feature-grid--digitizing-top .hero-banner-card-text {
    gap: 2px;
}

.hero-banner-feature-grid--digitizing-top .hero-banner-card-value {
    margin-top: 0;
    color: #fff;
    font-family: "P-Bold";
    font-size: clamp(12.5px, .95vw, 14px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.01em;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.hero-banner-feature-grid--digitizing-top .hero-banner-card-label {
    color: rgba(255, 255, 255, .72);
    font-family: "P-Regular";
    font-size: clamp(10.5px, .78vw, 12px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -.005em;
    text-transform: none;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

/* Vector banner 3: match Digitizing feature box sizing & readable text */
@media (min-width: 768px) {
    .hero-banner-feature-grid--vector {
        width: 100%;
        max-width: 920px;
        align-self: flex-start;
    }

    .hero-banner-feature-grid--vector .hero-banner-feature-card {
        align-items: center;
        min-height: 80px;
        padding: 8px 12px;
        gap: 10px;
    }

    .hero-banner-feature-grid--vector .hero-banner-icon {
        flex: 0 0 32px;
        width: 32px;
        height: 32px;
    }

    .hero-banner-feature-grid--vector .hero-banner-card-text {
        gap: 2px;
    }

    .hero-banner-feature-grid--vector .hero-banner-card-value {
        margin-top: 0;
        color: #fff;
        font-family: "P-Bold";
        font-size: clamp(12.5px, .95vw, 14px);
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -.01em;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
}

@media (max-width: 1399px) {
    .home_hero.home_hero--digitizing {
        --digitizing-banner-proof-left: max(12px, calc((100vw - 1140px) / 2 + 12px));
    }
}

@media (max-width: 1199px) {
    .home_hero.home_hero--digitizing {
        --digitizing-banner-proof-left: max(12px, calc((100vw - 960px) / 2 + 12px));
        padding-bottom: clamp(72px, 8.5vh, 100px);
    }

    .hero-banner-proof--digitizing {
        bottom: 40px;
        width: calc(100vw - (var(--digitizing-banner-proof-left) * 2));
        max-width: 1140px;
    }
}

@media (max-width: 991px) {
    .home_hero.home_hero--digitizing {
        --digitizing-banner-proof-left: max(12px, calc((100vw - 720px) / 2 + 12px));
        min-height: clamp(540px, 50vw, 680px);
        padding-top: clamp(92px, 10.5vh, 112px);
        padding-bottom: clamp(72px, 8.5vh, 100px);
    }

    .home_hero--digitizing::before {
        background: linear-gradient(90deg, rgba(0, 0, 0, .76) 0%, rgba(0, 0, 0, .54) 48%, rgba(0, 0, 0, .26) 100%);
    }

    .hero-banner-overlay--digitizing {
        align-items: flex-start;
    }

    .hero-banner-proof--digitizing {
        bottom: 30px;
        width: calc(100vw - (var(--digitizing-banner-proof-left) * 2));
        max-width: none;
    }
}

@media (max-width: 767px) {
    .home_hero.home_hero--digitizing {
        --digitizing-banner-proof-left: 0px;
        align-items: flex-start;
        min-height: clamp(620px, 92svh, 720px);
        padding-top: 84px;
        padding-bottom: 28px;
    }

    .home_hero--digitizing .hero-bg {
        object-position: 65% center;
    }

    .home_hero--digitizing::before {
        background: linear-gradient(90deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .72) 58%, rgba(0, 0, 0, .48) 100%);
    }

    .hero-banner-overlay--digitizing {
        gap: 14px;
    }

    .home_hero--digitizing .hero-banner-title {
        margin-bottom: 8px;
        font-size: clamp(34px, 11.4vw, 48px);
    }

    .home_hero--digitizing .hero-banner-kicker {
        font-size: clamp(18px, 4.8vw, 26px);
    }

    .home_hero--digitizing .hero-banner-eyebrow {
        font-size: 14px;
        letter-spacing: .2em;
    }

    .home_hero--digitizing .vector-banner-cta.btn,
    .home_hero--digitizing .vector-banner-cta.bbtn {
        margin-top: 12px;
        padding: 9px 22px;
        font-size: 18px;
    }

    .hero-banner-proof--digitizing {
        position: static;
        bottom: auto;
        left: auto;
        width: 100%;
        max-width: none;
        margin-top: 14px;
    }

    .hero-banner-feature-grid--digitizing-top {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        min-width: 0;
        max-width: none;
        gap: 10px;
    }

    .hero-banner-feature-grid--digitizing-top .hero-banner-feature-card {
        box-sizing: border-box;
        align-items: center;
        min-height: 80px;
        padding: 12px 14px;
        gap: 10px;
        overflow: hidden;
    }

    .hero-banner-feature-grid--digitizing-top .hero-banner-icon {
        flex: 0 0 32px;
        margin-top: 0;
        width: 32px;
        height: 32px;
        font-size: 0;
    }

    .hero-banner-feature-grid--digitizing-top .hero-banner-icon img {
        width: 28px;
        height: 28px;
        object-fit: contain;
    }

    .hero-banner-feature-grid--digitizing-top .hero-banner-card-value {
        font-size: clamp(11.5px, 3.1vw, 13px);
        line-height: 1.25;
        white-space: normal;
        overflow: hidden;
        word-break: break-word;
    }

    .hero-banner-feature-grid--digitizing-top .hero-banner-card-label {
        font-size: clamp(8.5px, 2.4vw, 10.5px);
        line-height: 1.2;
        white-space: normal;
        overflow: hidden;
        word-break: break-word;
    }

    /* Banner 3 mobile: bottom 4-item strip becomes a 2x2 card grid (matches Banner 2) */
    .hero-banner-proof--digitizing .hero-banner-feature-strip {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: stretch;
        min-height: auto;
        padding: 8px;
        gap: 8px;
        overflow: visible;
        border-radius: 12px;
    }

    .hero-banner-proof--digitizing .hero-banner-strip-item {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        min-width: 0;
        max-width: none;
        min-height: 48px;
        padding: 8px 10px;
        border: 1px solid rgba(255, 167, 1, .26);
        border-right: 0;
        border-radius: 10px;
        background: rgba(0, 0, 0, .42);
        font-size: clamp(10px, 2.5vw, 12px);
        line-height: 1.15;
        white-space: normal;
    }

    .hero-banner-proof--digitizing .hero-banner-strip-item:first-child,
    .hero-banner-proof--digitizing .hero-banner-strip-item:last-child {
        justify-content: flex-start;
        padding-right: 10px;
        padding-left: 10px;
    }

    .hero-banner-proof--digitizing .hero-banner-strip-icon {
        flex: 0 0 24px;
        width: 24px;
        height: 24px;
        font-size: 18px;
    }
}

/* ------------------------------------------------------------------ */
/* Patches & Digitizing customer trust strips (Banner 2 & 3 only)     */
/* Dedicated classes — mirrors Banner 1 visual without touching       */
/* .vector-customer-strip / .vector-strip-stars                     */
/* ------------------------------------------------------------------ */

.patches-customer-strip,
.digitizing-customer-strip,
.vector-customer-strip {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: clamp(9px, 1.4vw, 18px);
    min-height: 46px;
    margin: 0;
    padding: 8px clamp(14px, 2vw, 26px);
    border: 1px solid rgba(255, 167, 1, .34);
    border-radius: 13px;
    background: rgba(0, 0, 0, .74);
    color: #fff;
    font-family: "P-Regular";
    font-size: clamp(15px, 1.45vw, 23px);
    line-height: 1.1;
    letter-spacing: -.02em;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .65);
}

.patches-customer-strip,
.digitizing-customer-strip,
.vector-customer-strip {
    width: auto;
    max-width: 920px;
    align-self: flex-start;
    margin: 0;
}

.patches-customer-strip strong,
.digitizing-customer-strip strong,
.vector-customer-strip strong {
    font-family: "P-Bold";
    font-weight: 800;
}

.patches-customer-strip strong span,
.digitizing-customer-strip strong span,
.vector-customer-strip strong span {
    color: var(--hero-accent);
}

.patches-strip-stars,
.digitizing-strip-stars,
.vector-strip-stars {
    flex: 0 0 auto;
    color: var(--hero-star);
    font-size: .92em;
    letter-spacing: 3px;
}

@media (max-width: 767px) {
    .patches-customer-strip,
    .digitizing-customer-strip,
    .vector-customer-strip {
        gap: 6px;
        width: 100%;
        max-width: none;
        min-height: 36px;
        padding: 6px 25px;
        font-size: clamp(12px, 3.2vw, 15px);
    }

    .patches-strip-stars,
    .digitizing-strip-stars,
    .vector-strip-stars {
        letter-spacing: 1px;
    }
}

@media (max-width: 420px) {
    .patches-customer-strip,
    .digitizing-customer-strip,
    .vector-customer-strip {
        font-size: 13px;
    }

    .patches-strip-stars,
    .digitizing-strip-stars,
    .vector-strip-stars {
        font-size: .78em;
    }
}

/* ------------------------------------------------------------------ */
/* Banner 3: vertical center alignment (additive fix only)            */
/* Mirrors Banner 2 / base .home_hero padding so flex-centered      */
/* content is not pushed upward by excess bottom padding.           */
/* ------------------------------------------------------------------ */

@media (min-width: 768px) {
    .home_hero.home_hero--digitizing {
        padding-top: clamp(100px, 11vh, 140px);
        padding-bottom: clamp(80px, 9vh, 120px);
    }
}

@media (min-width: 1600px) {
    .home_hero.home_hero--digitizing {
        padding-top: clamp(110px, 11vh, 150px);
        padding-bottom: clamp(88px, 9vh, 125px);
    }
}

@media (max-width: 1460px) and (min-width: 1200px) {
    .home_hero.home_hero--digitizing {
        padding-top: clamp(92px, 10.5vh, 112px);
        padding-bottom: clamp(72px, 8.5vh, 96px);
    }
}

@media (max-width: 1199px) {
    .home_hero.home_hero--digitizing {
        padding-bottom: clamp(72px, 8.5vh, 100px);
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .home_hero.home_hero--digitizing {
        min-height: clamp(540px, 50vw, 680px);
        padding-top: clamp(92px, 10.5vh, 112px);
        padding-bottom: clamp(72px, 8.5vh, 100px);
    }
}

/* ------------------------------------------------------------------ */
/* Homepage hero: desktop overlay off + banner CTA pair (additive)    */
/* ------------------------------------------------------------------ */

@media (min-width: 992px) {
    .home_hero--vector::before,
    .home_hero--patches::before,
    .home_hero--digitizing::before {
        background: transparent;
        opacity: 0;
    }
}

.hero-banner-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(10px, 1.2vw, 14px);
    margin-top: 22px;
    margin-left: 0;
}

.hero-banner-cta-group .vector-banner-cta {
    margin-top: 0;
}

.hero-banner-cta-group .btn {
    padding: 10px 30px;
}

.hero-banner-heading .hero-banner-cta-group {
    margin-top: 14px;
}

@media (max-width: 767px) {
    .hero-banner-cta-group {
        gap: 10px;
        margin-top: 14px;
    }

    .hero-banner-heading .hero-banner-cta-group {
        margin-top: 12px;
    }
}

/* ------------------------------------------------------------------ */
/* Homepage hero: mobile responsive polish (all banners, additive)    */
/* ------------------------------------------------------------------ */

@media (max-width: 767px) {
    .home_hero.home_hero--vector,
    .home_hero.home_hero--patches,
    .home_hero.home_hero--digitizing {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        box-sizing: border-box;
    }

    .home_hero.home_hero--vector .container,
    .home_hero.home_hero--patches .container,
    .home_hero.home_hero--digitizing .container {
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        min-height: 0;
        padding-right: clamp(50px, 13vw, 58px);
        padding-left: clamp(50px, 13vw, 58px);
        box-sizing: border-box;
    }

    .home_hero.home_hero--vector .container > .row,
    .home_hero.home_hero--patches .container > .row,
    .home_hero.home_hero--digitizing .container > .row {
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        min-height: 0;
        margin-right: 0;
        margin-left: 0;
    }

    .home_hero.home_hero--vector .container > .row > [class*="col-"],
    .home_hero.home_hero--patches .container > .row > [class*="col-"],
    .home_hero.home_hero--digitizing .container > .row > [class*="col-"] {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: clamp(10px, 2.6vw, 14px);
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
    }

    .hero-banner-overlay {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        width: 100%;
        max-width: 100%;
        margin-right: 0;
        margin-left: 0;
        padding-right: 0;
        padding-left: 0;
        transform: none;
        box-sizing: border-box;
    }

    .hero-banner-overlay--patches,
    .hero-banner-overlay--digitizing {
        align-items: center;
        justify-content: flex-start;
        gap: clamp(10px, 2.6vw, 14px);
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .hero-banner-overlay--vector {
        align-items: stretch;
        justify-content: flex-start;
        gap: clamp(10px, 2.6vw, 14px);
        width: 100%;
        max-width: 100%;
    }

    .hero-banner-overlay--patches.text-start,
    .hero-banner-overlay--digitizing.text-start {
        text-align: center !important;
    }

    .home_hero--patches .hero-banner-heading,
    .home_hero--digitizing .hero-banner-heading {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .home_hero--patches .hero-banner-kicker,
    .home_hero--digitizing .hero-banner-kicker {
        width: 100%;
        max-width: 100%;
        text-align: center !important;
    }

    .home_hero .hero-banner-heading .hero-banner-title,
    .home_hero .hero-banner-heading .vector-banner-title {
        display: block;
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center !important;
    }

    .hero-banner-overlay--vector .hero-banner-feature-grid--vector {
        width: 100%;
        max-width: 100%;
        align-self: stretch;
    }

    .vector-customer-strip,
    .patches-customer-strip,
    .digitizing-customer-strip {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        align-self: stretch;
    }

    .hero-banner-heading {
        width: 100%;
        max-width: 100%;
    }

    .home_hero .hero-banner-title,
    .home_hero .vector-banner-title {
        margin-bottom: 8px;
        font-size: clamp(30px, 9.2vw, 44px);
        line-height: 1.02;
    }

    .vector-banner-kicker,
    .hero-banner-kicker {
        font-size: clamp(16px, 4.2vw, 22px);
    }

    .hero-banner-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
        margin-top: 10px;
    }

    .hero-banner-heading .hero-banner-cta-group {
        margin-top: 10px;
    }

    .hero-banner-cta-group .btn {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        padding: 10px 30px;
        text-align: center;
        box-sizing: border-box;
    }

    .hero-banner-feature-grid,
    .hero-banner-feature-grid--row,
    .hero-banner-feature-grid--digitizing-top {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        align-self: stretch;
    }

    .hero-banner-feature-card {
        min-width: 0;
    }

    .hero-banner-card-text {
        min-width: 0;
    }
}

@media (max-width: 420px) {
    .home_hero.home_hero--vector .container,
    .home_hero.home_hero--patches .container,
    .home_hero.home_hero--digitizing .container {
        padding-right: clamp(12px, 4vw, 20px);
        padding-left: clamp(12px, 4vw, 20px);
    }

    .home_hero .hero-banner-title,
    .home_hero .vector-banner-title {
        font-size: clamp(28px, 8.6vw, 38px);
    }

    .vector-banner-kicker,
    .hero-banner-kicker {
        font-size: clamp(15px, 4vw, 20px);
    }

    .vector-banner-bullets li {
        font-size: clamp(11.5px, 3.1vw, 14px);
    }
}

/* ------------------------------------------------------------------ */
/* Homepage hero: mobile refinements (headings, buttons, digitizing)  */
/* ------------------------------------------------------------------ */

@media (max-width: 767px) {
    .home_hero .hero-banner-title,
    .home_hero .vector-banner-title,
    .home_hero--digitizing .hero-banner-title {
        margin-bottom: 8px;
        font-size: clamp(38px, 11.2vw, 54px);
        line-height: 1.04;
        text-align: center;
    }

    .hero-banner-cta-group .btn {
        padding: 8px 20px;
        font-size: 15px;
        line-height: 1.2;
    }

    .home_hero.home_hero--digitizing {
        align-items: stretch;
        justify-content: center;
    }

    .home_hero.home_hero--digitizing .container,
    .home_hero.home_hero--digitizing .container > .row,
    .home_hero.home_hero--digitizing .container > .row > [class*="col-"] {
        justify-content: center;
    }

    .home_hero.home_hero--digitizing .hero-banner-overlay--digitizing {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: clamp(10px, 2.6vw, 14px);
        width: 100%;
        margin-top: auto;
        margin-bottom: auto;
    }

    .home_hero.home_hero--digitizing .hero-banner-heading,
    .home_hero.home_hero--digitizing .hero-banner-feature-grid--digitizing-top,
    .home_hero.home_hero--digitizing .digitizing-customer-strip {
        width: 100%;
        max-width: 100%;
        align-self: stretch;
    }

    .home_hero.home_hero--digitizing .hero-banner-cta-group {
        margin-top: 10px;
    }

    .home_hero.home_hero--digitizing .digitizing-customer-strip {
        margin-top: 0;
    }
}

@media (max-width: 420px) {
    .home_hero .hero-banner-title,
    .home_hero .vector-banner-title,
    .home_hero--digitizing .hero-banner-title {
        font-size: clamp(34px, 10vw, 48px);
    }

    .hero-banner-cta-group .btn {
        padding: 8px 18px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .home_hero.home_hero--digitizing {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        min-height: clamp(620px, 92svh, 720px);
        padding-top: clamp(78px, 11vh, 96px);
        padding-bottom: clamp(78px, 11vh, 96px);
    }

    .home_hero.home_hero--digitizing .container {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-self: stretch;
        min-height: 0;
        height: auto;
    }

    .home_hero.home_hero--digitizing .container > .row {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        align-content: center;
        min-height: 0;
    }

    .home_hero.home_hero--digitizing .container > .row > [class*="col-"] {
        flex: 0 1 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        align-self: center;
        width: 100%;
        min-height: 0;
    }

    .home_hero.home_hero--digitizing .hero-banner-overlay--digitizing {
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-self: stretch;
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
        gap: clamp(10px, 2.6vw, 14px);
    }

    .home_hero.home_hero--digitizing .hero-banner-heading,
    .home_hero.home_hero--digitizing .hero-banner-feature-grid--digitizing-top,
    .home_hero.home_hero--digitizing .hero-banner-cta-group,
    .home_hero.home_hero--digitizing .digitizing-customer-strip {
        width: 100%;
        max-width: 100%;
        align-self: stretch;
    }
}

/* ------------------------------------------------------------------ */
/* Hero premium refinements (color, CTAs, borders, icons)             */
/* ------------------------------------------------------------------ */

.home_hero .vector-banner-title,
.home_hero .hero-banner-title {
    color: var(--hero-accent);
}

.vector-bullet-icon {
    color: var(--hero-accent);
}

header .navbar-nav .nav-link.active::before,
header .navbar-nav .nav-link:hover::before {
    background-color: var(--hero-accent);
}

header .btn-header-signin {
    color: #050505 !important;
    border: 1px solid var(--hero-accent) !important;
    background-color: var(--hero-accent) !important;
    box-shadow: none;
}

header .btn-header-signin:hover,
header .btn-header-signin:focus-visible {
    color: #050505 !important;
    border-color: #fff !important;
    background-color: #fff !important;
}

header .btn-header-signup {
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.55) !important;
    background: transparent !important;
    box-shadow: none;
}

header .btn-header-signup:hover,
header .btn-header-signup:focus-visible {
    color: #050505 !important;
    border-color: var(--hero-accent) !important;
    background-color: var(--hero-accent) !important;
}

.hero-cta-primary,
.hero-banner-cta-group .hero-cta-primary,
.home_hero .hero-cta-primary.vector-banner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 24px !important;
    border: 1px solid var(--hero-accent) !important;
    border-radius: 6px;
    background: var(--hero-accent) !important;
    color: var(--hero-accent-text) !important;
    font-family: "P-SemiBold", "Poppins", sans-serif;
    font-size: clamp(13px, 1vw, 15px) !important;
    font-weight: 700;
    line-height: 1.2;
    text-transform: none;
    box-shadow: none;
    filter: none;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.home_hero .hero-cta-primary.btn.bbtn:hover,
.home_hero .hero-cta-primary.btn.bbtn:focus-visible,
.home_hero .hero-banner-cta-group .hero-cta-primary.btn.bbtn:hover,
.home_hero .hero-banner-cta-group .hero-cta-primary.btn.bbtn:focus-visible,
.home_hero a.hero-cta-primary.vector-banner-cta.btn.bbtn:hover,
.home_hero a.hero-cta-primary.vector-banner-cta.btn.bbtn:focus-visible,
.home_hero a.btn-outline-yellow.vector-banner-cta.btn.bbtn:hover,
.home_hero a.btn-outline-yellow.vector-banner-cta.btn.bbtn:focus-visible,
.hero-cta-primary:hover,
.hero-cta-primary:focus-visible {
    color: #050505 !important;
    border-color: #fff !important;
    background: #fff !important;
    background-color: #fff !important;
    filter: none !important;
    box-shadow: none !important;
}

.hero-cta-secondary,
.hero-banner-cta-group .hero-cta-secondary,
.hero-banner-cta-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.55) !important;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.28) !important;
    color: #fff !important;
    font-family: "P-SemiBold", "Poppins", sans-serif;
    font-size: clamp(13px, 1vw, 15px) !important;
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
    box-shadow: none;
    filter: none;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.home_hero .hero-cta-secondary.btn.bbtn:hover,
.home_hero .hero-cta-secondary.btn.bbtn:focus-visible,
.home_hero .hero-banner-cta-explore.btn.bbtn:hover,
.home_hero .hero-banner-cta-explore.btn.bbtn:focus-visible,
.hero-cta-secondary:hover,
.hero-cta-secondary:focus-visible,
.hero-banner-cta-explore:hover,
.hero-banner-cta-explore:focus-visible {
    color: #050505 !important;
    border-color: var(--hero-accent) !important;
    background: var(--hero-accent) !important;
    background-color: var(--hero-accent) !important;
    filter: none !important;
    box-shadow: none !important;
}



.hero-banner-overlay--patches .hero-banner-heading,
.hero-banner-overlay--digitizing .hero-banner-heading {
    margin-top: clamp(16px, 3.5vh, 40px);
}

.hero-banner-overlay--patches .hero-banner-title,
.hero-banner-overlay--digitizing .hero-banner-title {
    margin-bottom: 8px;
}

.vector-feature-strip,
.hero-banner-feature-card,
.hero-banner-feature-strip,
.hero-banner-trust-strip,
.patches-customer-strip,
.digitizing-customer-strip,
.vector-customer-strip {
    border-color: var(--hero-border-soft) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28) !important;
}

.vector-feature-item,
.hero-banner-strip-item {
    border-right-color: var(--hero-border-soft) !important;
}

.hero-banner-subtitle span,
.hero-banner-strip-icon {
    color: inherit;
}

.hero-banner-icon,
.vector-feature-icon {
    color: inherit;
    background: transparent;
}

.hero-banner-icon img,
.vector-feature-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-banner-card-label {
    color: rgba(255, 255, 255, 0.78);
}

.hero-banner-card-value {
    color: rgba(255, 255, 255, 0.96);
}

.vector-strip-stars,
.patches-strip-stars,
.digitizing-strip-stars {
    color: var(--hero-star);
}

.patches-customer-strip strong,
.digitizing-customer-strip strong,
.vector-customer-strip strong {
    color: #fff;
    font-weight: 700;
}

.hero-trust-highlight {
    color: var(--hero-accent);
    white-space: nowrap;
}

.hero-trust-plus {
    color: var(--hero-accent);
    white-space: pre;
}

.patches-customer-strip strong span:not(.hero-trust-highlight),
.digitizing-customer-strip strong span:not(.hero-trust-highlight),
.vector-customer-strip strong span:not(.hero-trust-highlight) {
    color: inherit;
}

@media (min-width: 768px) {
    .vector-banner-proof {
        width: min(720px, 70vw);
    }

    .vector-feature-strip {
        min-height: 72px;
        padding: 12px 16px;
        bottom: 0;
    }

    .vector-feature-item {
        padding: 0 clamp(10px, 1.1vw, 16px);
    }

    .vector-feature-icon {
        width: clamp(28px, 2.6vw, 36px);
        height: clamp(28px, 2.6vw, 36px);
        font-size: 0;
    }

    .vector-feature-text {
        font-size: clamp(12px, 1.05vw, 16px);
    }

    .vector-customer-strip {
        bottom: -4px;
    }
}


.hero-banner-feature-grid--digitizing-top .hero-banner-feature-card {
    min-height: 68px;
    padding: 8px 12px;
    gap: 9px;
}

.hero-banner-feature-grid--digitizing-top .hero-banner-icon {
    width: 30px;
    height: 30px;
}

/* Wide desktop only: vertical quote pill on the right edge */
@media (min-width: 1500px) {
    .teg-global-fabs .hero-fab-btn--quote {
        width: 40px;
        min-width: 40px;
        padding: 13px 5px;
        border: 1px solid var(--hero-accent);
        background: var(--hero-accent);
        color: var(--hero-accent-text);
        font-size: 14px;
        letter-spacing: .14em;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.32);
    }

    .teg-global-fabs .hero-fab-btn--quote:hover,
    .teg-global-fabs .hero-fab-btn--quote:focus-visible {
        border-color: #fff;
        background: #fff;
        color: #050505;
    }
}

@media (max-width: 1499px) and (min-width: 768px) {
    .teg-global-fabs .hero-fab-btn--quote,
    .teg-global-fabs .hero-fab-btn--quote.hero-fab-btn--quote {
        border: 1px solid var(--hero-accent);
        background: var(--hero-accent);
        color: var(--hero-accent-text);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
    }

    .teg-global-fabs .hero-fab-btn--quote:hover,
    .teg-global-fabs .hero-fab-btn--quote:focus-visible {
        border-color: #fff;
        background: #fff;
        color: #050505;
        transform: translateY(-2px);
    }

}

.main_home .hero-arrow:hover {
    border-color: #fff;
    background: var(--hero-accent);
    color: var(--hero-accent-text);
}

.banner_hero[style*="assets/img/hero/about-banner.webp"]::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.28) 100%);
    z-index: 0;
    pointer-events: none;
}

.banner_hero[style*="assets/img/hero/about-banner.webp"] .container {
    position: relative;
    z-index: 1;
}

.hero-banner-feature-grid--row .hero-banner-icon {
    width: 45px;
    height: 45px;
    font-size: 0;
}

.hero-banner-feature-grid--row .hero-banner-feature-card {
    min-height: 72px;
    padding: 9px 6px;
}

.hero-banner-proof--patches .hero-banner-strip-item,
.hero-banner-proof--digitizing .hero-banner-strip-item {
    border-color: var(--hero-border-soft) !important;
}

@media (max-width: 767px) {
    .hero-banner-cta-group {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
    }

    .hero-banner-cta-group .hero-cta-primary,
    .hero-banner-cta-group .hero-cta-secondary {
        flex: 1 1 calc(50% - 3px);
        width: auto;
        max-width: none;
    }
}

/* Hero banners: unified flow — heading → CTAs → features/bullets */
.hero-banner-overlay--patches,
.hero-banner-overlay--digitizing,
.hero-banner-overlay--vector {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(12px, 1.4vw, 18px);
}

.hero-banner-overlay--patches .hero-banner-heading,
.hero-banner-overlay--digitizing .hero-banner-heading {
    margin-top: clamp(16px, 3.5vh, 40px);
    margin-bottom: 0;
}

.hero-banner-overlay--patches .hero-banner-cta-group,
.hero-banner-overlay--digitizing .hero-banner-cta-group,
.home_hero--vector .hero-banner-cta-group {
    margin-top: 0;
    margin-bottom: 0;
}

.hero-banner-overlay--patches .hero-banner-feature-grid--row,
.hero-banner-overlay--digitizing .hero-banner-feature-grid--digitizing-top,
.hero-banner-overlay--vector .hero-banner-feature-grid--vector,
.home_hero--vector .vector-banner-bullets {
    margin-top: 0;
}

.home_hero--vector .vector-banner-title {
    margin-bottom: 0;
}

.home_hero--vector .vector-banner-bullets {
    margin-bottom: 0;
    padding: 0;
}

/* Vector: bullets after CTAs */
@media (min-width: 992px) {
    .home_hero--vector .hero-banner-overlay--vector {
        width: min(920px, 62vw);
        max-width: 920px;
    }

    .home_hero--vector .vector-banner-bullets {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-start;
        gap: clamp(14px, 1.6vw, 26px);
        max-width: 100%;
    }

    .home_hero--vector .vector-banner-bullets li {
        flex: 1 1 0;
        min-width: 0;
        gap: 7px;
        font-size: clamp(12.5px, 1.92vw, 19px);
        line-height: 1.2;
        letter-spacing: -.015em;
    }

    .home_hero--vector .vector-banner-bullets li > span:last-child {
        display: block;
        min-width: 0;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .home_hero--vector .vector-bullet-icon {
        flex: 0 0 auto;
        font-size: clamp(15px, 1.15vw, 18px);
    }

    .home_hero--vector .hero-banner-feature-grid--vector {
        width: 100%;
        max-width: 650px;
        align-self: flex-start;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .home_hero--vector .vector-banner-bullets li {
        font-size: clamp(14px, 0.88vw, 14.5px);
    }

    .home_hero--vector .vector-banner-bullets {
        gap: clamp(12px, 1.2vw, 20px);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home_hero--vector .hero-banner-overlay--vector {
        max-width: min(640px, 62vw);
    }

    .home_hero--vector .vector-banner-bullets li {
        font-size: clamp(11.5px, 1.05vw, 13.5px);
        gap: 6px;
    }

    .home_hero--vector .vector-banner-bullets {
        gap: clamp(10px, 1vw, 16px);
    }

}

@media (max-width: 991px) {
    .home_hero--vector .vector-banner-bullets {
        gap: 14px;
    }

    .home_hero--vector .vector-banner-bullets li {
        font-size: clamp(13px, 1.4vw, 16px);
    }

    .home_hero--vector .vector-banner-bullets li > span:last-child {
        white-space: normal;
    }
}

@media (max-width: 767px) {
    .home_hero--vector .hero-banner-overlay--vector {
        align-items: stretch;
        padding-bottom: 0;
        text-align: center !important;
    }

    .home_hero--vector .hero-banner-overlay--vector.text-start {
        text-align: center !important;
    }

    .home_hero--vector .hero-banner-heading,
    .home_hero--vector .vector-banner-kicker,
    .home_hero--vector .vector-banner-title {
        display: block;
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center !important;
    }

    .home_hero--vector .hero-banner-feature-grid--vector {
        width: 100% !important;
        max-width: 100% !important;
        align-self: stretch;
    }

    .home_hero--vector .vector-banner-bullets {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .home_hero--vector .vector-banner-bullets li {
        justify-content: center;
        max-width: 100%;
        text-align: center;
    }

    .home_hero--vector .vector-banner-bullets li > span:last-child {
        white-space: normal;
        text-align: center;
    }

    .home_hero--vector .hero-banner-cta-group {
        justify-content: center;
        width: 100%;
    }

    .home_hero--vector .vector-customer-strip {
        width: 100%;
        max-width: none;
        align-self: stretch;
    }
}

/* Patches banner: label + value stack inside each card */
.hero-banner-overlay--patches .hero-banner-feature-grid--row .hero-banner-card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (min-width: 768px) {
    .hero-banner-overlay--patches .hero-banner-feature-grid--row .hero-banner-card-label,
    .hero-banner-overlay--patches .hero-banner-feature-grid--row .hero-banner-card-value {
        white-space: normal;
        line-height: 1.15;
    }

    .hero-banner-overlay--patches .hero-banner-feature-grid--row .hero-banner-card-value {
        white-space: nowrap;
    }
}

/* Homepage hero mobile: larger feature boxes, text stays inside */
@media (max-width: 767px) {
    .home_hero .hero-banner-feature-grid,
    .home_hero .hero-banner-feature-grid--row,
    .home_hero .hero-banner-feature-grid--digitizing-top {
        gap: 10px;
    }

    .home_hero .hero-banner-feature-grid--row .hero-banner-card-label,
    .home_hero .hero-banner-feature-grid--row .hero-banner-card-value {
        white-space: normal;
        overflow: hidden;
        text-overflow: clip;
        word-break: break-word;
    }

    .hero-banner-overlay--patches .hero-banner-feature-grid--row .hero-banner-feature-card,
    .hero-banner-overlay--patches .hero-banner-feature-grid--row .hero-banner-card-text,
    .hero-banner-overlay--patches .hero-banner-feature-grid--row .hero-banner-card-label,
    .hero-banner-overlay--patches .hero-banner-feature-grid--row .hero-banner-card-value {
        overflow: hidden;
    }

    .hero-banner-overlay--patches .hero-banner-feature-grid--row .hero-banner-card-value {
        white-space: normal;
    }
}

@media (max-width: 420px) {
    .home_hero .hero-banner-feature-card,
    .home_hero .hero-banner-feature-grid--row .hero-banner-feature-card,
    .home_hero .hero-banner-feature-grid--digitizing-top .hero-banner-feature-card {
        min-height: 86px;
        padding: 12px 10px;
    }

    .home_hero .hero-banner-card-value {
        font-size: 11.5px;
    }
}

/* Homepage slider: enforce 1900×900 frame on all banner slides (desktop/tablet) */
@media (min-width: 768px) {
    .home_hero.home_hero--vector,
    .home_hero.home_hero--patches,
    .home_hero.home_hero--digitizing {
        width: 100%;
        aspect-ratio: 1900 / 900;
        max-height: 900px;
        min-height: 0;
        height: auto;
    }

    .home_hero.home_hero--vector .hero-bg,
    .home_hero.home_hero--patches .hero-bg,
    .home_hero.home_hero--digitizing .hero-bg {
        object-fit: cover;
        object-position: center 42%;
    }
}

/* ------------------------------------------------------------------ */
/* Contact Us page                                                    */
/* ------------------------------------------------------------------ */

.contact_page_v2 {
    padding-top: clamp(20px, 3vw, 40px);
    padding-bottom: clamp(24px, 3vw, 36px);
}

.contact_page_v2 .title_sec {
    margin-bottom: clamp(28px, 3.5vw, 40px);
}

.contact-split-row {
    margin-top: 0;
}

.contact-split-row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.contact-split-media {
    flex: 1;
    height: 100%;
    min-height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(1, 43, 80, 0.1);
}

.contact-split-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.contact-form-card {
    flex: 1;
    padding: clamp(22px, 2.5vw, 32px);
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(1, 43, 80, 0.08);
    box-shadow: 0 12px 32px rgba(1, 43, 80, 0.08);
}

.contact_page_v2.contact_us .contact-form-card label {
    color: #5c6370;
    font-size: 16px;
    padding: 0 0 6px;
}

.contact_page_v2.contact_us .contact-form-card .form-control {
    color: #1d1e27;
    font-size: 16px;
    padding: 10px 12px;
    border: 1px solid #dde3ea;
    border-radius: 6px;
    background-color: #fff;
}

.contact_page_v2.contact_us .contact-form-card .form-control:focus {
    border-color: var(--c2);
    box-shadow: 0 0 0 2px rgba(255, 167, 1, 0.2);
}

.contact_page_v2.contact_us .contact-form-card textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.contact_page_v2.contact_us .contact-form-card .form-group {
    margin-bottom: 16px;
}

.contact_page_v2.contact_us .contact-form-card .form-group .bbtn {
    margin-top: 12px;
}

.contact-features {
    padding: 0 0 clamp(24px, 3vw, 36px);
    background: #fff;
}

.contact_us.contact_page + .contact-features {
    margin-top: -8px;
}

.contact-feature-card {
    height: 100%;
    padding: 26px 22px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid rgba(1, 43, 80, 0.08);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 167, 1, 0.45);
    box-shadow: 0 14px 32px rgba(1, 43, 80, 0.1);
}

.contact-feature-card .feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(1, 43, 80, 0.95), #024a7a);
    color: var(--c2);
    font-size: 22px;
}

.contact-feature-card h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--c1);
    font-family: "P-SemiBold", sans-serif;
    letter-spacing: 0.02em;
}

.contact-feature-card p {
    margin: 0;
    color: #5c6370;
    font-family: "P-Regular", sans-serif;
    font-size: 14px;
    line-height: 1.55;
}

.contact-feature-card p a {
    color: #5c6370;
    text-decoration: none;
}

.contact-feature-card p a:hover {
    color: var(--c2);
}

/* Full-width map band (edge-to-edge, like inner-page banner) */
.contact_map_banner {
    position: relative;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    overflow: hidden;
    line-height: 0;
}

.contact_map_banner iframe {
    display: block;
    width: 100%;
    height: clamp(300px, 38vw, 480px);
    border: 0;
}

@media (min-width: 992px) {
    .contact-split-row > .col-lg-6:first-child {
        order: 1;
    }

    .contact-split-row > .col-lg-6:last-child {
        order: 2;
    }
}

@media (max-width: 991.98px) {
    .contact-split-media img {
        min-height: 280px;
    }
}

@media (max-width: 575.98px) {
    .contact-form-card {
        padding: 20px 16px;
    }

    .contact-feature-card {
        padding: 22px 18px;
    }

    .contact_map_banner iframe {
        height: clamp(260px, 50vw, 360px);
    }
}
