.ocf-hero {
    --hero-heading-size: var(--font-h1-size);
    --hero-heading-color: var(--ocf-heading-alt);
    --hero-intro-size: var(--font-h3-size);
    --hero-intro-color: var(--ocf-body-alt);
    --hero-rating-color: var(--ocf-heading-alt);
    --hero-check-color: var(--ocf-primary);
    --hero-check-mark-color: var(--ocf-primary-contrast, var(--ocf-bg));
    --hero-gradient: var(--gradient-media-dark);
    --hero-overlay-opacity: max(0.88, var(--media-overlay-opacity));
    position: relative;
    min-height: min(900px, calc(100vh - 4.5rem));
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--ocf-bg);
}

.ocf-hero__media,
.ocf-hero__shade {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ocf-hero__media {
    opacity: 1;
}

.ocf-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ocf-hero__shade {
    background: var(--section-gradient, var(--hero-gradient));
    opacity: var(--section-overlay-opacity, var(--hero-overlay-opacity));
}

.ocf-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 520px);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    padding-block: var(--section-pad);
}

.ocf-hero .ocf-hero__grid {
    padding-block: clamp(6rem, 12vh, 8.5rem) clamp(5.5rem, 10vh, 7.5rem);
}

.ocf-hero__content { max-width: 720px; }
.ocf-hero__rating { color: var(--hero-rating-color); }
.ocf-hero__headline {
    margin: 0;
    color: var(--field-color, var(--hero-heading-color));
    font-family: var(--ocf-font-heading), system-ui, sans-serif;
    font-size: var(--field-font-size, var(--hero-heading-size));
    font-weight: var(--field-font-weight, var(--font-weight-bold));
    font-style: var(--field-font-style, normal);
    line-height: 1.08;
    letter-spacing: 0;
    text-decoration: var(--field-text-decoration, none);
}
.ocf-hero__intro { color: var(--field-color, var(--hero-intro-color)); }
.ocf-hero__rating {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    font-size: var(--font-label-size);
    line-height: 1;
}
.ocf-hero__stars {
    display: inline-flex;
    align-items: center;
    gap: 0.125rem;
    color: #FBBF24;
    font-size: 1.18em;
    line-height: 1;
}
.ocf-hero__stars svg {
    display: block;
    width: 1em;
    height: 1em;
}
.ocf-hero__star {
    position: relative;
    display: block;
    width: 1em;
    height: 1em;
    color: inherit;
}
.ocf-hero__star-empty {
    opacity: .24;
}
.ocf-hero__star-fill {
    position: absolute;
    inset: 0;
    width: 1em;
    overflow: hidden;
    opacity: 1;
    clip-path: inset(0 calc(100% - var(--star-fill, 0%)) 0 0);
}
.ocf-hero__headline span { display: block; }
.ocf-hero__intro {
    max-width: 58ch;
    margin: 1.25rem 0 0;
    color: var(--field-color, var(--hero-intro-color));
    font-size: var(--field-font-size, var(--hero-intro-size));
}
.ocf-hero__checks {
    display: grid;
    gap: 0.7rem;
    max-width: 58ch;
    margin: 1.35rem 0 0;
    padding: 0;
    list-style: none;
    color: var(--hero-intro-color);
    font-size: var(--font-body-size);
    font-weight: var(--ocf-font-body-weight, var(--font-weight-medium));
}
.ocf-hero__checks li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.ocf-hero__check-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 1.45rem;
    height: 1.45rem;
    min-width: 1.45rem;
    max-width: 1.45rem;
    max-height: 1.45rem;
    border-radius: 50%;
    background: var(--hero-check-color);
    color: var(--hero-check-mark-color);
    box-shadow: 0 0.25rem 0.75rem color-mix(in srgb, var(--hero-check-color) 22%, transparent);
    overflow: hidden;
}
.ocf-hero__check-icon svg {
    display: block;
    width: 0.82rem !important;
    height: 0.82rem !important;
    max-width: 0.82rem;
    max-height: 0.82rem;
    flex: 0 0 auto;
}

.ocf-hero__checks li > span:not(.ocf-hero__check-icon) {
    color: var(--hero-intro-color);
}
.ocf-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.ocf-hero__form { width: 100%; align-self: start; margin-top: 0.25rem; }

.ocf-hero__scroll-cue {
    display: none;
}

.ocf-hero__rating--google {
    margin: 0 0 1rem;
    gap: 0.75rem;
    color: var(--ocf-heading);
}

.ocf-hero__google-icon {
    inline-size: 1.35rem;
    block-size: 1.35rem;
}

