/* =========================
   1) DESIGN TOKENS
========================= */
:root {
    /* Brand — matched to logo exactly */
    --primary-main: #1d1d1d;      /* Logo dark bg — hero overlay, dark sections */
    --primary-accent: #1a335c;    /* Logo lime green — highlights, borders, icons */
    --logo-dark: #1d1d1d;         /* Header & footer background */
    --logo-green: #1a335c;        /* Logo lime green */
    --dark-text: #1d1d1d;
    --main-text: #FFFFFF;
    --border-color: rgba(255, 255, 255, 0.25);

    /* CTA Buttons — logo lime green */
    --cta-orange: #c51a30;
    
    /* Typography */
    --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --font-heading: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

    /* Back-compat / header usage */
    --font-main: var(--font-heading);

    /* Layout */
    --container: 1320px;

    /* Header (set by JS) */
    --header-h: 0px;
}

/* =========================
   2) RESET / BASE
========================= */
html {
    scroll-padding-top: var(--header-h);
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    color: var(--main-text);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

/* Prevent accidental overflow from sections using 100vw etc. */
body {
    overflow-x: clip;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.1px;
    color: var(--dark-text);
}

/* =========================
   3) HEADER
   - Sticky on desktop, fixed on mobile
   - CTA button uses 2 lines (no overlap)
========================= */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--main-text);
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100px;
    gap: 24px;
}

.header-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin-left: 0;
    padding: 0;
}

.header-logo img {
    height: 120px;
    display: block;
    border-radius: 8px;
    padding: 10px;
}

.header-cta {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

/* CTA button (tel link) */
.btn-solid {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    font-family: var(--font-main);
    border-radius: 999px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    background: var(--cta-orange);
    color: var(--dark-text);
    padding: 14px 32px;
    gap: 2px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.18s ease, filter 0.18s ease;
}

.btn-solid:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.header-btn-line1 {
    display: block;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: .10em;
    font-size: clamp(15px, 1.4vw, 36px);
    text-transform: uppercase;
    color: var(--main-text);
}

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

.call-sub {
    display: block;
    margin-top: 8px;
    font-size: 30px;
    color: var(--primary-accent);
    font-family: var(--font-main);
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* =========================
   MOBILE HEADER
========================= */
@media (max-width: 992px) {
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
    }

    body {
        padding-top: var(--header-h);
    }

    .header-inner {
        padding: 10px 16px;
        min-height: 80px;
        gap: 12px;
    }

    .header-nav {
        display: none;
    }

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

    .btn-outline {
        display: none;
    }

    .btn-solid {
        border-radius: 12px;
        padding: 10px 16px;
        white-space: normal;
        text-align: center;
    }

    .header-btn-line1 {
        font-size: 19px;
        letter-spacing: 0.06em;
    }

    .call-sub {
        display: block;
        font-size: 20px;
        margin-top: 4px;
    }
}

@media (max-width: 480px) {
    .header-logo img {
        height: 84px;
    }

    .btn-solid {
        padding: 8px 12px;
    }

    .header-btn-line1 {
        font-size: 19px;
    }

    .call-sub {
        display: block;
        font-size: 21px;
        margin-top: 3px;
    }}

/* =========================================================
   4) HERO (from hero.css)
========================================================= */

.hero {
    position: relative;
    background: #f4f9ff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: auto;
    height: auto;
}

/* LEFT */
.hero-left {
    position: relative;
    overflow: hidden;
    background: url("../images/hero-city.webp") center / cover no-repeat;
}

/* Dark green overlay to keep text readable */
.hero-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(17, 17, 17, 0.8) 0%, rgba(42, 15, 15, 0.75) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-left::after {
    content: "";
    position: absolute;
    inset: 0;
}

.hero-left-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 44px 36px 44px 44px;
}

/* Mobile-only location pill (hidden on desktop) */
.hero-loc {
    display: none;
    justify-content: center;
    margin-bottom: 16px;
}

.hero-loc-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 18px;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.hero-loc-icon {
    width: 14px;
    height: 14px;
    display: block;
    filter: brightness(0) invert(1);
}

.hero-copy {
    width: 100%;
    max-width: 800px;
    text-align: left;
    color: #fff;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--cta-orange);
    background: rgba(177, 46, 46, 0.12);
    border: 1px solid rgba(177, 46, 46, 0.3);
    border-radius: 4px;
    padding: 6px 14px;
    margin-bottom: 18px;
    opacity: 1;
}

.hero-title {
    margin: 0 0 18px;
    font-weight: 800;
    line-height: 1.1;
    font-size: clamp(24px, 2.5vw, 36px);
    font-family: var(--font-heading);
    color: var(--main-text);
    letter-spacing: -0.3px;
}

/* Label above bullet list */
.hero-trust-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    margin: 0 0 12px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--primary-accent);
    color: #fff;
    border: none;
    cursor: default;
    box-shadow: 0 4px 14px rgba(177, 46, 46, 0.3);
    width: min(100%, 380px);
}

/* =========================
   HERO ICON LIST (under title) — Q&A format
========================= */
.hero-points {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 540px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.hero-point {
    position: relative;
    padding: 14px 16px 14px 58px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255,255,255,0.04);
    transition: background 0.15s;
    margin-bottom: 0;
}

.hero-point:last-child {
    border-bottom: none;
}

.hero-point:hover {
    background: rgba(255, 255, 255, 0.07);
}

.hero-point::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(177, 46, 46, 0.18);
    border: 1px solid rgba(177, 46, 46, 0.35);
    box-shadow: none;
    backdrop-filter: none;
}

.hero-point>.icon-list__icon {
    position: absolute !important;
    left: 21px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px !important;
    height: 16px !important;
    margin: 0 !important;
    display: block;
    object-fit: contain;
}

.icon-list__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.icon-list__q {
    display: block;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.3;
}

.icon-list__a {
    display: block;
    font-size: 17px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    line-height: 1.35;
}

.hero-call {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    background: var(--cta-orange);
    color: #fff;
    border-radius: 10px;
    padding: 16px 28px;
    box-shadow: 0 6px 24px rgba(177, 46, 46, 0.285);
    border: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(177, 46, 46, 0.45);
}

.hero-call-top {
    display: block;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 18px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    margin-bottom: 4px;
    text-align: center;
}

.hero-call-main {
    display: block;
    font-weight: 900;
    font-size: 32px;
    font-family: var(--font-heading);
    line-height: 1;
    text-align: center;
}

/* RIGHT */
.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(58, 26, 26, 0.35) 0%, transparent 30%);
    pointer-events: none;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: 100% center;
}

/* =========================
   Floating Form (desktop)
========================= */
.hero-form-wrap {
    position: relative;
    z-index: 5;
    width: min(1420px, calc(100% - 48px));
    margin: -16px auto 0;
    padding-bottom: 32px;
}

.hero-form-card {
    background: var(--primary-main);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    padding: 20px 24px 16px;
}

.hero-form-head {
    text-align: center;
    margin-bottom: 14px;
}

.hero-form-title {
    font-weight: 900;
    font-size: 28px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    color: var(--main-text);
    line-height: 1.1;
    text-transform: uppercase;
}

/* subtitle like your 2nd reference (not spaced-out) */
.hero-form-sub {
    letter-spacing: 0 !important;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin-top: 6px;
    font-size: 24px;
    font-family: var(--font-heading);
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================
   FORM FIELDS BASE
========================= */
.field {
    min-width: 0;
}

.field label {
    display: block;
    font-size: 17px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    color: var(--main-text);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.field input,
.field select {
    width: 100%;
    height: 54px;
    border: 0;
    outline: 0;
    background: #f3f3f3;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 18px;
    font-family: var(--font-heading);
    color: #1b1b1b;
    box-sizing: border-box;
}

/* bootstrap floating select support */
.hero-form-card .form-floating {
    width: 100%;
}

.hero-form-card .form-select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 0;
    background: #f3f3f3;
    border-radius: 8px;
    height: 54px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.hero-form-card .form-floating>label {
    padding: 10px 14px;
    font-size: 17px;
    opacity: 0.7;
}

/* ==========================================================
   ✅ 3-STEP WIZARD LAYOUT (DESKTOP)
========================================================== */

/* grid container: left = fields, right = button */
.hero-steps {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: end;
}

/* steps hidden by default */
.hero-step {
    display: none;
}

/* active step goes to LEFT column */
.hero-step.is-active {
    display: block;
    grid-column: 1;
    grid-row: 1;
}

/* Step 2 spans full width (fields + row2 need space) */
.hero-step.is-active[data-step="2"] {
    grid-column: 1 / -1;
}

/* controls go to RIGHT column (same row) — step 1 only */
.hero-step-controls {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
}

/* When step 2 is active, controls move below as full-width row */
.hero-steps[data-step="2"] {
    grid-template-columns: 1fr;
}

.hero-steps[data-step="2"] .hero-step-controls {
    grid-column: 1;
    grid-row: 2;
    justify-content: center;
}

/* fields grid (Step 1 + Step 2) */
.hero-fields--step {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: end;
}

/* Utility: make a field span the full row in the 2-col grid */
.field--span2 {
    grid-column: 1 / -1;
}

/* STEP 2: 3 fields in 1 row */
.hero-fields--3col {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

/* reCAPTCHA inside modal */
.hero-recaptcha {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
}

.recaptcha-modal__card {
    max-width: 380px !important;
}

.recaptcha-modal__body {
    display: flex;
    justify-content: center;
    padding: 16px 20px 24px;
}

/* Buttons */
.hero-step-btn {
    height: 64px;
    min-width: 240px;
    padding: 0 26px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    background: var(--cta-orange);
    color: #fff;
    font-size: 18px;
}

/* ✅ remove/hide any "back" button */
.hero-step-btn.is-ghost,
.hero-step-btn.back-btn,
#heroBackBtn {
    display: none !important;
}

#heroSubmitBtn {
    display: none;
    /* JS shows on step 3 */
}

/* Note text */
.hero-form-note {
    text-align: center;
    font-size: 18px;
    color: var(--main-text);
    margin-top: 8px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
    .hero {
        margin-bottom: 0;
    }

    .hero-form-wrap {
        margin-top: 0;
        width: 100%;
    }

    .hero-form-card {
        width: 100%;
        box-sizing: border-box;
        border-radius: 0;
        box-shadow: none;
        padding: 22px 16px 18px;
    }

    .hero-steps {
        grid-template-columns: 1fr;
        gap: 14px;
        align-items: stretch;
    }

    .hero-step.is-active {
        grid-column: 1;
        grid-row: auto;
    }

    .hero-step-controls {
        grid-column: 1;
        grid-row: auto;
        justify-content: center;
    }

    .hero-fields--step {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero-fields--3col {
        grid-template-columns: 1fr !important;
    }

    .hero-step-btn {
        width: 100%;
        min-width: 0;
    }

    .hero-recaptcha .g-recaptcha {
        transform: scale(0.88);
        transform-origin: center;
    }
}

/* =========================================
   FIX: Browser Zoom (133%–150%) floating bug
   Trigger when viewport height is short
========================================= */
@media (max-height: 820px) {
    .hero {
        margin-bottom: 0;
    }

    .hero-form-wrap {
        margin-top: 0;
        width: 100%;
    }

    .hero-form-card {
        border-radius: 0;
        box-shadow: none;
        padding: 22px 16px 18px;
    }
}

/* ============================
   HERO IMAGE (premium card)
============================ */
.hero-loc-media {
    display: none;
    width: 100%;
    max-width: 960px;
    margin: 0 auto 30px;
    position: relative;
    isolation: isolate;
    transform: translateZ(0);

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.38),
        0 2px 0 rgba(255, 255, 255, 0.06) inset;
}

.hero-loc-media img {
    width: 100%;
    height: auto;
    max-height: 210px;
    object-fit: cover;
    display: block;
    filter: contrast(1.06) saturate(1.04);
    transform: scale(1.02);
}


.hero-loc-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(120% 80% at 50% 0%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 55%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.28) 100%);
    opacity: 0.95;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.10) inset;
}


/* ============================
   Form Bottom Image (spicy)
============================ */
.hero-form-bottom-media {
    display: none;
    margin-top: 14px;
    height: 240px;
    border-radius: 1px;
    overflow: hidden;
    position: relative;
    isolation: isolate;

    background: url("../images/hero-ac.webp") center / cover no-repeat;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.28),
        0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

@media (max-width: 768px) {
    /* Prevent ANY horizontal overflow */
    .hero {
        overflow: hidden;
        padding-bottom: 0;
        width: 100%;
    }

    .hero::after {
        content: none !important;
        display: none !important;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        width: 100%;
    }

    /* Left panel — clip background, reset all margin/overflow */
    .hero-left {
        overflow: hidden;
        width: 100%;
    }

    .hero-left-inner {
        padding: 0 16px 28px 16px;
        display: block;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    /* Mobile image strip — no 100vw, no transform offset */
    .hero-loc-media {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0;
        position: relative;
        left: auto;
        transform: none;
        border-radius: 0;
        box-shadow: none;
    }

    .hero-loc-media img {
        width: 100%;
        height: 220px;
        max-height: none;
        object-fit: cover;
        object-position: center top;
        transform: none;
        display: block;
    }

    /* Location pill */
    .hero-loc {
        display: flex;
        justify-content: center;
        margin-bottom: 14px;
        margin-top: 16px;
    }

    /* Copy — centered, full width, no overflow */
    .hero-copy {
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .hero-trust-btn {
        display: inline-flex;
        font-size: 19px;
        width: 100%;
        justify-content: center;
        margin-bottom: 12px;
    }

    .hero-kicker {
        display: inline-flex;
        justify-content: center;
        font-size: 16px;
        letter-spacing: 1.5px;
        margin-bottom: 14px;
        white-space: normal;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(20px, 5.5vw, 26px);
        line-height: 1.15;
        margin-bottom: 14px;
        word-break: break-word;
        text-shadow: none;
    }

    /* Bullet list — fully contained */
    .hero-points {
        position: relative;
        padding: 0;
        border-radius: 10px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.12);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        width: 100%;
        max-width: 100%;
        margin: 0 0 18px;
        box-sizing: border-box;
    }

    .hero-points::before {
        display: none;
    }

    .hero-points li {
        margin-top: 0;
    }

    .hero-point {
        position: relative;
        display: flex !important;
        align-items: center;
        padding: 11px 10px 11px 48px;
        text-align: left;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        box-sizing: border-box;
        width: 100%;
    }

    .hero-point:last-child {
        border-bottom: none;
    }

    .hero-point::before {
        content: "";
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 28px;
        height: 28px;
        border-radius: 7px;
        background: rgba(177, 46, 46, 0.18);
        border: 1px solid rgba(177, 46, 46, 0.35);
        box-shadow: none;
        backdrop-filter: none;
    }

    .hero-point > .icon-list__icon {
        position: absolute !important;
        left: 17px;
        top: 50%;
        transform: translateY(-50%);
        width: 14px !important;
        height: 14px !important;
        margin: 0 !important;
        display: block;
        object-fit: contain;
        
    }

    .hero-point > .icon-list__text {
        display: flex;
        flex-direction: column;
        gap: 1px;
        min-width: 0;
        overflow: hidden;
    }

    .icon-list__q {
        font-size: 18px;
        font-weight: 700;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .icon-list__a {
        font-size: 18px;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    /* CTA call button — fully contained */
    .hero-call {
        display: block;
        width: 100%;
        box-sizing: border-box;
        border-radius: 10px;
        padding: 14px 16px;
        box-shadow: 0 6px 20px rgba(177, 46, 46, 0.3);
        text-align: center;
        margin: 0;
    }

    .hero-call-top {
        font-size: 19px;
        letter-spacing: 1.4px;
        opacity: 0.95;
        text-align: center;
    }

    .hero-call-main {
        font-size: 26px;
        line-height: 1.05;
        text-align: center;
    }

    /* Hide right panel and stale bottom image on mobile */
    .hero-right {
        display: none;
    }

    .hero-form-bottom-media {
        display: none;
    }

    /* Form adjustments */
    .hero-form-title {
        font-size: 22px;
    }

    .hero-form-sub {
        font-size: 19px;
    }

    .field label {
        font-size: 18px;
        letter-spacing: 1.6px;
        margin-bottom: 8px;
    }

    .field input,
    .field select {
        height: 56px;
        border-radius: 6px;
        background: #f2f2f2;
        padding: 0 14px;
        font-size: 18px;
    }
}

.mobile-only-br { display: none; }

@media (max-width: 600px) {
  .mobile-only-br { display: inline; }
}
/* =========================================================
   WHY TRUST US 
   ========================================================= */

.why-trust {
    position: relative;
    padding: 40px 0 110px;
    background-color: #eef4fb;

    /* KEEP background image (your swoosh) */
    background-image: url("../images/why-trust-bg.webp");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 2020px auto;
}

.why-inner {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    text-align: center;
}

.why-title {
    font-family: var(--font-heading);
    margin: 0 0 18px;
    font-weight: 900;
    letter-spacing: 0.5px;
    font-size: 48px;
    color: var(--primary-accent);
}

/* Optional subtitle (still safe if you un-comment HTML) */
.why-sub {
    margin: 0 auto 46px;
    max-width: 920px;
    font-size: 20px;
    line-height: 1.5;
    color: rgba(10, 20, 35, 0.8);
    font-family: var(--font-heading);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    align-items: stretch;
    margin: 0 auto 44px;
}

.why-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 40px 28px 34px;
    border: 2px dashed var(--primary-main);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
    overflow: hidden;

    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.why-corner {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 20px;
    height: 20px;
    color: rgba(0, 0, 0, 0.45);
}

.why-corner svg {
    width: 100%;
    height: 100%;
    display: block;
}

.why-big {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 30px;
    line-height: 1;
    color: var(--primary-main);
    margin: 0;
    word-break: keep-all;
    white-space: nowrap;
}

.why-card:nth-child(3) .why-big {
    white-space: normal;
    line-height: 0.95;
}

.why-mid {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 26px;
    color: #111111;
    margin: 0;
}

.why-small {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    color: rgba(12, 42, 79, 0.70);
    margin: 0;
}

.why-card .why-divider {
    height: 1px;
    background: rgba(12, 42, 79, 0.10);
    width: 88%;
    margin: 18px auto 0;
}

.why-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-size: 17px;
    color: rgba(12, 42, 79, 0.75);
    padding: 0 2px;
}

.why-foot strong {
    color: #0c2a4f;
    font-weight: 800;
}

.why-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--cta-orange);
    color: #fff;
    text-decoration: none;
    height: 54px;
    padding: 0 34px;
    border-radius: 10px;
    font-weight: 900;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

/* Desktop/tablet: show modal button, hide call button */
.why-btn--desktop { display: inline-flex; }
.why-btn--mobile  { display: none; }

/* Mobile: hide modal button, show call button */
@media (max-width: 768px) {
    .why-btn--desktop { display: none; }
    .why-btn--mobile  { display: inline-flex; }
}

/* Tablet */
@media (max-width: 980px) {
    .why-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .why-card {
        min-height: 270px;
        padding: 38px 24px 30px;
    }

    .why-big {
        font-size: 30px;
    }

    .why-mid {
        font-size: 24px;
    }

    .why-small {
        font-size: 19px;
    }
}

@media (max-height: 820px) {
    .why-trust {
        padding: 100px 0 110px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .why-trust {
        padding-top: 24px !important;
        padding-bottom: 70px !important;
        background-position: center bottom;
        background-size: 820px auto;
    }

    .why-inner {
        width: min(340px, calc(100% - 28px));
    }

    .why-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .why-sub {
        font-size: 18px;
        margin-bottom: 26px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .why-card {
        min-height: 0;
        padding: 32px 22px 26px;
    }

    .why-big {
        font-size: 30px;
        white-space: normal;
    }

    .why-mid {
        font-size: 20px;
    }

    .why-small {
        font-size: 18px;
    }

    .why-card .why-divider {
        width: 92%;
        margin-top: 16px;
    }
}

/* =========================
   BRAND MARQUEE (Deals top)
   - stable on mobile
   - no breaking after load
========================= */

.why-marquee {
    --marquee-speed: 18s;
    --logo-h: clamp(36px, 4.2vw, 58px);
    --gap: clamp(20px, 3vw, 44px);

    width: 100%;
    max-width: 1200px;
    margin: 0 auto 18px;
    position: relative;
}

.why-marquee__label {
    font-family: var(--font-heading);
    margin: 0 0 10px;
    font-weight: 800;
    letter-spacing: 0.3px;
    color: rgba(15, 23, 42, 0.75);
    font-size: 18px;
}

.why-marquee__viewport {
    overflow: hidden;
    border-radius: 16px;
    padding: 14px 0;

    /* iOS stability */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.why-marquee__fade {
    pointer-events: none;
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(90deg,
            rgba(238, 244, 251, 1) 0%,
            rgba(238, 244, 251, 0) 10%,
            rgba(238, 244, 251, 0) 90%,
            rgba(238, 244, 251, 1) 100%);
    z-index: 3;
}

.why-marquee__centerline {
    position: absolute;
    left: 50%;
    top: 10px;
    bottom: 10px;
    width: 1px;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.06);
    z-index: 2;
    pointer-events: none;
    display: none;
}

.why-marquee__track {
    display: flex;
    align-items: center;
    gap: var(--gap);
    width: max-content;
    will-change: transform;

    /* IMPORTANT: paused until window load */
    animation: why-marquee-move var(--marquee-speed) linear infinite;
    animation-play-state: paused;

    /* iOS GPU */
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

body.is-ready .why-marquee__track {
    animation-play-state: running;
}

/* item card */
.why-marquee__item {
    flex: 0 0 auto;
    height: calc(var(--logo-h) + 24px);
    padding: 10px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.09);
    display: flex;
    align-items: center;
    justify-content: center;

    /* DO NOT use margin here (breaks loop) */
    transform: scale(1);
    transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.why-marquee__item img {
    height: var(--logo-h);
    width: auto;
    max-width: 190px;
    object-fit: contain;
    display: block;
}

/* Desktop center highlight only (JS toggles .is-center) */
.why-marquee__item.is-center {
    transform: scale(1.18);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
    z-index: 5;
}

@keyframes why-marquee-move {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (hover:hover) {
    .why-marquee__viewport:hover .why-marquee__track {
        animation-play-state: paused;
    }
}

/* Mobile: keep it stable (no center scaling) */
@media (max-width: 768px) {

    .why-marquee__item,
    .why-marquee__item.is-center {
        transform: none !important;
    }

    .why-marquee__centerline {
        display: none;
    }
}

@media (max-width: 600px) {
    .why-marquee {
        --marquee-speed: 22s;
        --logo-h: clamp(32px, 6vw, 50px);
        margin: 0 auto 12px;
    }

    .why-marquee__viewport {
        padding: 12px 0;
    }

    .why-marquee__item {
        height: calc(var(--logo-h) + 20px);
        padding: 9px 14px;
        border-radius: 13px;
    }

    .why-marquee__item img {
        max-width: 160px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .why-marquee__track {
        animation: none;
        transform: none;
    }

    .why-marquee__item {
        transition: none;
    }
}

/* =========================================================
   SERVICES 
   ========================================================= */

.services {
    position: relative;
    padding: 86px 0 90px;
    background-image: url("../images/why-trust-bg.webp");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 2020px auto;
    border-bottom: 2px solid #e4ede8;
}

.services-inner {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

/* =========================
   Header
========================= */
.services-head {
    text-align: center;
    margin-bottom: 52px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.services-kicker {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 18px;
    color: var(--cta-orange);
    text-transform: uppercase;
    margin: 0 0 18px;
    padding: 7px 20px;
    background: rgba(177, 46, 46, 0.1);
    border-radius: 999px;
    border: 1px solid rgba(177, 46, 46, 0.35);
}

.services-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 52px;
    line-height: 1.1;
    color: var(--primary-main);
    margin: 0 0 20px;
    letter-spacing: -1px;
}

/* "Best" word gets orange highlight treatment */
.services-title-highlight {
    position: relative;
    color: var(--cta-orange);
    display: inline-block;
}

.services-title-highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 5px;
    background: var(--cta-orange);
    border-radius: 99px;
    opacity: 0.4;
}

.services-subtitle {
    margin: 0 auto;
    max-width: 890px;
    font-size: 24px;
    line-height: 1.65;
    color: #4b5563;
    font-family: var(--font-body);
}

/* checklist line under title */
.services-checks {
    margin-top: 14px;
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    color: #1b1b1b;
}

.services-check-ico {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    /* Changed to Sky Blue */
    border: 2px solid var(--primary-accent);
    color: var(--primary-accent);
    line-height: 1;
    font-weight: 900;
    font-size: 17px;
}

/* =========================
   Grid
========================= */
.services-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 26px;
    align-items: stretch;
}

/* =========================
   Card (with hover-fill animation)
========================= */
.svc-card {
    position: relative;
    overflow: hidden;

    background: #ffffff;
    border: 1px solid rgba(42, 58, 26, 0.15);
    border-top: 3px solid var(--primary-main);
    border-radius: 14px;
    padding: 26px 22px 22px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 168px;
    box-shadow: 0 4px 20px rgba(42, 58, 26, 0.07);

    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

/* blue fill layer */
.svc-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background: var(--cta-orange);
    transform: translateY(100%);
    transition: transform 0.32s cubic-bezier(0.2, 0.9, 0.2, 1);
    z-index: 0;
}

/* subtle sheen sweep */
.svc-card::after {
    content: "";
    position: absolute;
    inset: -40% -60%;

    background: linear-gradient(120deg,
            transparent 40%,
            rgba(255, 255, 255, 0.18) 50%,
            transparent 60%);

    transform: translateX(-60%) rotate(0deg);
    transition: transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1);
    z-index: 0;
    pointer-events: none;
    opacity: 0;
}

/* keep content above the fill layers */
.svc-card>* {
    position: relative;
    z-index: 1;
}

.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(112, 124, 145, 0.22);
    border-color: rgba(177, 46, 46, 0.55);
}

.svc-card:hover::before {
    transform: translateY(0%);
}

.svc-card:hover::after {
    opacity: 1;
    transform: translateX(30%) rotate(0deg);
}

/* =========================
   Card head
========================= */
.svc-card-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

/* Icon box */
.svc-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;

    background: var(--cta-orange);
    color: #ffffff;

    display: grid;
    place-items: center;
    flex-shrink: 0;

    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

/* If you paste SVG inside .svc-icon */
.svc-icon svg {
    width: 30px;
    height: 30px;
    display: block;
}

/* Text */
.svc-text {
    text-align: left;
}

.svc-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--cta-orange);
    margin: 0 0 6px;
    transition: color 0.25s ease;
}

.svc-desc {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0;
    transition: color 0.25s ease;
}

/* =========================
   CTA Button (turns white on hover)
========================= */
.svc-btn {
    margin-top: 16px;
    height: 44px;
    border-radius: 10px;

    background: var(--cta-orange);
    color: #ffffff;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 17px;
    text-decoration: none;
    letter-spacing: 0.3px;

    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

/* arrow micro-motion */
.svc-arrow {
    display: inline-block;
    transform: translateX(0);
    transition: transform 0.22s ease;
}

.svc-btn:active {
    transform: translateY(1px);
}

/* Keyboard focus */
.svc-btn:focus-visible {
    outline: 3px solid rgba(177, 46, 46, 0.25);
    outline-offset: 3px;
}

.svc-card:hover .svc-title,
.svc-card:hover .svc-desc {
    color: #fff;
}

.svc-card:hover .svc-icon {
    color: var(--cta-orange);
    background: #fff;
    transform: translateY(-1px);
}

.svc-card:hover .svc-btn {
    color: var(--primary-main);
    background: #ffffff;
}

.svc-card:hover .svc-btn .svc-arrow {
    transform: translateX(4px);
}

.svc-card:hover .svc-btn:hover {
    transform: translateY(-1px);
}

/* =========================
   Responsive
========================= */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 700px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .services {
        padding: 56px 0 64px;
    }

    .services-inner {
        width: min(1200px, calc(100% - 28px));
    }

    .services-title {
        font-size: 30px;
        letter-spacing: -0.2px;
    }

    .services-subtitle {
        font-size: 18px;
    }

    .services-kicker {
        font-size: 18px;
    }

    .services-grid {
        margin-top: 30px;
        gap: 18px;
    }

    .svc-card {
        padding: 18px;
    }

    .svc-title {
        font-size: 20px;
    }

    .svc-desc {
        font-size: 18px;
    }

    .svc-btn {
        height: 46px;
        font-size: 17px;
    }
}

/* =========================
   Respect reduced motion
========================= */
@media (prefers-reduced-motion: reduce) {

    .svc-card,
    .svc-card::before,
    .svc-card::after,
    .svc-icon,
    .svc-title,
    .svc-desc,
    .svc-btn,
    .svc-arrow {
        transition: none !important;
    }
}

/* =========================================================
   PROS
   ========================================================= */

.pros {
    padding: 96px 0;
    background: #f8faf8;
}

.pros-inner {
    width: min(1250px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(360px, 480px) 1fr;
    gap: 72px;
    align-items: center;
}

/* LEFT IMAGE CARD */
.pros-media {
}

.pros-photo {
    border-radius: 24px;
    overflow: hidden;
    background: #e8f0e8;
    box-shadow: 0 24px 60px rgba(58, 26, 26, 0.18);
    position: relative;
}

.pros-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    box-shadow: inset 0 0 0 2px rgba(58, 26, 26, 0.12);
}

.pros-photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* RIGHT CONTENT */
.pros-content {
    max-width: 690px;
}

.pros-eyebrow {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--cta-orange);
}