.ocf-hero__secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 2.75rem;
    color: var(--ocf-heading);
    border-bottom: 1px solid currentColor;
    font-size: var(--font-label-size);
    font-weight: var(--font-weight-semibold);
    line-height: 1;
}

.ocf-hero[data-ocf-tone="light"] {
    --hero-heading-color: var(--ocf-heading);
    --hero-intro-color: var(--ocf-body);
    --hero-rating-color: var(--ocf-heading);
    background: var(--ocf-bg);
    color: var(--ocf-body);
}

@media (max-width: 900px){
    .ocf-hero { min-height: auto; }
    .ocf-hero__grid { grid-template-columns: 1fr; }
    .ocf-hero .ocf-hero__grid {
        padding-block: clamp(3.5rem, 10vw, 5rem);
    }

}

/* OCF_AGENT_BLOCK:pipewerx-home-hero-layout START */
/* Pipewerx homepage hero inspired by the supplied layout reference. */
body.home #hero.ocf-hero.ocf-hero--image-split {
    min-height: min(54rem, calc(100svh - 5rem));
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    background: #07111f;
    color: #fff;
}

body.home #hero.ocf-hero--image-split .ocf-hero__grid {
    position: static;
    display: flex;
    width: min(calc(100% - (var(--container-pad) * 2)), var(--container-max));
    max-width: var(--container-max);
    min-height: inherit;
    align-items: stretch;
    padding: 0;
    margin-inline: auto;
}

body.home #hero.ocf-hero--image-split .ocf-hero__visual {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    aspect-ratio: auto;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #07111f;
    box-shadow: none;
}

body.home #hero.ocf-hero--image-split .ocf-hero__visual::after,
body.home #hero.ocf-hero--image-split .ocf-hero__visual.ocf-primary-wash-overlay::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 13, 24, 0.96) 0%, rgba(4, 13, 24, 0.88) 25%, rgba(4, 13, 24, 0.52) 43%, rgba(4, 13, 24, 0.08) 64%, transparent 78%);
    content: '';
    pointer-events: none;
}

body.home #hero.ocf-hero--image-split .ocf-hero__visual img {
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(1.04) contrast(1.02);
}

body.home #hero.ocf-hero--image-split .ocf-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(39rem, 49vw);
    min-height: inherit;
    max-width: 39rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(5.5rem, 10vh, 8rem) 0 clamp(4rem, 8vh, 6rem);
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #fff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

body.home #hero.ocf-hero--image-split .ocf-hero__rating,
body.home #hero.ocf-hero--image-split .ocf-hero__eyebrow,
body.home #hero.ocf-hero--image-split .ocf-hero__scroll-cue,
body.home #hero.ocf-hero--image-split .ocf-hero__actions .btn-primary {
    display: none;
}

body.home #hero.ocf-hero--image-split .ocf-hero__headline {
    order: 1;
    max-width: 9ch;
    margin: 0;
    color: #fff;
    font-size: clamp(3.25rem, 5.3vw, 5.75rem);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: -0.045em;
    text-transform: uppercase;
    text-shadow: 0 0.2rem 1.4rem rgba(0, 0, 0, 0.28);
}

body.home #hero.ocf-hero--image-split .ocf-hero__headline span {
    display: block;
    white-space: nowrap;
}

body.home #hero.ocf-hero--image-split .ocf-hero__headline span:nth-child(2) {
    color: #149cff;
}

body.home #hero.ocf-hero--image-split .ocf-hero__headline::after {
    display: block;
    width: 9rem;
    height: 0.35rem;
    margin-top: 1.25rem;
    border-radius: 999px;
    background: #76e629;
    content: '';
}

body.home #hero.ocf-hero--image-split .ocf-hero__intro {
    order: 2;
    max-width: 100%;
    margin: 1.2rem 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(0.88rem, 1.05vw, 1rem);
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

body.home #hero.ocf-hero--image-split .ocf-hero__actions {
    order: 3;
    display: flex;
    width: 100%;
    align-items: center;
    margin-top: clamp(1.75rem, 3.5vh, 2.5rem);
}

body.home #hero.ocf-hero--image-split .ocf-hero__phone-callout {
    display: block;
    min-height: 0;
    padding: 0;
    border: 0;
}

body.home #hero.ocf-hero--image-split .ocf-hero__phone-label {
    display: none;
}