.pros-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 42px;
    line-height: 1.1;
    color: var(--primary-main);
    margin: 0 0 14px;
}

.pros-subtitle {
    margin: 0 0 36px;
    font-size: 18px;
    line-height: 1.6;
    color: #4b5563;
    font-family: var(--font-body);
}

.pros-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pros-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1px solid rgba(58, 26, 26, 0.12);
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 4px 16px rgba(58, 26, 26, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pros-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(58, 26, 26, 0.12);
}

.pros-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--cta-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.pros-card-icon svg {
    width: 22px;
    height: 22px;
}

.pros-card-text h3 {
    margin: 0 0 6px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    color: var(--cta-orange);
    line-height: 1.2;
}

.pros-card-text p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: #4b5563;
}

.pros-cta {
    margin-top: 36px;
}

.pros-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 28px;
    background: var(--cta-orange);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 28px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(177, 46, 46, 0.4);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.pros-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(177, 46, 46, 0.5);
    filter: brightness(1.05);
}

.pros-btn-arrow {
    font-size: 28px;
    transition: transform 0.18s ease;
}

.pros-btn:hover .pros-btn-arrow {
    transform: translateX(4px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
    .pros {
        padding: 72px 0;
    }

    .pros-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: start;
    }

    .pros-photo {
        max-width: 560px;
        margin: 0 auto;
    }

    .pros-photo img {
        width: 100%;
        height: auto;
    }

    .pros-content {
        max-width: 100%;
    }

    .pros-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .pros {
        padding: 56px 0;
    }

    .pros-inner {
        width: min(1250px, calc(100% - 32px));
        gap: 28px;
    }

    .pros-title {
        font-size: 28px;
    }

    .pros-subtitle {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .pros-card {
        padding: 18px;
        gap: 14px;
    }

    .pros-card-icon {
        width: 38px;
        height: 38px;
    }

    .pros-card-text h3 {
        font-size: 18px;
    }

    .pros-btn {
        font-size: 18px;
        padding: 16px 20px;
    }
}

/* =========================================================
   FINANCING CTA
   ========================================================= */

.financing-cta {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: grid;
    align-items: center;
    overflow: hidden;
}

.financing-cta__bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/financing-banner.webp");
    background-size: cover;
    background-position: center right;
    transform: scale(1.04);
}

.financing-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 20, 45, 0.92) 0%,
        rgba(26, 51, 92, 0.85) 40%,
        rgba(197, 26, 48, 0.75) 100%
    );
    z-index: 1;
}

.financing-cta__inner {
    position: relative;
    z-index: 2;
    width: min(860px, calc(100% - 48px));
    margin: 0 auto;
    padding: 88px 0;
    text-align: center;
}

.financing-cta__eyebrow {
    display: inline-block;
    margin: 0 0 22px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 8px 24px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.financing-cta__content {
    max-width: 100%;
}

.financing-cta__title {
    margin: 0 0 20px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 56px;
    line-height: 1.08;
    color: #ffffff;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.financing-cta__divider {
    width: 60px;
    height: 4px;
    background: var(--cta-orange);
    margin: 0 auto 24px;
    border-radius: 2px;
    box-shadow: 0 0 16px rgba(197, 26, 48, 0.5);
}

.financing-cta__text {
    margin: 0 auto 40px;
    font-family: var(--font-body);
    font-size: 19px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    max-width: 680px;
}

.financing-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 52px;
    border-radius: 12px;
    color: #fff;
    background: var(--cta-orange);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 17px;
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(197, 26, 48, 0.5), 0 0 0 0 rgba(255, 255, 255, 0);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.financing-cta__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(197, 26, 48, 0.6), 0 0 0 2px rgba(255, 255, 255, 0.15);
    filter: brightness(1.08);
}

.financing-cta__btn:active {
    transform: translateY(0px);
}

.financing-cta__arrow {
    font-size: 18px;
    transition: transform 0.18s ease;
}

.financing-cta__btn:hover .financing-cta__arrow {
    transform: translateX(4px);
}

.financing-cta__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.financing-cta__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.financing-cta__trust-item svg {
    width: 17px;
    height: 17px;
    color: var(--cta-orange);
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(197, 26, 48, 0.4));
}

.financing-cta__trust-divider {
    color: rgba(255,255,255,0.25);
    font-size: 18px;
}

@media (max-width: 992px) {
    .financing-cta {
        min-height: 460px;
    }
    .financing-cta__inner {
        width: min(860px, calc(100% - 32px));
        padding: 72px 0;
    }
    .financing-cta__title {
        font-size: 42px;
    }
}

@media (max-width: 640px) {
    .financing-cta {
        min-height: 0;
    }
    .financing-cta__inner {
        padding: 60px 0;
    }
    .financing-cta__eyebrow {
        font-size: 12px;
        letter-spacing: 3px;
        padding: 7px 18px;
    }
    .financing-cta__title {
        font-size: 32px;
        letter-spacing: -0.2px;
    }
    .financing-cta__divider {
        width: 48px;
        margin-bottom: 20px;
    }
    .financing-cta__text {
        font-size: 18px;
        margin-bottom: 28px;
    }
    .financing-cta__btn {
        width: 100%;
        padding: 18px 24px;
        font-size: 18px;
    }
    .financing-cta__trust {
        gap: 8px;
    }
    .financing-cta__trust-divider {
        display: none;
    }
}

/* =========================================================
   SERVICE GUARANTEE
   ========================================================= */

.ga-guarantee {
    position: relative;
    background: var(--primary-main);
    /* Updates from lighter blue to Deep Navy */
    padding: 52px 0;
    overflow: visible;
}




/* Update the top/bottom bars from green to Sky Blue */
.ga-guarantee::before,
.ga-guarantee::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 7px;
    background: var(--primary-accent);
    /* Updates to Sky Blue */
    opacity: .95;
    z-index: 1;
}

.ga-guarantee::before {
    top: 0;
}

.ga-guarantee::after {
    bottom: 0;
}

/* main layout */
.ga-guarantee__bar {
    width: min(1500px, calc(100% - 120px));
    margin: 0 auto;
    padding: 0 10px;

    display: grid;
    grid-template-columns: clamp(320px, 34vw, 520px) clamp(240px, 22vw, 320px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(18px, 3vw, 44px);

    position: relative;
    z-index: 2;
}

/* title */
.ga-guarantee__title {
    margin: 0 0 0 90px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 48px;
    line-height: 1.03;
    color: #fff;
}

/* badge */
.ga-guarantee__badge {
    display: grid;
    place-items: center;
    overflow: visible;
    z-index: 2;
}

.ga-guarantee__badge img {
    width: 340px;
    height: auto;
    display: block;
    margin-top: -90px;
    margin-bottom: -90px;
    transform: translateX(-20px);
    shape-rendering: geometricPrecision;
    image-rendering: auto;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .35));
}

.ga-guarantee__text {
    display: block;
    max-width: 280px;
    /* keeps columns consistent */
    word-break: normal;
    overflow-wrap: anywhere;
    /* prevents overflow at zoom */
}

.ga-guarantee__list {
    margin: 0;
    padding-left: clamp(0px, 2.2vw, 34px);
    list-style: none;
    margin-left: -50px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(18px, 3.2vw, 70px);
    row-gap: clamp(18px, 2.2vw, 28px);
    grid-auto-flow: start;
}

/* item style */
.ga-guarantee__item {
    display: flex;
    align-items: center;
    gap: 16px;

    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    line-height: 1.2;
    color: #fff;
}

.ga-guarantee__ico {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    border-radius: 16px;
    background: #fff;
    display: grid;
    place-items: center;
}

/* svg sizing */
.ga-guarantee__ico svg {
    width: 26px;
    height: 26px;
}

.go-left,
.go-right {
    margin-left: 0 !important;
}

/* force icon blue */
/* Force icon fill to Sky Blue */
.ga-guarantee__ico svg path,
.ga-guarantee__ico svg rect,
.ga-guarantee__ico svg circle,
.ga-guarantee__ico svg line,
.ga-guarantee__ico svg polygon {
    fill: var(--primary-accent) !important;
    /* Sky Blue */
    stroke: var(--primary-accent) !important;
}

/* ✅ FORCE EXACT POSITIONS (NO MORE WRONG ORDER) */
.ga-guarantee__item--emergency {
    grid-column: 1;
    grid-row: 1;
}

.ga-guarantee__item--pricing {
    grid-column: 2;
    grid-row: 1;
}

.ga-guarantee__item--experience {
    grid-column: 1;
    grid-row: 2;
}

.ga-guarantee__item--servicearea {
    grid-column: 2;
    grid-row: 2;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {
    .ga-guarantee__bar {
        width: min(1200px, calc(100% - 60px));
        grid-template-columns: 1fr 320px;
        grid-template-rows: auto auto;
        gap: 30px;
    }

    .ga-guarantee__badge img {
        transform: translateX(0);
        margin-bottom: -90px;
    }

    .ga-guarantee__list {
        grid-column: 1 / -1;
        padding-left: 0 !important;
        justify-self: center;
        transform: translateX(0);
    }
}

@media (max-width: 860px) {
    .ga-guarantee {
        padding: 46px 0;
    }

    /* order: BADGE → TITLE → LIST */
    .ga-guarantee__bar {
        width: calc(100% - 40px);
        margin: 0 auto;

        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "badge"
            "title"
            "list";
        gap: 18px;

        text-align: left;
        justify-items: stretch;
    }

    .ga-guarantee__badge {
        grid-area: badge;
        display: grid;
        place-items: center;
    }

    .ga-guarantee__badge img {
        width: 300px;
        height: auto;
        margin-top: -78px;
        margin-bottom: -6px;
        transform: none;
    }

    .ga-guarantee__left {
        grid-area: title;
    }

    .ga-guarantee__title {
        margin: 0;
        font-size: 38px;
        line-height: 1.05;
        font-weight: 900;
        padding-left: 6px;
        text-align: center;
    }

    .ga-guarantee__list {
        grid-area: list;
        margin: 0;
        padding: 0;
        list-style: none;

        display: grid;
        grid-template-columns: 1fr;
        row-gap: 22px;

        margin-left: 0;
        justify-items: stretch;
    }

    /* remove desktop nudges on mobile */
    .go-left,
    .go-right {
        margin-left: 0 !important;
    }

    .ga-guarantee__item {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 16px;
        justify-content: flex-start;
        text-align: left;

        padding-left: 6px;
        font-size: 18px;
        line-height: 1.15;
    }

    .ga-guarantee__ico {
        width: 56px;
        height: 56px;
        flex: 0 0 56px;
        border-radius: 16px;
        background: #fff;
        display: grid;
        place-items: center;
    }

    .ga-guarantee__ico svg {
        width: 26px;
        height: 26px;
    }
}

/* =========================================================
   REVIEWS
   ========================================================= */

.reviews-split {
    padding: 88px 0;
    border-bottom: 2px solid #ececec;
}

.reviews-split__inner {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 56px;
    align-items: center;
}

/* LEFT */
.reviews-split__left {
    display: block;
}

.reviews-split__title {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--primary-accent);
    font-size: 50px;
    line-height: 1.05;
    letter-spacing: -0.5px;
}