body.home #hero.ocf-hero--image-split .ocf-hero__phone,
body.home #hero.ocf-hero--image-split .ocf-hero__phone:hover {
    display: inline-flex;
    min-height: 4.6rem;
    align-items: center;
    justify-content: center;
    padding: 0.95rem clamp(1.5rem, 3vw, 2.4rem);
    border-radius: 1.1rem;
    background: #118ff0;
    box-shadow: 0 0.9rem 2rem rgba(0, 76, 154, 0.3);
    color: #fff;
    font-size: clamp(1.15rem, 1.8vw, 1.45rem);
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: background-color 180ms ease, transform 180ms ease;
}

body.home #hero.ocf-hero--image-split .ocf-hero__phone::before {
    margin-right: 0.55rem;
    content: 'Call';
}

body.home #hero.ocf-hero--image-split .ocf-hero__phone:hover {
    background: #087fd8;
    transform: translateY(-2px);
}

body.home #hero.ocf-hero--image-split .ocf-hero__checks {
    order: 4;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    max-width: 100%;
    margin: 1.35rem 0 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(0.78rem, 1vw, 0.92rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body.home #hero.ocf-hero--image-split .ocf-hero__checks li {
    gap: 0.45rem;
}

body.home #hero.ocf-hero--image-split .ocf-hero__checks li:not(:last-child)::after {
    color: #76e629;
    content: '•';
}

body.home #hero.ocf-hero--image-split .ocf-hero__check-icon {
    display: none;
}

body.home #hero.ocf-hero--image-split .ocf-hero__checks li > span:not(.ocf-hero__check-icon) {
    color: inherit;
}

@media (max-width: 980px) {
    body.home #hero.ocf-hero.ocf-hero--image-split {
        min-height: clamp(42rem, 88svh, 50rem);
        background: #07111f;
    }

    body.home #hero.ocf-hero--image-split .ocf-hero__grid {
        position: static;
        display: flex;
        width: calc(100% - (var(--container-pad) * 2));
        min-height: inherit;
        flex-direction: row;
        align-items: stretch;
        margin-inline: auto;
    }

    body.home #hero.ocf-hero--image-split .ocf-hero__visual {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
        border-radius: 0;
    }

    body.home #hero.ocf-hero--image-split .ocf-hero__visual::after,
    body.home #hero.ocf-hero--image-split .ocf-hero__visual.ocf-primary-wash-overlay::after {
        background: linear-gradient(90deg, rgba(4, 13, 24, 0.95) 0%, rgba(4, 13, 24, 0.78) 48%, rgba(4, 13, 24, 0.3) 76%, rgba(4, 13, 24, 0.16) 100%);
    }

    body.home #hero.ocf-hero--image-split .ocf-hero__visual img {
        object-position: 62% center;
        border-radius: 0;
    }

    body.home #hero.ocf-hero--image-split .ocf-hero__content {
        width: min(35rem, 78vw);
        min-height: inherit;
        max-width: 35rem;
        justify-content: center;
        padding: 6rem 0 3.5rem;
        background: transparent;
    }
}

@media (max-width: 600px) {
    body.home #hero.ocf-hero.ocf-hero--image-split {
        min-height: 43rem;
    }

    body.home #hero.ocf-hero--image-split .ocf-hero__grid {
        width: calc(100% - 2rem);
    }

    body.home #hero.ocf-hero--image-split .ocf-hero__visual img {
        object-position: 66% center;
    }

    body.home #hero.ocf-hero--image-split .ocf-hero__visual::after,
    body.home #hero.ocf-hero--image-split .ocf-hero__visual.ocf-primary-wash-overlay::after {
        background: linear-gradient(90deg, rgba(4, 13, 24, 0.97) 0%, rgba(4, 13, 24, 0.86) 60%, rgba(4, 13, 24, 0.48) 100%);
    }

    body.home #hero.ocf-hero--image-split .ocf-hero__content {
        width: 100%;
        max-width: 100%;
        justify-content: flex-end;
        padding: 6rem 0 2.4rem;
    }

    body.home #hero.ocf-hero--image-split .ocf-hero__headline {
        max-width: 9ch;
        font-size: clamp(2.65rem, 13vw, 3.6rem);
    }

    body.home #hero.ocf-hero--image-split .ocf-hero__intro {
        max-width: 29rem;
        font-size: 0.82rem;
    }

    body.home #hero.ocf-hero--image-split .ocf-hero__phone,
    body.home #hero.ocf-hero--image-split .ocf-hero__phone:hover {
        min-height: 4.15rem;
        padding-inline: 1.4rem;
        border-radius: 0.9rem;
        font-size: 1.12rem;
    }

    body.home #hero.ocf-hero--image-split .ocf-hero__checks {
        gap: 0.35rem;
        font-size: 0.72rem;
        letter-spacing: 0.11em;
    }
}
/* OCF_AGENT_BLOCK:pipewerx-home-hero-layout END */