/* RIGHT */
.reviews-split__right {
    min-width: 0;
}

/* Track: show 2-ish cards, allow scroll */
.reviews-split__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 1fr);
    gap: 22px;

    overflow-x: auto;
    padding: 6px 4px 12px;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 4px;
    -webkit-overflow-scrolling: touch;
}

/* Scrollbar (desktop) */
.reviews-split__track::-webkit-scrollbar {
    height: 10px;
}

.reviews-split__track::-webkit-scrollbar-thumb {
    background: var(--cta-orange);
    border-radius: 999px;
}

.reviews-split__track::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, .06);
    border-radius: 999px;
}

/* Review card */
.review2-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 22px 18px;

    box-shadow: 0 10px 26px rgba(0, 0, 0, .10);
    border: 1px solid rgba(10, 12, 14, .06);

    min-height: 210px;

    display: flex;
    flex-direction: column;

    scroll-snap-align: start;
}

.review2-stars {
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--cta-orange);

    margin-bottom: 12px;
}

.review2-text {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-weight: 500;
    color: #1c1f23;
    font-size: 16px;
    line-height: 1.65;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.review2-link {
    margin-top: auto;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;

    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    color: var(--primary-accent);
    text-align: left;
}

.review2-link:hover {
    text-decoration: underline;
}

.review2-meta {
    margin-top: 16px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 17px;
    color: #121417;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
    .reviews-split__inner {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: start;
    }

    .reviews-split__title {
        font-size: 44px;
    }

    .reviews-split__track {
        grid-auto-columns: minmax(300px, 1fr);
    }
}

@media (max-width: 640px) {
    .reviews-split {
        padding: 64px 0;
    }

    .reviews-split__inner {
        width: min(1200px, calc(100% - 28px));
    }

    .reviews-split__title {
        font-size: 38px;
        line-height: 1.05;
        text-align: center;
    }

    .reviews-split__track {
        grid-auto-columns: 88%;
        gap: 16px;
        padding-bottom: 10px;
    }

    .review2-card {
        padding: 18px 18px 16px;
        border-radius: 16px;
        min-height: 200px;
    }

    .review2-text {
        -webkit-line-clamp: 5;
    }
}

/* =========================
   REVIEW MODAL
========================= */

.review-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: none;
    align-items: center;
    justify-content: center;

    background: rgba(10, 12, 16, 0.65);
    backdrop-filter: blur(4px);
}

.review-modal.is-open {
    display: flex;
}

.review-modal__box {
    position: relative;
    width: min(640px, calc(100% - 32px));
    max-height: 86vh;

    background: #ffffff;
    border-radius: 18px;
    padding: 28px 28px 26px;

    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.22),
        0 10px 20px rgba(0, 0, 0, 0.10);

    display: flex;
    flex-direction: column;
    gap: 18px;

    animation: modalFadeUp 220ms ease;
}

.review-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;

    width: 36px;
    height: 36px;
    border-radius: 50%;

    border: none;
    background: #f2f4f7;
    color: #111;

    font-size: 20px;
    font-weight: 700;
    cursor: pointer;

    display: grid;
    place-items: center;
}

.review-modal__close:hover {
    background: #e6e9ee;
}

.review-modal__stars {
    font-size: 20px;
    letter-spacing: 3px;
    color: var(--primary-main);
}

.review-modal__text {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.7;
    color: #1c1f23;

    overflow-y: auto;
    padding-right: 6px;
}

.review-modal__name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 17px;
    color: var(--primary-accent);
}

/* animation */
@keyframes modalFadeUp {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 640px) {
    .review-modal__box {
        padding: 22px 20px 20px;
        border-radius: 16px;
    }

    .review-modal__text {
        font-size: 18px;
    }
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery {
    padding: 80px 0 90px;
    background: #ffffff;
}

.gallery-inner {
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
}

.gallery-head {
    text-align: center;
    margin-bottom: 26px;
}

.gallery-kicker {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-size: 18px;
    color: var(--brand-primary);
}

.gallery-title {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -0.8px;
    line-height: 1.05;
    font-size: clamp(28px, 2.5vw, 52px);
    color: var(--brand-header);
}

/* Slider shell */
.gallery-slider {
    position: relative;
    margin-top: 20px;
    display: grid;
    grid-template-columns: 46px 1fr 46px;
    align-items: center;
    gap: 14px;
}

.gallery-viewport {
    overflow: hidden;
    border-radius: 22px;
    outline: none;
    touch-action: pan-y;
}

.gallery-track {
    display: grid;
    grid-auto-flow: column;
    gap: 24px;
    transform: translate3d(0, 0, 0);
    transition: transform 420ms ease;
    will-change: transform;
    padding: 6px;
}

/* Desktop (3 cards) */
.gallery-track {
    grid-auto-columns: calc((100% - 48px) / 3);
}

/* Card */
.gallery-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.gallery-media {
    margin: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f3f6fb;
    position: relative;
}

.gallery-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.gallery-cap {
    padding: 14px 16px 16px;
}

.gallery-cap-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 16px;
    color: #0b0f19;
    margin: 0 0 4px;
}

.gallery-cap-sub {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: rgba(11, 15, 25, 0.65);
}

/* Nav buttons */
.gallery-nav {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #ffffff;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.10);
    display: inline-grid;
    place-items: center;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    user-select: none;
}

.gallery-nav:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
}

/* Dots */
.gallery-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
}

.gallery-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 0;
    background: rgba(11, 15, 25, 0.25);
    cursor: pointer;
}

.gallery-dot.is-active {
    background: #0b5bd3;
    width: 22px;
}

/* Tablet: 2 cards */
@media (max-width: 1024px) {
    .gallery {
        padding: 70px 0 80px;
    }

    .gallery-slider {
        grid-template-columns: 44px 1fr 44px;
    }

    .gallery-track {
        grid-auto-columns: calc((100% - 24px) / 2);
    }
}

/* Mobile: Stack 2-3 cards vertically, NO scroll */
@media (max-width: 640px) {
    .gallery {
        padding: 70px 0 50px;
    }

    .gallery-inner {
        width: min(1200px, calc(100% - 32px));
    }

    .gallery-slider {
        display: block;
    }

    .gallery-nav {
        display: none;
    }

    .gallery-dots {
        display: none;
    }

    .gallery-viewport {
        border-radius: 18px;
        overflow: visible;
    }

    .gallery-track {
        display: flex;
        flex-direction: column;
        gap: 18px;
        transform: none !important;
        transition: none !important;
    }

    .gallery-card {
        border-radius: 16px;
        width: 100%;
    }

    /* Show only first 3 cards on mobile */
    .gallery-card:nth-child(n+6) {
        display: none;
    }

    .gallery-zoom {
        left: 10px;
        top: 10px;
        width: 40px;
        height: 40px;
    }
}

/* =========================
   GALLERY ZOOM ICON
========================= */
.gallery-zoom {
    position: absolute;
    left: 14px;
    top: 14px;
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 999px;

    background: transparent;
    border: 1px solid rgba(255, 255, 255, .75);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    display: grid;
    place-items: center;
    cursor: pointer;
    user-select: none;

    transition: transform 160ms ease;
}

.gallery-zoom:hover {
    transform: translateY(-1px);
}

.gallery-zoom span {
    font-size: 18px;
    line-height: 1;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .25));
}

/* =========================
   GALLERY MODAL (LIGHTBOX)
========================= */
.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.gallery-modal.is-open {
    display: block;
}

.gallery-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.68);
}

.gallery-modal__dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(1000px, calc(100% - 28px));
    max-height: calc(100% - 28px);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.gallery-modal__close {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.95);
    cursor: pointer;
}

.gallery-modal__figure {
    margin: 0;
}

.gallery-modal__img {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 210px);
    display: block;
    object-fit: contain;
    background: #0b0f19;
}

.gallery-modal__cap {
    padding: 14px 16px 16px;
    background: #ffffff;
}

.gallery-modal__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 18px;
    color: #0b0f19;
    margin-bottom: 4px;
}

.gallery-modal__sub {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 17px;
    color: rgba(11, 15, 25, 0.65);
}

/* modal arrows */
.gallery-modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(11, 15, 25, 0.55);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 26px;
    z-index: 5;
}

.gallery-modal__prev {
    left: 10px;
}

.gallery-modal__next {
    right: 10px;
}

@media (max-width: 640px) {
    .gallery-zoom {
        left: 10px;
        top: 10px;
        width: 40px;
        height: 40px;
    }

    .gallery-modal__img {
        max-height: calc(100vh - 190px);
    }
}

/* =========================================================
   SERVICE AREAS
   ========================================================= */

.service-areas {
    position: relative;
    padding: 80px 0 100px;
    background: #ffffff;
    overflow: hidden;
}

/* Subtle map background */
.service-areas::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/service-areas.webp");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 55% auto;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}

.sa2-inner {
    position: relative;
    z-index: 1;
    width: min(1200px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.sa2-eyebrow {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cta-orange);
    margin: 0 0 10px;
}

.sa2-title {
    margin: 0 0 14px;
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary-main);
}

.sa2-sub {
    margin: 0 0 28px;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: #4b5563;
    max-width: 380px;
}

.sa2-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-main);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.5px;
    padding: 13px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(42, 58, 26, 0.2);
    transition: transform 0.15s, box-shadow 0.15s;
    cursor: pointer;
}

.sa2-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(42, 58, 26, 0.25);
}

/* RIGHT */
.sa2-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sa2-card--featured {
    background: #fff;
    border: 2px solid var(--primary-main);
    border-radius: 16px;
    padding: 28px 30px 32px;
    box-shadow: 0 8px 32px rgba(42, 58, 26, 0.1);
}

.sa2-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(42, 58, 26, 0.1);
}

.sa2-pin {
    width: 22px;
    height: 22px;
    color: var(--primary-main);
    flex: 0 0 auto;
}

.sa2-pin svg {
    width: 100%;
    height: 100%;
    display: block;
}

.sa2-card-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-main);
}

/* Location list */
.sa2-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px 20px;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: #111827;
}

.sa2-list--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sa2-list--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sa2-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: normal;
    min-width: 0;
    line-height: 1.35;
}

.sa2-check {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--primary-main);
}

.sa2-list {
    grid-auto-rows: minmax(0, auto);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .service-areas {
        padding: 60px 0 70px;
    }

    .sa2-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .sa2-sub {
        max-width: 100%;
    }

    .sa2-list--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sa2-card-title {
        font-size: 20px;
    }
}

@media (max-width: 520px) {
    .service-areas {
        padding: 48px 0 56px;
    }

    .sa2-list--2,
    .sa2-list--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sa2-card--featured {
        padding: 20px 18px 24px;
    }
}

/* =========================================================
   FOOTER / FINAL CTA (append from footer.css)
   ========================================================= */

.final-cta {
    width: 100%;
    margin: 0;
    padding: 0;
}

.final-cta-bg-wrap {
    width: 100%;
    margin: 0;
}

/* BACKGROUND CARD */
.final-cta-bg-card {
    position: relative;
    width: 100%;
    border-radius: 40px 40px 0 0;
    overflow: hidden;
    background-image: url("../images/footer-bg.webp");
    background-size: cover;
    background-position: center;
    padding: 72px 0 0;
}

/* dark overlay for readability */
.final-cta-bg-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(27, 51, 89, 0.384);
    border-radius: 40px 40px 0 0;
    z-index: 0;
}

.final-cta-bg-card::after {
    border-radius: 40px 40px 0 0;
}

.final-cta-bg,
.final-cta-overlay {
    border-radius: 40px 40px 0 0;
}

/* CONTAINER */
.final-cta-container {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 48px;
}

/* MAIN GRID */
.final-cta-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: start;
    padding-bottom: 64px;
}

/* =====================
   LEFT SIDE
===================== */
.final-left {
    color: #fff;
}

.final-logo-box {
    width: 140px;
    margin-bottom: 24px;
}

.final-logo-box img {
    width: 100%;
    display: block;
}

.final-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 34px;
    line-height: 1.1;
    margin: 0 0 16px;
    letter-spacing: -0.3px;
}

.final-desc {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 24px;
    max-width: 440px;
}

/* trust list */
.final-trust-list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.final-trust-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.90);
}

.final-trust-list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--cta-orange);
}

/* phone CTA */
.final-call {
    display: inline-block;
    color: var(--primary-main);
    border-radius: 14px;
    padding: 18px 26px;
    text-decoration: none;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.final-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.final-call-top {
    font-family: var(--font-heading);
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #4b5563;
    margin-bottom: 4px;
}

.final-call-main {
    font-family: var(--font-heading);
    display: block;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    color: var(--primary-main);
}

/* =====================
   RIGHT SIDE: FORM
===================== */
.final-right {
    color: #fff;
}

.final-form-header {
    margin-bottom: 24px;
}

.final-form-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cta-orange);
    background: rgba(159, 177, 46, 0.12);
    border: 1px solid rgba(177, 46, 46, 0.35);
    border-radius: 999px;
    padding: 5px 14px;
    margin: 0 0 12px;
}

.final-form-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 30px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 8px;
}

.final-form-sub {
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    margin: 0;
    text-transform: uppercase;
}

/* FORM */
.final-form {
    max-width: 100%;
}

.final-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.final-field--full {
    grid-column: 1 / -1;
}

.final-field label {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
    color: rgba(255,255,255,0.70);
}

.final-field input,
.final-field select {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding: 0 16px;
    font-size: 18px;
    font-family: var(--font-body);
    box-sizing: border-box;
    transition: border-color 0.18s ease, background 0.18s ease;
}

.final-field input::placeholder {
    color: rgba(255,255,255,0.35);
}

.final-field input:focus,
.final-field select:focus {
    outline: none;
    border-color: var(--cta-orange);
    background: rgba(255,255,255,0.12);
}

.final-field select option {
    color: #111;
    background: #fff;
}

.final-submit {
    font-family: var(--font-heading);
    margin-top: 16px;
    text-transform: uppercase;
    width: 100%;
    height: 58px;
    border-radius: 12px;
    border: none;
    color: #fff;
    background: var(--cta-orange);
    font-weight: 900;
    font-size: 17px;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(177, 46, 46, 0.4);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.final-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(177, 46, 46, 0.5);
    filter: brightness(1.05);
}

.final-note {
    font-family: var(--font-body);
    margin-top: 10px;
    font-size: 18px;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

/* =====================
   FOOTER BAR
===================== */
.final-footer-bar {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.final-footer-copy {
    font-family: var(--font-heading);
    font-size: 17px;
    color: rgba(255,255,255,0.55);
}

.final-footer-copy strong {
    color: rgba(255,255,255,0.80);
    font-weight: 700;
}

.final-footer-credit {
    font-family: var(--font-heading);
    font-size: 17px;
    color: rgba(255,255,255,0.45);
}

.fw-semibold {
    color: rgba(255,255,255,0.75);
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.18s ease;
}

.fw-semibold:hover {
    color: var(--cta-orange);
}

/* ==========================================================
   RESPONSIVE
========================================================== */
@media (max-width: 1024px) {
    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .final-cta-container {
        padding: 0 32px;
    }

    .final-desc {
        max-width: 100%;
    }

    .final-title {
        font-size: 30px;
    }

    /* Center the left side when stacked */
    .final-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .final-trust-list {
        align-items: center;
    }

    .final-trust-list li {
        justify-content: center;
    }

    .final-desc {
        text-align: center;
    }

    .final-call {
        align-self: center;
    }
}


@media (max-width: 640px) {
    .final-cta-bg-card {
        border-radius: 24px 24px 0 0;
        padding: 48px 0 0;
    }

    .final-cta-bg-card::before {
        border-radius: 24px 24px 0 0;
    }

    .final-cta-container {
        padding: 0 20px;
    }

    .final-call-top{
        display: none;
    }

    .final-call-main {
        font-size: 24px;
    }


    .final-title {
        font-size: 24px;
    }

    .final-form-header {
        text-align: center;
    }

    .final-call {
        width: 100%;
        text-align: center;
    }

    .final-grid {
        grid-template-columns: 1fr;
    }

    .final-field--full {
        grid-column: 1;
    }

    .final-submit {
        height: 52px;
        font-size: 18px;
    }

    .final-footer-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
}

/* ==========================================================
   BACK TO TOP BUTTON
========================================================== */

/* Placeholders always visible */
@media (min-width: 993px) {
    .final-field input::placeholder {
        opacity: 0.35;
    }
}

/* ===== reCAPTCHA (desktop) ===== */
.final-recaptcha {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    margin: 0;
}

.final-recaptcha .recaptcha-scale {
    display: inline-block;
    transform: scale(0.88);
    transform-origin: left center;
    width: calc(304px * 0.88);
    height: calc(78px * 0.88);
}

/* ===== mobile ===== */
@media (max-width: 992px) {
    .final-recaptcha {
        grid-column: 1 / -1;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 12px 0 6px;
    }
}

/* =========================================================
   UI MODAL + reCAPTCHA
   ========================================================= */


.ui-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.ui-modal.is-open {
    display: block;
}

.ui-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(4px);
}

.ui-modal__card {
    position: relative;
    width: min(520px, calc(100% - 32px));
    margin: 0 auto;
    top: 18vh;

    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
    backdrop-filter: blur(10px);

    color: #fff;
    overflow: hidden;
    transform: translateY(10px);
    opacity: 0;
    animation: uiModalIn .18s ease-out forwards;
}

@keyframes uiModalIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.ui-modal__header {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.ui-modal__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 24px;
    font-family: var(--font-heading);
    background: rgba(255, 74, 74, .18);
    border: 1px solid rgba(255, 74, 74, .35);
}

.ui-modal__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
}

.ui-modal__subtitle {
    font-family: var(--font-heading);
    font-size: 18px;
    opacity: .85;
}

.ui-modal__body {
    padding: 14px 18px 18px;
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 1.4;
}

.ui-modal__footer {
    padding: 14px 18px 18px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.ui-modal__btn {
    border: 0;
    border-radius: 12px;
    padding: 10px 16px;
    font-family: var(--font-heading);
    font-weight: 800;
    cursor: pointer;
    background: var(--primary-main);
    color: #fff;
    box-shadow: 0 12px 22px rgba(176, 68, 18, 0.25);
}

.ui-modal__btn:hover {
    filter: brightness(1.05);
}

@media (max-width: 480px) {
    .ui-modal__card {
        top: 14vh;
    }
}



/* ==========================================================
   SERVICE ESTIMATE POP-UP MODAL
   ========================================================== */
.svc-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
}

.svc-modal.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
}

.svc-modal__card {
    position: relative;
    width: min(580px, calc(100% - 32px));
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    color: #1b1b1b;
    transform: translateY(20px);
    opacity: 0;
    animation: svcModalIn 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes svcModalIn {
    to { transform: translateY(0); opacity: 1; }
}

/* ── Branded Header ─────────────────────────────────────────── */
.svc-modal__header {
    background: var(--primary-main);
    padding: 28px 28px 24px;
    text-align: center;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.svc-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: none;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,0.85);
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}

.svc-modal__close:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

.svc-modal__header-badge {
    display: inline-block;
    background: rgba(177, 46, 46, 0.2);
    border: 1px solid rgba(177, 46, 46, 0.5);
    color: var(--cta-orange);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.svc-modal__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -0.3px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
}

.svc-modal__subtitle {
    font-family: var(--font-body);
    font-size: 17px;
    color: rgba(255,255,255,0.72);
    line-height: 1.5;
}

/* ── Form ───────────────────────────────────────────────────── */
.svc-modal__form {
    padding: 24px 28px 28px;
}

.svc-modal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.svc-modal__field {
    min-width: 0;
}

.svc-modal__field--full {
    grid-column: 1 / -1;
}

.svc-modal__field label {
    display: block;
    font-size: 18px;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #555;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.svc-modal__field input,
.svc-modal__field select {
    width: 100%;
    height: 48px;
    border: 1.5px solid #e5e7eb;
    outline: 0;
    background: #f9fafb;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 18px;
    font-family: var(--font-body);
    color: #1b1b1b;
    box-sizing: border-box;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.svc-modal__field input:focus,
.svc-modal__field select:focus {
    border-color: var(--primary-main);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(42, 58, 26, 0.1);
}

.svc-modal__field input::placeholder {
    color: #b0b7c3;
}

.svc-modal__recaptcha {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.svc-modal__recaptcha .recaptcha-scale {
    display: inline-block;
    transform: scale(0.88);
    transform-origin: left center;
}

/* ── Submit ─────────────────────────────────────────────────── */
.svc-modal__submit {
    display: block;
    width: 100%;
    margin-top: 18px;
    padding: 17px;
    border: none;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 17px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    background: var(--cta-orange);
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(177, 46, 46, 0.4);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.svc-modal__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(177, 46, 46, 0.5);
    filter: brightness(1.05);
}

.svc-modal__submit:active {
    transform: translateY(0);
}

/* ── Trust row ──────────────────────────────────────────────── */
.svc-modal__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.svc-modal__trust span {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #6b7280;
}

/* ── Divider ────────────────────────────────────────────────── */
.svc-modal__divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0 14px;
    color: #d1d5db;
    font-size: 18px;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9ca3af;
}

.svc-modal__divider::before,
.svc-modal__divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

/* ── Phone CTA ──────────────────────────────────────────────── */
.svc-modal__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border: 2px solid var(--primary-main);
    border-radius: 12px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 20px;
    color: var(--primary-main);
    transition: background 0.18s ease, color 0.18s ease;
}

.svc-modal__phone svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.svc-modal__phone:hover {
    background: var(--primary-main);
    color: #fff;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 600px) {
    .svc-modal__card {
        width: calc(100% - 20px);
        border-radius: 16px;
    }

    .svc-modal__header {
        padding: 24px 20px 20px;
        border-radius: 16px 16px 0 0;
    }

    .svc-modal__title {
        font-size: 20px;
    }

    .svc-modal__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .svc-modal__field--full {
        grid-column: 1;
    }

    .svc-modal__form {
        padding: 20px 18px 24px;
    }

    .svc-modal__trust {
        gap: 10px;
    }
}
/* ==========================================================
   PROFESSIONAL ENHANCEMENT LAYER
   - Font upgrades, color polish, spacing refinements,
     micro-animations, and cross-section consistency fixes
   ========================================================== */

/* --- Font upgrade ---------------------------------------- */
:root {
    --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
    --font-heading: "Barlow Condensed", "Montserrat", system-ui, sans-serif;
    --font-main: var(--font-heading);

    /* Brand shadow values (derived from #9FB12E) */
    --shadow-green-sm:  0 4px 14px rgba(177, 46, 46, 0.28);
    --shadow-green-md:  0 8px 26px rgba(177, 46, 46, 0.36);
    --shadow-green-lg:  0 14px 40px rgba(177, 46, 46, 0.44);
    --shadow-dark-sm:   0 4px 16px rgba(0,0,0,0.18);
    --shadow-dark-md:   0 10px 32px rgba(0,0,0,0.22);
}

/* --- Header refinements ---------------------------------- */
.site-header {
    border-bottom: 2px solid var(--primary-accent);
    box-shadow: 0 4px 24px rgba(0,0,0,0.45);
}

.btn-solid {
    background: var(--primary-accent);
    border: none;
    box-shadow: var(--cta-orange), inset 0 1px 0 rgba(255,255,255,0.15);
    letter-spacing: 0.08em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: var(--cta-orange);
    filter: brightness(1.06);
}

/* --- Hero: Kicker badge ---------------------------------- */
.hero-kicker {
    background: rgba(177, 46, 46, 0.15);
    border: 1px solid rgba(170, 37, 37, 0.4);
    color: var(--main-text);
    border-radius: 6px;
    letter-spacing: 2px;
    font-size: 20px;
    padding: 7px 14px;
}


/* --- Hero: Icon list cards ------------------------------- */
.hero-points {
    border: 1px solid rgba(177, 46, 46, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.hero-point {
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: background 0.18s ease;
}

.hero-point:hover {
    background: rgba(159, 177, 46, 0.08);
}

.hero-point::before {
    background: rgba(177, 46, 46, 0.2);
    border: 1px solid rgba(177, 46, 46, 0.45);
    border-radius: 8px;
}

.icon-list__q {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.icon-list__a {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
}

/* --- Hero title and CTA ---------------------------------- */
.hero-title {
    font-family: "Barlow Condensed", "Montserrat", sans-serif;
    font-weight: 800;
    font-size: clamp(26px, 2.8vw, 40px);
    line-height: 1.12;
    letter-spacing: 0.1px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.hero-call {
    background: var(--primary-accent);
    border-radius: 10px;
    box-shadow: var(--shadow-green-md);
    border: none;
}
.hero-call:hover {
    box-shadow: var(--shadow-green-lg);
    transform: translateY(-3px);
}

/* --- Section headings typography upgrade ----------------- */
.why-title,
.services-title,
.pros-title,
.financing-cta__title,
.ga-guarantee__title,
.reviews-split__title,
.gallery-title,
.sa2-title,
.final-title {
    font-family: "Barlow Condensed", "Montserrat", sans-serif;
    letter-spacing: 0.5px;
}

/* --- Services section: kicker badge --------------------- */
.services-kicker {
    background: rgba(177, 46, 46, 0.1);
    border-color: rgba(177, 46, 46, 0.35);
    color: var(--primary-accent);
    font-size: 18px;
    letter-spacing: 3.5px;
    border-radius: 6px;
    padding: 7px 18px;
}

/* --- Service cards -------------------------------------- */
.svc-card {
    border-top: 3px solid var(--primary-accent);
    box-shadow: 0 4px 22px rgba(0,0,0,0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.svc-card:hover {
    border-color: var(--primary-accent);
    box-shadow: 0 18px 42px rgba(0,0,0,0.14);
}

.svc-icon {
    background: var(--primary-accent);
    box-shadow: 0 4px 12px rgba(177, 46, 46, 0.3);
    border-radius: 12px;
}

.svc-title {
    font-family: "Barlow Condensed", "Montserrat", sans-serif;
    font-size: 20px;
    letter-spacing: 0.8px;
    color: var(--primary-main);
}

.svc-btn {
    background: var(--primary-accent);
    border-radius: 8px;
    font-size: 20px;
    letter-spacing: 0.8px;
    box-shadow: var(--shadow-green-sm);
    padding: 0 18px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

/* --- Why Trust cards ------------------------------------ */
.why-card {
    border: 1.5px solid rgba(29, 29, 29, 0.12);
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
    border-radius: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.why-big {
    font-family: "Barlow Condensed", "Montserrat", sans-serif;
    font-size: 34px;
    letter-spacing: 0.5px;
    color: var(--primary-accent);
}

.why-kicker-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-main);
    background: rgba(29, 29, 29, 0.07);
    border: 1px solid rgba(29, 29, 29, 0.15);
    border-radius: 999px;
    padding: 6px 16px;
    margin-bottom: 22px;
}

/* --- Pros section cards --------------------------------- */
.pros-card-icon {
    background: var(--primary-accent);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(177, 46, 46, 0.25);
}

.pros-card-text h3 {
    font-family: "Barlow Condensed", "Montserrat", sans-serif;
    font-size: 20px;
    letter-spacing: 0.4px;
}

.pros-btn {
    background: var(--primary-accent);
    border-radius: 10px;
    box-shadow: var(--shadow-green-md);
    letter-spacing: 0.8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.pros-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-green-lg);
    filter: brightness(1.06);
}

/* --- Financing / CTA banner ----------------------------- */
.financing-cta__eyebrow {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 999px;
}

.financing-cta__btn {
    background: var(--primary-accent);
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(26, 51, 92, 0.5);
    letter-spacing: 0.8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.financing-cta__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(26, 51, 92, 0.6), 0 0 0 2px rgba(255, 255, 255, 0.15);
    filter: brightness(1.06);
}

/* --- Guarantee bar -------------------------------------- */
.ga-guarantee {
    background: linear-gradient(135deg, #181818 0%, #222 50%, #1a1a1a 100%);
    border-top: 3px solid var(--primary-accent);
    border-bottom: 3px solid var(--primary-accent);
}
.ga-guarantee::before,
.ga-guarantee::after {
    display: none; /* replaced by border on parent */
}

.ga-guarantee__title {
    font-family: "Barlow Condensed", "Montserrat", sans-serif;
    font-size: 52px;
    letter-spacing: 0.5px;
}

.ga-guarantee__ico {
    background: var(--primary-accent);
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(177, 46, 46, 0.35);
}

.ga-guarantee__ico svg path,
.ga-guarantee__ico svg rect,
.ga-guarantee__ico svg circle,
.ga-guarantee__ico svg line,
.ga-guarantee__ico svg polygon {
    fill: #fff !important;
    stroke: #fff !important;
}

/* --- Reviews section ------------------------------------ */
.reviews-split__title {
    font-size: 52px;
    line-height: 1.05;
    color: var(--primary-main);
}

.review2-stars {
    color: var(--primary-accent);
    font-size: 18px;
    letter-spacing: 3px;
}

.review2-link {
    color: var(--primary-accent);
    font-weight: 700;
}
.review2-link:hover {
    color: var(--primary-main);
}

.reviews-split__track::-webkit-scrollbar-thumb {
    background: var(--primary-accent);
}

.review2-card {
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.review2-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.review-modal__name {
    color: var(--primary-accent);
}

/* --- Gallery -------------------------------------------- */
.gallery-kicker {
    color: var(--primary-accent);
    letter-spacing: 5px;
    font-size: 17px;
}

.gallery-title {
    color: var(--primary-main);
}

.gallery-dot.is-active {
    background: var(--primary-accent);
    width: 24px;
}

.gallery-dot {
    transition: background 0.18s ease, width 0.18s ease;
}

.gallery-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,0,0,0.09);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(0,0,0,0.14);
}

/* --- Service Areas -------------------------------------- */
.sa2-cta {
    background: var(--primary-accent);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.8px;
    box-shadow: var(--shadow-green-sm);
    border-radius: 8px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sa2-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green-md);
    color: #fff;
}

.sa2-check {
    color: var(--primary-accent);
}

/* --- Footer / Final CTA --------------------------------- */
.final-cta-bg-card {
    border-radius: 48px 48px 0 0;
}
.final-cta-bg-card::before {
    border-radius: 48px 48px 0 0;
}

.final-submit {
    background: var(--primary-accent);
    border-radius: 10px;
    box-shadow: var(--shadow-green-md);
    letter-spacing: 0.8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.final-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green-lg);
    filter: brightness(1.06);
}

.final-form-eyebrow {
    background: rgba(177, 46, 46, 0.15);
    border-color: rgba(177, 46, 46, 0.4);
    color: var(--primary-accent);
    border-radius: 6px;
    font-size: 15px;
    letter-spacing: 3px;
}

.final-call {
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.08);
}

.final-field input:focus,
.final-field select:focus {
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(177, 46, 46, 0.2);
}

/* --- Why-Trust section badge (HTML uses .why-inner kicker) */
.why-inner .why-kicker {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-main);
    background: rgba(29, 29, 29, 0.07);
    border: 1px solid rgba(29, 29, 29, 0.15);
    border-radius: 999px;
    padding: 6px 16px;
    margin-bottom: 18px;
}

/* --- Subtle fade-in animation for major sections --------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-trust,
.services,
.pros,
.financing-cta,
.ga-guarantee,
.reviews-split,
.gallery,
.service-areas,
.final-cta {
    animation: fadeInUp 0.5s ease both;
    animation-timeline: view();
    animation-range: entry 0% entry 25%;
}

/* Fallback for browsers without animation-timeline support */
@supports not (animation-timeline: view()) {
    .why-trust,
    .services,
    .pros,
    .financing-cta,
    .ga-guarantee,
    .reviews-split,
    .gallery,
    .service-areas,
    .final-cta {
        animation: none;
    }
}

/* --- Scrollbar brand color ------------------------------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb {
    background: var(--primary-accent);
    border-radius: 999px;
}

/* --- Focus rings ---------------------------------------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary-accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* --- Hero form card ------------------------------------- */
.hero-form-card {
    background: #1a1a1a;
    border-top: 3px solid var(--cta-orange);
}

.hero-form-title {
    font-family: "Barlow Condensed", "Montserrat", sans-serif;
    font-size: 30px;
    letter-spacing: 1px;
}

.hero-step-btn {
    background: var(--primary-accent);
    border: none;
    border-radius: 10px;
    box-shadow: var(--shadow-green-md);
    letter-spacing: 0.8px;
    font-family: "Barlow Condensed", "Montserrat", sans-serif;
    font-size: 19px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.hero-step-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green-lg);
    filter: brightness(1.06);
}

/* --- Promo card offers (why-trust section) -------------- */
.why-btn {
    background: var(--primary-accent);
    border-radius: 8px;
    box-shadow: var(--shadow-green-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.why-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green-md);
    filter: brightness(1.06);
}

/* --- Guarantee badge/modal form ------------------------- */
.svc-modal__submit {
    background: var(--primary-accent);
    border-radius: 10px;
    box-shadow: var(--shadow-green-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.svc-modal__submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green-lg);
    filter: brightness(1.06);
}

/* END OF ENHANCEMENT LAYER */

/* ==========================================================
   MOBILE FORM OVERFLOW FIX  (max-width: 768px)
   Root causes fixed:
   1. hero-form-wrap had no dedicated small-screen rules
   2. hero-fields grids (2-col / 3-col) not collapsing
   3. hero-step-btn kept min-width: 240px and white-space: nowrap
   4. No max-width / box-sizing guard on form card at small sizes
   ========================================================== */

@media (max-width: 768px) {

    /* --- Outer wrapper: full bleed, no overflow leak --- */
    .hero-form-wrap {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden;
    }

    /* --- Card: full bleed, border-box, square corners --- */
    .hero-form-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        border-radius: 0 !important;
        padding: 20px 16px 18px !important;
        overflow: hidden;
    }

    /* --- Steps grid: always single column --- */
    .hero-steps,
    .hero-steps[data-step="2"] {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
    }

    /* --- Field grids: always single column --- */
    .hero-fields--step,
    .hero-fields--3col {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
    }

    /* --- Individual field: full width, no overflow --- */
    .field,
    .field--span2 {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .field input,
    .field select {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        min-width: 0 !important;
    }

    /* --- Controls row: full width --- */
    .hero-step-controls {
        width: 100% !important;
        justify-content: stretch !important;
        grid-column: 1 !important;
    }

    /* --- Button: full width, text can wrap --- */
    .hero-step-btn,
    #heroSubmitBtn {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        height: auto !important;
        min-height: 56px !important;
        padding: 14px 16px !important;
        font-size: 18px !important;
        letter-spacing: 0.5px !important;
        text-align: center !important;
    }

    /* --- Form note --- */
    .hero-form-note {
        width: 100%;
        box-sizing: border-box;
        padding: 0 4px;
    }
}

/* Extra safety for very small screens */
@media (max-width: 480px) {
    .hero-form-card {
        padding: 18px 12px 16px !important;
    }

    .hero-step-btn,
    #heroSubmitBtn {
        font-size: 18px !important;
        padding: 13px 12px !important;
    }
}
/* END MOBILE FORM FIX */
/* ==========================================================
   HERO FORM — SINGLE ROW LAYOUT
   Replaces the 2-step wizard with one flat row:
   Name | Phone | Email | Address | Service | Submit btn
   ========================================================== */

.hero-fields--single-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
    gap: 14px;
    align-items: end;
    width: 100%;
}

/* Submit wrapper aligns to bottom of the grid row */
.hero-form-submit-wrap {
    display: flex;
    align-items: flex-end;
}

.hero-form-submit-wrap .hero-step-btn {
    height: 54px;
    min-width: 0;
    white-space: nowrap;
    padding: 0 22px;
    font-size: 15px;
    letter-spacing: 0.6px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Inputs & select inside the single row */
.hero-fields--single-row .field input,
.hero-fields--single-row .field select {
    height: 54px;
    width: 100%;
    box-sizing: border-box;
}

/* Tablet: 3 + 3 grid */
@media (max-width: 1280px) {
    .hero-fields--single-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .hero-form-submit-wrap {
        grid-column: 1 / -1;
    }
    .hero-form-submit-wrap .hero-step-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile: full stack */
@media (max-width: 768px) {
    .hero-fields--single-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }
    .hero-fields--single-row .field,
    .hero-form-submit-wrap {
        width: 100% !important;
    }
    .hero-form-submit-wrap .hero-step-btn {
        width: 100% !important;
        justify-content: center;
        height: auto !important;
        min-height: 54px !important;
        padding: 14px 16px !important;
        white-space: normal !important;
    }
}
/* END SINGLE ROW */

/* ==========================================================
   HERO FORM — STEP LAYOUT UPDATES
   Step 1: 3-col (Name, Phone, Email)
   Step 2: 2-col (Address, Service) — full width with button
   ========================================================== */

/* Step 2: 2 equal columns */
.hero-fields--2col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: end;
}

/* On mobile, collapse to single column */
@media (max-width: 1200px) {
    .hero-fields--2col {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .hero-fields--2col {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }
}
/* END STEP LAYOUT UPDATES */

/* ==========================================================
   STEP 2: Address + Service + Button all in one row
   ========================================================== */

.hero-fields--2col-btn {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

/* Invisible label keeps button baseline-aligned with fields */
.hero-step2-btn-wrap {
    display: flex;
    flex-direction: column;
}

.hero-step2-btn-label {
    display: block;
    font-size: 14px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    color: transparent;
    margin-bottom: 8px;
    text-transform: uppercase;
    user-select: none;
    pointer-events: none;
}

.hero-step2-btn-wrap .hero-step-btn {
    height: 54px;
    white-space: nowrap;
    min-width: 0;
    padding: 0 22px;
    font-size: 15px;
}

/* Tablet: stack to single column */
@media (max-width: 1200px) {
    .hero-fields--2col-btn {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .hero-step2-btn-label { display: none; }
    .hero-step2-btn-wrap .hero-step-btn {
        width: 100%;
        height: auto;
        min-height: 54px;
        padding: 14px 16px;
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .hero-fields--2col-btn {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }
}
/* END STEP 2 ROW */

/* Submit button lives inside step 2 row — always visible there */
.hero-step2-btn-wrap #heroSubmitBtn {
    display: inline-flex !important;
}

/* Step 2 button — full width on mobile */
@media (max-width: 1200px) {
    .hero-step2-btn-wrap {
        width: 100%;
    }
    .hero-step2-btn-wrap #heroSubmitBtn {
        width: 100% !important;
        justify-content: center;
        height: auto !important;
        min-height: 54px !important;
        padding: 14px 16px !important;
        white-space: normal !important;
        font-size: 15px !important;
    }
}