/* =========================================================
   01 - VARIABLES / TOKENS
========================================================= */
:root {
    /* Brand */
    --primary-blue: #0b5ed7;
    --primary-green: #19b54a;
    --brand-orange: #ec8c35;
    --brand-blue: #50aad3;

    /* Text */
    --dark-text: #0b1b2b;
    --text-strong: #1b1b1b;
    --text-muted: #4b5563;
    --text-muted-2: #7a7a7a;

    /* UI */
    --border-color: #1c7ed6;
    --surface: #ffffff;
    --bg-soft: #eaf2ff;

    /* Form */
    --field-bg: #f3f3f3;
    --field-bg-mobile: #f2f2f2;

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

    /* Typography — mirrors Thunder Restoration's type system */
    --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --font-heading: "Archivo Black", "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --font-main: var(--font-heading);

    /* Shadows */
    --shadow-header: 0 8px 20px rgba(0, 0, 0, 0.12);
    --shadow-orange: 0 5px 15px rgba(236, 140, 53, 0.45);
    --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.2);

    /* Radius */
    --radius-pill: 999px;
}

/* =========================================================
   02 - BASE / RESET
========================================================= */
html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
}

*,
*::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;
    /* better than hidden */
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--dark-text);
}

/* =========================================================
   10 - HEADER
========================================================= */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--surface);
    z-index: 1000;
    box-shadow: var(--shadow-header);
}

.header-inner {
    max-width: 100%;
    margin: 0;
    /* match the hero's left padding so the logo aligns with the H1,
       and let the CTA push to the far right edge */
    padding: 14px clamp(28px, 4vw, 64px);
}

/* Header V2 layout */
.header-v2 {
    display: flex;
    align-items: center;
    gap: 18px;
}

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

.header-logo img {
    height: 96px;
    display: block;
}

.header-cta {
    flex: 0 0 auto;
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.call-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    line-height: 1.2;
}

/* CTA Button - premium header proportions */
.btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;

    background: var(--brand-orange);
    color: #fff;
    border: 0;
    box-shadow: 0 4px 14px rgba(236, 140, 53, 0.32);

    border-radius: 10px;
    padding: 0 22px;

    font-weight: 800;
    height: 58px;
    font-size: 21px;
    line-height: 1;
    letter-spacing: 0.02em;

    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.btn-solid::before {
    content: "";
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") center/contain no-repeat;
    flex-shrink: 0;
}

.btn-solid:hover {
    background-color: #d97a2a;
    box-shadow: 0 6px 18px rgba(236, 140, 53, 0.45);
    transform: translateY(-1px);
}

.call-sub {
    margin: 0;
    align-self: stretch;
    font-size: 18px;
    color: var(--brand-blue);
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* =========================================================
   10.1 - HEADER RESPONSIVE
========================================================= */
@media (max-width: 992px) {
    .header-inner {
        padding: 12px 16px;
    }

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

    .call-wrap .btn-solid {
        height: auto;
        min-height: 54px;
        font-size: 17px;
        padding: 10px 18px;
        white-space: normal;
        line-height: 1.25;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .header-inner {
        padding: 14px 16px;
    }

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

    .header-cta {
        flex: 1 1 auto;
        min-width: 0;
    }

    .call-wrap {
        width: 100%;
        max-width: 100%;
        align-items: stretch;
        gap: 4px;
    }

    .call-wrap .btn-solid {
        width: 100%;
        height: auto;
        min-height: 48px;
        font-size: 14px;
        padding: 10px 14px;
        border-radius: 12px;
        white-space: normal;
        line-height: 1.25;
        text-align: center;
    }

    .call-sub {
        text-align: center;
        font-size: 13px;
        letter-spacing: 0.08em;
    }
}

/* =========================================================
   (OPTIONAL) MOBILE JUMP DROPDOWN
========================================================= */
.mobile-jump {
    display: none;
}

@media (max-width: 992px) {
    .mobile-jump {
        display: block;
        border-top: 1px solid rgba(0, 0, 0, 0.12);
        background: var(--surface);
    }

    .mobile-jump__summary {
        list-style: none;
        cursor: pointer;
        padding: 12px 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        user-select: none;
    }

    .mobile-jump__summary::-webkit-details-marker {
        display: none;
    }

    .mobile-jump__label {
        font-weight: 700;
        font-size: 15px;
        color: var(--dark-text);
    }

    .mobile-jump__chev {
        display: inline-flex;
        transition: transform 0.2s ease;
        font-size: 16px;
        line-height: 1;
    }

    .mobile-jump[open] .mobile-jump__chev {
        transform: rotate(180deg);
    }

    .mobile-jump__panel {
        border-top: 1px solid rgba(0, 0, 0, 0.12);
        text-align: center;
    }

    .mobile-jump__link {
        display: block;
        padding: 14px 14px;
        text-align: center;
        text-decoration: none;
        font-weight: 700;
        font-size: 15px;
        color: var(--dark-text);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .mobile-jump__btn {
        display: inline-flex;
        margin: 14px auto 16px;
        padding: 12px 18px;
        text-decoration: none;
        font-weight: 800;
        font-size: 12px;
        border-radius: var(--radius-pill);
        border: 2px solid currentColor;
    }
}

/* =========================================================
   20 - HERO
========================================================= */
.hero {
    position: relative;
    background: var(--bg-soft);
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 0.85fr;
    min-height: 560px;
    height: auto;
}

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

.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: center;
    padding: 70px 24px 40px;
}

.hero-copy {
    width: 100%;
    max-width: 690px;
    text-align: left;
    color: #fff;
    display: flex;
    flex-direction: column;
}

/* Desktop: visually place kicker above H1 (HTML order is H1-first for mobile) */
.hero-copy .hero-kicker {
    order: -1;
}

/* Eyebrow: small accent line + tight uppercase label */
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--brand-orange);
    margin-bottom: 18px;
    align-self: flex-start;
}

.hero-kicker::before {
    content: "";
    display: inline-block;
    width: 36px;
    height: 2px;
    background: var(--brand-orange);
}

/* Headline: bigger, tighter, with depth */
.hero-title {
    margin: 0 0 18px;
    font-weight: 900;
    line-height: 1.04;
    font-size: clamp(30px, 2.8vw, 40px);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.hero-title .kw {
    color: var(--brand-orange);
    background: linear-gradient(135deg, #ffb55c 0%, #ec8c35 55%, #d97a2a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

/* Responsive line breaks for hero H1 */
.hero-title .br-mobile { display: none; }
.hero-title .br-desktop { display: inline; }
@media (max-width: 768px) {
    .hero-title .br-mobile { display: inline; }
    .hero-title .br-desktop { display: none; }
}

/* Sub copy */
.hero-sub {
    margin: 0 0 26px;
    max-width: 540px;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
}

/* HERO ICON LIST */
.hero-points {
    list-style: none;
    margin: 0 0 22px;
    display: grid;
    gap: 14px;
    max-width: 520px;
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-point {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.96);
}

.hero-point img {
    width: 18px;
    height: 18px;
    padding: 9px;
    box-sizing: content-box;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    flex: 0 0 auto;
    display: block;
    filter: brightness(0) invert(1);
}

/* HERO TRUST BADGES */
.hero-badges {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px 8px 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    backdrop-filter: blur(6px);
}

.hero-badge-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brand-orange);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

/* CALL CTA */
.hero-call {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    align-self: flex-start;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #f59e3a 0%, #d97a2a 100%);
    border-radius: 14px;
    padding: 16px 36px;
    box-shadow:
        0 10px 28px rgba(217, 122, 42, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transition: transform .2s ease, box-shadow .2s ease;
}

.hero-call:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 36px rgba(217, 122, 42, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero-call-top {
    display: block;
    font-weight: 700;
    letter-spacing: 0.16em;
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.95;
    margin-bottom: 4px;
}

.hero-call-main {
    display: block;
    font-weight: 900;
    font-size: 26px;
    line-height: 1;
    letter-spacing: 0.01em;
}

/* RIGHT */
.hero-right {
    background: url("../images/hero-family.webp") center/cover no-repeat;
}

/* Floating Form (desktop) */
.hero-form-wrap {
    position: relative;
    margin: 0;
    /* tiny top padding stops margin-collapse so the card's negative
       margin lifts only the card (not this light background) into the hero */
    padding: 1px 24px 56px;
    width: 100%;
    background: var(--bg-soft);
    z-index: 5;
}

.hero-form-card {
    max-width: 1200px;
    margin: -48px auto 0;
    position: relative;
    z-index: 10;
    background: var(--surface);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    padding: 26px 28px 18px;
}

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

.hero-form-title {
    font-weight: 900;
    /* Sized to keep the longest hero-form title on a single line (desktop/tablet) */
    font-size: clamp(18px, 2vw, 28px);
    letter-spacing: 0.5px;
    color: #0b2a47;
    line-height: 1.15;
    white-space: nowrap;
}

.hero-form-sub {
    letter-spacing: 0 !important;
    text-transform: none !important;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 10px;
    font-size: 16px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.field input,
.field select {
    width: 100%;
    height: 54px;
    border: 0;
    outline: 0;
    background: var(--field-bg);
    border-radius: 8px;
    padding: 0 14px;
    font-size: 15px;
    color: var(--text-strong);
}

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

.hero-form-card .form-select {
    width: 100%;
    max-width: 100%;
    border: 0;
    background: var(--field-bg);
    border-radius: 8px;
    height: 54px;
    padding-top: 10px;
    padding-bottom: 10px;
}

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

/* 3-STEP WIZARD (DESKTOP) */
.hero-steps {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: end;
}

.hero-step {
    display: none;
}

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

.hero-step-controls {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
}

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

/* STEP 3: service + recaptcha in ONE ROW */
.hero-step[data-step="3"] .hero-fields--step {
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: end;
}

.hero-step[data-step="3"] .service-field {
    min-width: 0;
}

.hero-recaptcha {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

/* recaptcha scale handled by .recaptcha-scale utility */

/* Buttons */
.hero-step-btn {
    height: 64px;
    min-width: 240px;
    padding: 0 26px;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    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(--brand-orange);
    color: #fff;
    font-size: 18px;
    box-shadow: var(--shadow-orange);
}

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

/* (single-step hero form: submit button is always visible) */

.hero-form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted-2);
    margin-top: 8px;
}

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

    .hero-form-wrap {
        position: static;
        left: auto;
        bottom: auto;
        transform: none;
        width: 100%;
    }

    .hero-form-card {
        width: 100%;
        margin-top: 0;
        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-step[data-step="3"] .hero-fields--step {
        grid-template-columns: 1fr;
    }

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

    .hero-recaptcha {
        justify-content: center;
    }

    /* recaptcha scale handled by .recaptcha-scale utility */
}

/* zoom/floating bug when viewport height is short */
@media (max-height: 820px) {
    .hero {
        margin-bottom: 0;
    }

    .hero-form-wrap {
        position: static;
        left: auto;
        bottom: auto;
        transform: none;
        width: 100%;
    }

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

@media (max-width: 768px) {
    .hero {
        padding-bottom: 0;
    }

    /* Full-bleed form card — fill the section edge to edge on mobile
       (the card keeps its own inner padding so fields stay off the edges) */
    .hero-form-wrap {
        padding-left: 0;
        padding-right: 0;
    }

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

    .hero-left-inner {
        padding: 42px 8px 42px;
        display: block;
    }

    .hero-copy {
        text-align: center;
        max-width: 520px;
        margin: 0 auto;
    }

    /* Mobile: use natural source order (H1 first) */
    .hero-copy .hero-kicker {
        order: 0;
    }

    .hero-kicker {
        align-self: center;
        max-width: 100%;
        gap: 8px;
        padding: 6px 12px 6px 8px;
        background: rgba(236, 140, 53, 0.10);
        border: 1px solid rgba(236, 140, 53, 0.30);
        border-radius: 999px;
        font-size: clamp(9px, 2.6vw, 11px);
        letter-spacing: 0.14em;
        white-space: nowrap;
        margin-bottom: 18px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .hero-kicker::before {
        width: 14px;
        height: 2px;
        flex-shrink: 0;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.06;
        margin-bottom: 16px;
        letter-spacing: -0.02em;
        text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
    }

    .hero-sub {
        font-size: 16px;
        line-height: 1.55;
        margin: 0 auto 24px;
    }

    .hero-badges {
        justify-content: center;
        margin: 0 0 28px;
    }

    .hero-points {
        margin: 0 auto 22px;
        max-width: 340px;
        text-align: left;
        justify-items: stretch;
        gap: 12px;
        padding: 18px 18px 18px 16px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 14px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .hero-point {
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        font-size: 15px;
        line-height: 1.35;
        gap: 12px;
    }

    .hero-point span {
        flex: 1 1 auto;
        padding-top: 3px;
    }

    .hero-point img {
        width: 16px;
        height: 16px;
        padding: 7px;
    }

    .hero-call {
        width: min(92%, 420px);
        padding: 18px 22px;
        border-radius: 14px;
        align-self: center;
    }

    .hero-call-top {
        font-size: 12px;
        letter-spacing: 0.16em;
        margin-bottom: 6px;
    }

    .hero-call-main {
        font-size: 22px;
    }

    /* Thunder-style form header on mobile: divider line + compact title + light sub */
    .hero-form-head {
        padding-top: 6px;
        margin-bottom: 20px;
    }

    .hero-form-head::before {
        content: "";
        display: block;
        width: 52px;
        height: 3px;
        margin: 0 auto 14px;
        border-radius: 3px;
        background: linear-gradient(90deg, #f59e3a 0%, #d97a2a 100%);
        box-shadow: 0 2px 8px rgba(217, 122, 42, 0.32);
    }

    .hero-form-title {
        font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
        font-size: 15px;
        font-weight: 800;
        letter-spacing: 0.2px;
        line-height: 1.3;
        color: #023049;
        text-transform: uppercase;
        white-space: normal;
        padding: 0 8px;
        max-width: 100%;
    }

    .hero-form-sub {
        font-family: var(--font-body);
        font-size: 13px;
        font-weight: 500;
        color: #5b6478;
        line-height: 1.55;
        margin: 10px auto 0;
        max-width: 92%;
    }

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

    .field input,
    .field select {
        height: 56px;
        border-radius: 6px;
        background: var(--field-bg-mobile);
        padding: 0 14px;
        font-size: 15px;
    }

}

/* =========================================================
   30 - WHY TRUST US (OFFERS STYLE)
   (DO NOT AFFECT OTHER SECTIONS)
   - KEEP background image
========================================================= */
.why-trust {
    position: relative;
    padding: 96px 0 110px;
    background-color: #eef4fb;

    /* Faded Cool Zone watermark behind the section */
    background-image: url("../images/why-trust-bg.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* Colored divider strip above the "common AC issues" section */
.why-trust::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #f59e3a 0%, #d97a2a 100%);
}

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

.why-title {
    margin: 0 0 18px;
    font-weight: 900;
    letter-spacing: 0.5px;
    /* Sized so the longest section title stays on a single line (desktop/tablet) */
    font-size: clamp(24px, 3.4vw, 44px);
    color: #1a1a1a;
    white-space: nowrap;
}

/* Narrow screens: allow the long title to wrap (one line isn't feasible) */
@media (max-width: 900px) {
    .why-title {
        white-space: normal;
    }
}

/* 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);
}

.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: var(--surface);
    border-radius: 18px;

    /* More padding so content fills the coupon better */
    padding: 40px 28px 34px;

    border: 2px dashed rgba(236, 140, 53, 0.98);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
    overflow: hidden;

    /* Fill height consistently even without expiration footer */
    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;
}

/* Big main value */
.why-big {
    font-weight: 900;
    font-size: 85px;
    line-height: 1;
    color: var(--brand-orange);
    margin: 0;

    word-break: keep-all;
    white-space: nowrap;
}

/* Card 3 (0%) can wrap safely if needed */
.why-card:nth-child(3) .why-big {
    white-space: normal;
    line-height: 0.95;
}

/* Headline text */
.why-mid {
    font-weight: 900;
    font-size: 26px;
    color: var(--brand-blue);
    margin: 0;
}

/* Supporting line */
.why-small {
    font-weight: 600;
    font-size: 18px;
    color: rgba(12, 42, 79, 0.70);
    margin: 0;
}

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

/* If you ever re-enable the expiration footer */
.why-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    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(--brand-orange);
    color: #fff;
    text-decoration: none;

    height: 54px;
    padding: 0 34px;
    border-radius: 10px;

    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow-orange);
}

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

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

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

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

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

@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;
        background-size: cover;
    }

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

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

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

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

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

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

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

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

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

/* =========================================================
   40 - SERVICES (NEW LAYOUT)
   Only affects .services section
========================================================= */
.services {
    position: relative;
    padding: 86px 0 90px;
    background: var(--surface);
}

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

.services-head {
    text-align: center;
    margin-bottom: 34px;
}

.services-kicker {
    font-weight: 700;
    letter-spacing: 6px;
    font-size: 18px;
    color: var(--brand-blue);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.services-title {
    font-weight: 900;
    font-size: 54px;
    line-height: 1.05;
    color: #0b0b0b;
    margin: 0;
}

/* 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-weight: 600;
    font-size: 16px;
    color: var(--text-strong);
}

.services-check-ico {
    width: 22px;
    height: 22px;
    border-radius: var(--radius-pill);
    display: grid;
    place-items: center;
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
    line-height: 1;
    font-weight: 900;
    font-size: 14px;
}

/* Service highlights as rounded pill badges with a leading dot (Thunder-style) */
.services-checks--pills {
    gap: 14px;
}

.services-checks--pills .services-check {
    gap: 10px;
    padding: 10px 22px;
    border-radius: 999px;
    background: rgba(80, 170, 211, 0.12);
    border: 2px solid var(--brand-blue);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #2b7ea3;
}

.services-checks--pills .services-check::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--brand-blue);
    flex: 0 0 9px;
}

/* GRID like reference (no cards) */
.services-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 44px 34px;
    align-items: stretch;
    justify-content: center;
}

/* SERVICE ITEM */
.svc-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.svc-item .svc-cta {
    margin-top: auto;
    padding-top: 22px;
}

.svc-item .svc-cta .why-btn {
    height: 46px;
    padding: 0 22px;
    font-size: 14px;
    letter-spacing: 0.8px;
    white-space: nowrap;
}

/* =========================================================
   LP DEEP-CONTENT SERVICES SECTION (SEO long-form)
========================================================= */
.lp-services-deep {
    background: #f4f7fb;
    padding: 72px 0;
}

.lp-services-deep__inner {
    width: min(820px, calc(100% - 32px));
    margin: 0 auto;
    color: #1c1c1c;
}

.lp-services-deep h2 {
    font-weight: 900;
    font-size: 30px;
    color: #0b2a47;
    margin: 0 0 22px;
    letter-spacing: .2px;
}

.lp-services-deep h3 {
    font-weight: 800;
    font-size: 18px;
    color: #0b2a47;
    margin: 28px 0 12px;
}

.lp-services-deep p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0 0 14px;
}

.lp-services-deep p strong {
    color: #0b2a47;
}

.lp-services-deep__points {
    list-style: none;
    padding: 0;
    margin: 18px 0 6px;
    display: grid;
    gap: 18px;
}

.lp-services-deep__points li {
    position: relative;
    padding: 0 0 0 28px;
    font-size: 15.5px;
    line-height: 1.7;
    color: #3a3a3a;
}

.lp-services-deep__points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand-orange);
    font-weight: 900;
    font-size: 16px;
}

.lp-services-deep__points li strong {
    color: #0b2a47;
}

.lp-services-deep__cta {
    margin-top: 32px;
    text-align: center;
}

.lp-services-deep__cta .lp-call-btn,
.lp-faq__cta .lp-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 38px;
    background: #0b2a47;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(11, 42, 71, .28);
    white-space: nowrap;
}

/* =========================================================
   LP FAQ ACCORDION
========================================================= */
.lp-faq {
    background: #fff;
    padding: 72px 0;
}

.lp-faq__inner {
    width: min(820px, calc(100% - 32px));
    margin: 0 auto;
}

.lp-faq h2 {
    text-align: center;
    font-weight: 900;
    font-size: 30px;
    color: #0b2a47;
    margin: 0 0 32px;
    line-height: 1.2;
}

.lp-faq__list {
    border-top: 1px solid #e2e6eb;
}

.lp-faq__item {
    border-bottom: 1px solid #e2e6eb;
}

.lp-faq__q {
    width: 100%;
    background: none;
    border: 0;
    text-align: left;
    padding: 22px 36px 22px 0;
    font-weight: 700;
    font-size: 15px;
    color: #0b2a47;
    cursor: pointer;
    display: block;
    position: relative;
    line-height: 1.45;
    font-family: inherit;
}

.lp-faq__q::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-blue, #50aad3);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    transition: transform .2s ease;
}

.lp-faq__item[open] .lp-faq__q::after {
    content: "–";
    transform: translateY(-50%);
}

.lp-faq__a {
    padding: 0 36px 22px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
}

.lp-faq__cta {
    margin-top: 36px;
    text-align: center;
}

@media (max-width: 640px) {
    .lp-services-deep { padding: 56px 0; }
    .lp-services-deep h2 { font-size: 24px; }
    .lp-services-deep h3 { font-size: 16px; }
    .lp-faq { padding: 56px 0; }
    .lp-faq h2 { font-size: 24px; }
}

.svc-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    color: var(--brand-blue);
    /* SVG uses currentColor */
}

.svc-icon svg {
    width: 44px;
    height: 44px;
    display: block;
}

/* Title under icon */
.svc-title {
    font-weight: 900;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #0b0b0b;
    margin: 0 0 12px;
}

/* When cards sit side by side, reserve 2 lines for the title so 1-line
   titles (e.g. "Refrigerant Leaks") still align their body with the rest */
@media (min-width: 641px) {
    .svc-title {
        min-height: 2.5em;
    }
}

/* bullet list */
.svc-points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.svc-points li {
    position: relative;
    padding-left: 16px;
    text-align: left;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.55;
    color: #2a2a2a;
}

.svc-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand-blue);
    font-weight: 900;
}

/* =========================================================
   40.1 - SERVICES RESPONSIVE
========================================================= */
@media (min-width: 1101px) {
    .services-grid>.svc-item:nth-last-child(2):nth-child(4n + 1) {
        grid-column: 2;
        /* start at column 2 */
    }

    .services-grid>.svc-item:last-child:nth-child(4n + 2) {
        grid-column: 3;
        /* put the next one at column 3 */
    }

    .services--five .services-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    /* each item takes 2 columns => 3 items per row */
    .services--five .services-grid>.svc-item {
        grid-column: span 2;
    }

    /* center the last row (items 4 & 5) */
    .services--five .services-grid>.svc-item:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .services--five .services-grid>.svc-item:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 28px;
    }
}

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

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

    .services-title {
        font-size: 38px;
    }

    .services-check {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        margin-top: 30px;
    }

    .svc-icon {
        margin-bottom: 10px;
    }

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

    /* On mobile the cards are full-width — keep titles like "Refrigerant Leaks" on one line */
    .svc-br {
        display: none;
    }

    .svc-points li {
        font-size: 15px;
    }
}

/* =========================================================
   50 - PROS (IMAGE + 2-COLUMN TEXT)
   Only affects .pros section
========================================================= */
.pros {
    padding: 96px 0;
    background: var(--surface);
}

.pros-inner {
    width: min(1250px, calc(100% - 48px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(360px, 520px) 1fr;
    gap: 64px;
    align-items: center;
}

/* LEFT IMAGE CARD */
.pros-photo {
    border-radius: 34px;
    overflow: hidden;
    background: #f2f6fb;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
}

.pros-photo img {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Pros section: 3-photo collage (one tall left + two stacked right) */
.pros-photo.pros-collage {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    aspect-ratio: 1 / 1;
    background: #f2f6fb;
}

.pros-collage img {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.pros-collage img:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.pros-collage img:nth-child(2) { grid-column: 2; grid-row: 1; }
.pros-collage img:nth-child(3) { grid-column: 2; grid-row: 2; }

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

.pros-title {
    font-weight: 900;
    font-size: 48px;
    line-height: 1.05;
    color: #121212;
    margin: 0 0 26px;
}

.pros-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 44px;
}

.pros-card {
    position: relative;
    padding-left: 34px;
}

.pros-card::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(236, 140, 53, 0.15);
    color: var(--brand-orange);
    font-weight: 900;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.pros-card h3 {
    margin: 0 0 8px;
    font-weight: 800;
    font-size: 20px;
    color: #121212;
}

.pros-card p {
    margin: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.55;
    color: #1f2937;
}

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

.pros-btn {
    background: var(--brand-orange);
    color: #fff;
    border-radius: 10px;
    padding: 14px 18px;

    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-width: 420px;
    transition: transform 0.18s ease, filter 0.18s ease;
    box-shadow: var(--shadow-orange);
}

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

/* Optional: better keyboard accessibility */
.pros-btn:focus-visible {
    outline: 3px solid rgba(80, 170, 211, 0.45);
    outline-offset: 3px;
}

/* =========================================================
   50.1 - PROS RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
    .pros {
        padding: 80px 0;
    }

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

    .pros-content {
        max-width: 820px;
    }

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

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

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

    .pros-title {
        font-size: 32px;
        text-align: center;
    }

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

    .pros-btn {
        width: 100%;
        min-width: 0;
        font-size: 14px;
        padding: 14px 14px;
    }
}

/* =========================================================
   60 - FINANCING CTA (BANNER)
========================================================= */
.financing-cta {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: #0a0f1a;
}

/* background image layer */
.financing-cta__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg,
            rgba(10, 16, 26, 0.68) 0%,
            rgba(10, 16, 26, 0.48) 38%,
            rgba(10, 16, 26, 0.10) 70%,
            rgba(10, 16, 26, 0.00) 100%),
        url("../images/coolzone.webp");
    background-size: cover;
    background-position: center right;
    transform: scale(1.02);
}

/* inner container */
.financing-cta__inner {
    position: relative;
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 90px 0;
}

/* content block */
.financing-cta__content {
    max-width: 640px;
}

.financing-cta__title {
    margin: 0 0 18px;
    font-weight: 900;
    font-size: 54px;
    line-height: 1.03;
    color: #ffffff;
}

.financing-cta__text {
    margin: 0 0 28px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.84);
    max-width: 560px;
}

/* CTA button */
.financing-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 16px 26px;
    border-radius: 12px;

    background: var(--brand-orange);
    color: #ffffff;
    text-decoration: none;

    font-weight: 800;
    letter-spacing: 0.4px;
    font-size: 16px;

    transition: transform 160ms ease, filter 160ms ease;
    box-shadow: var(--shadow-orange);
}

.financing-cta__btn:hover {
    transform: translateY(-1px);
    filter: brightness(0.98);
}

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

/* RESPONSIVE */
@media (max-width: 992px) {
    .financing-cta {
        min-height: 460px;
    }

    .financing-cta__inner {
        width: min(1200px, calc(100% - 32px));
        padding: 72px 0;
    }

    .financing-cta__title {
        font-size: 42px;
    }
}

@media (max-width: 640px) {
    .financing-cta {
        min-height: 520px;
    }

    /* stronger overlay on mobile for readability */
    .financing-cta__bg {
        background-image:
            linear-gradient(180deg,
                rgba(10, 16, 26, 0.78) 0%,
                rgba(10, 16, 26, 0.62) 45%,
                rgba(10, 16, 26, 0.25) 100%),
            url("../images/coolzone.webp");
        background-position: center;
    }

    .financing-cta__inner {
        padding: 66px 0;
    }

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

    .financing-cta__title {
        font-size: 34px;
        text-align: center;
    }

    .financing-cta__text {
        font-size: 16px;
        text-align: center;
    }

    .financing-cta__btn {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   70 - SERVICE GUARANTEE BAR
========================================================= */
.ga-guarantee {
    position: relative;
    background: #2973c2;
    padding: 52px 0;
    overflow: visible;
}

/* orange bars */
.ga-guarantee::before,
.ga-guarantee::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 7px;
    background: var(--brand-orange);
    opacity: 0.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-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, 0.35));
}

.ga-guarantee__text {
    display: block;
    max-width: 280px;
    word-break: normal;
    overflow-wrap: anywhere;
}

.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-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;
}

/* remove desktop nudges if used elsewhere */
.go-left,
.go-right {
    margin-left: 0 !important;
}

/* force icon 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: #2973c2 !important;
    stroke: #2973c2 !important;
}

/* FORCE EXACT POSITIONS */
.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;
    }

    .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;
    }
}

/* =========================================================
   80 - REVIEWS (SPLIT + SCROLL TRACK) + MODAL
========================================================= */
.reviews-split {
    padding: 88px 0;
    background: #f6f8fb;
}

.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-weight: 900;
    color: #121417;
    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;
}

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

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

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

/* Card */
.review2-card {
    background: var(--surface);
    border-radius: 18px;
    padding: 22px 22px 18px;

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

    min-height: 210px;

    display: flex;
    flex-direction: column;

    scroll-snap-align: start;
}

.review2-stars {
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--brand-orange);
    margin-bottom: 12px;
}

/* Review text (clamped) */
.review2-text {
    margin: 0 0 12px;
    font-weight: 500;
    color: #1c1f23;
    font-size: 14.5px;
    line-height: 1.65;

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

/* Read more button (modal JS) */
.review2-link {
    margin-top: auto;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;

    font-weight: 700;
    font-size: 14px;
    color: var(--brand-orange);
    text-align: left;
}

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

.review2-meta {
    margin-top: 14px;
    font-weight: 800;
    font-size: 13px;
    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;
    }

    /* One card per swipe */
    .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;
}

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

    background: var(--surface);
    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;
}

/* close button */
.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;
}

/* stars */
.review-modal__stars {
    font-size: 20px;
    letter-spacing: 3px;
    color: var(--brand-orange);
}

/* text */
.review-modal__text {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.7;
    color: #1c1f23;

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

/* author */
.review-modal__name {
    font-weight: 800;
    font-size: 14px;
    color: var(--brand-orange);
}

@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: 15px;
    }
}

/* =========================================================
   90 - SERVICE AREAS (NEW DESIGN)
   (DO NOT AFFECT OTHER SECTIONS)
========================================================= */
.service-areas {
    position: relative;
    padding: 96px 0 120px;
    background: var(--surface);
    overflow: hidden;
}

/* background image layer */
.service-areas::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/service-areas.webp");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    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.2fr;
    gap: 48px;
    align-items: start;
}

.sa2-title {
    margin: 0;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111827;
}

.sa2-right {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* top row = 2 cards */
.sa2-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

/* cards */
.sa2-card {
    border: 2px solid var(--brand-orange);
    border-radius: 16px;
    background: var(--surface);
    padding: 18px 20px;
}

.sa2-card--wide {
    width: 100%;
}

.sa2-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.sa2-pin {
    width: 22px;
    height: 22px;
    color: var(--brand-orange);
    flex: 0 0 auto;
    display: inline-block;
}

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

.sa2-card-title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #111827;
}

/* lists */
.sa2-list {
    margin: 0;
    padding: 0;
    list-style: none;

    display: grid;
    gap: 10px 34px;

    font-size: 14px;
    font-weight: 600;
    color: #111827;

    /* ✅ FIX: prevent overlap at high zoom (125–200%) */
    grid-auto-rows: minmax(0, auto);
}

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

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

.sa2-list li {
    white-space: normal;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
    line-height: 1.35;
}

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

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

    .sa2-row {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 520px) {

    .sa2-list--2,
    .sa2-list--3 {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   100 - FINAL CTA / FOOTER
========================================================= */
.final-cta {
    width: 100%;
    margin: 0;
    padding: 0;
}

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

/* BLUE BACKGROUND CARD */
.final-cta-bg-card {
    position: relative;
    width: 100%;
    border-radius: 40px 50px 0 0;
    overflow: hidden;

    background-image: url("../images/footer-bg.webp");
    background-size: cover;
    background-position: center;

    padding: 64px 0 64px;
}

/* If overlays/pseudos exist, match radius */
.final-cta-bg-card::before,
.final-cta-bg-card::after {
    border-radius: 52px 52px 0 0;
}

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

/* CENTERED CONTENT */
.final-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* MAIN GRID */
.final-cta-content {
    display: grid;
    grid-template-columns: 1.05fr 1.35fr;
    gap: 56px;
    align-items: center;
}

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

.final-logo-box {
    width: 168px;
    height: 122px;
    background: #fff;
    border-radius: 16px;

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

    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
    margin-bottom: 22px;
}

.final-logo-box img {
    width: 110px;
}

.final-title {
    font-weight: 800;
    font-size: 44px;
    line-height: 1.05;
    margin: 0 0 12px;
}

.final-desc {
    max-width: 520px;
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 24px;
}

/* CALL BUTTON */
.final-call {
    display: inline-block;
    background: var(--brand-orange);
    border-radius: 12px;
    padding: 16px 22px;
    text-decoration: none;
    color: #fff;
    box-shadow: var(--shadow-orange);
}

.final-call-top {
    display: block;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.final-call-main {
    display: block;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
}

/* RIGHT SIDE */
.final-right {
    text-align: center;
    color: #fff;
}

/* Offer heading */
.final-offer {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.final-offer-pill {
    background: linear-gradient(90deg, #ff8a00, #ff2d55);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 24px;
    font-weight: 900;
}

.final-offer-text {
    font-size: 30px;
    font-weight: 900;
}

.final-offer-sub {
    /* Sized to keep the sub-headline on a single line (desktop/tablet) */
    font-size: clamp(13px, 1.25vw, 17px);
    letter-spacing: 3px;
    margin-bottom: 16px;
    font-weight: 800;
    white-space: nowrap;
}

/* FORM */
.final-form {
    max-width: 760px;
    margin: 0 auto;
}

.final-grid {
    display: grid;
    /* Row 1: Name · Phone — Row 2: Email · reCAPTCHA */
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.final-field label {
    font-size: 16px;
    letter-spacing: 1.6px;
    margin-bottom: 6px;
    display: block;
    text-align: left;
}

.final-field input,
.final-field select {
    width: 100%;
    height: 44px;
    border-radius: 7px;
    border: none;
    padding: 0 14px;
    font-size: 16px;
    box-sizing: border-box;
}

/* SUBMIT */
.final-submit {
    margin-top: 16px;
    width: 100%;
    height: 54px;
    border-radius: 12px;
    border: none;
    background: var(--brand-orange);
    color: #fff;
    font-weight: 900;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-orange);
}

/* NOTE */
.final-note {
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.75;
}

/* BOTTOM FOOTER TEXT (INSIDE BLUE) */
.final-bottom,
.credits {
    margin-top: 48px;
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.credits {
    margin-top: 8px;
}

.fw-semibold {
    color: rgb(229, 229, 229);
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
}

/* BACK TO TOP BUTTON */
.final-top-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    border: none;
    font-weight: 900;
    cursor: pointer;
}

/* =========================================================
   100.1 - FOOTER RESPONSIVE
========================================================= */
@media (max-width: 992px) {
    .final-cta {
        padding: 0;
        background: #fff;
    }

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

    .final-cta-bg-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 26px 0 26px;
        border-radius: 40px 40px 0 0;
        background-position: center top;
    }

    .final-cta-bg-card::before,
    .final-cta-bg-card::after,
    .final-cta-bg,
    .final-cta-overlay {
        border-radius: 0;
    }

    .final-cta-container {
        max-width: 100%;
        padding: 0 14px;
        overflow-x: clip;
    }

    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }

    .final-cta-content>* {
        min-width: 0;
    }

    .final-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .final-logo-box {
        width: 160px;
        height: 110px;
        margin: 0 auto 14px;
        border-radius: 14px;
    }

    .final-logo-box img {
        width: 105px;
        height: auto;
    }

    .final-title {
        font-size: 30px;
        line-height: 1.12;
        margin: 0 0 10px;
    }

    .final-desc {
        max-width: 520px;
        margin: 0 auto 16px;
        font-size: 14px;
        line-height: 1.65;
        color: rgba(255, 255, 255, 0.86);
    }

    .final-call {
        width: 100%;
        max-width: 460px;
        margin: 0 auto;
        padding: 16px 14px;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        overflow: hidden;
    }

    .final-call-top {
        font-size: 16px;
        margin-bottom: 4px;
        white-space: normal;
    }

    .final-call-main {
        font-size: 26px;
        white-space: normal;
    }

    .final-right {
        width: 100%;
    }

    .final-offer {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 12px 0 8px;
        align-items: center;
        justify-content: center;
    }

    .final-offer-pill {
        font-size: 22px;
        padding: 10px 18px;
        border-radius: 10px;
    }

    .final-offer-text {
        font-size: 28px;
        line-height: 1.05;
    }

    .final-offer-sub {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 12px;
        /* stacked + narrow: allow wrap so it never overflows on phones */
        white-space: normal;
    }

    .final-form {
        width: 100%;
    }

    .final-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 10px;
    }

    .final-field label {
        display: none;
    }

    .final-field input,
    .final-field select {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: 56px;
        border-radius: 10px;
        padding: 0 16px;
        font-size: 15px;
        box-sizing: border-box;
    }

    .final-submit {
        width: 100%;
        height: 56px;
        border-radius: 12px;
        font-size: 16px;
        margin-top: 14px;
    }

    .final-note {
        font-size: 12px;
        line-height: 1.6;
        margin-top: 10px;
    }

    .final-bottom {
        margin-top: 18px;
        padding-bottom: 6px;
        font-size: 12px;
        line-height: 1.8;
        text-align: center;
    }

    .final-field input::placeholder {
        opacity: 0.85;
    }
}

/* Placeholders OFF on desktop */
@media (min-width: 993px) {
    .final-field input::placeholder {
        opacity: 0;
    }
}

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

.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;
    }
}

/* =========================================================
   110 - RECAPTCHA (SCALE + RESPONSIVE)
   Shared utility for hero/footer forms
========================================================= */

/* Default: keep it aligned nicely in form rows */
.recaptcha-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

/* Scale helper (desktop) */
.recaptcha-scale {
    display: inline-block;
    transform: scale(0.92);
    transform-origin: right bottom;

    /* optional: reserve space so layout doesn't jump */
    width: calc(304px * 0.92);
    height: calc(78px * 0.92);
}

/* If you directly use .g-recaptcha without a wrapper */
.g-recaptcha {
    max-width: 100%;
}

/* Center on smaller screens */
@media (max-width: 1200px) {
    .recaptcha-wrap {
        justify-content: center;
        align-items: center;
    }

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

/* Mobile: slightly smaller */
@media (max-width: 640px) {
    .recaptcha-scale {
        transform: scale(0.84);
        transform-origin: center;
        width: calc(304px * 0.84);
        height: calc(78px * 0.84);
    }
}

/* =========================================================
   115 - UTILITIES + UI MODAL
========================================================= */

.text-white {
    color: #fff;
}

.arrow {
    display: inline-block;
    transform: translateY(1px);
}

.pros-media,
.sa2-left {
    display: block;
    min-width: 0;
}

.disabled-link {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: none;
}

/* UI Modal (used for form + recaptcha prompts) */
.ui-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.ui-modal[aria-hidden="false"] {
    display: flex;
}

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

.ui-modal__card {
    position: relative;
    width: min(560px, 100%);
    background: var(--surface);
    border-radius: 16px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .28);
    overflow: hidden;
    animation: uiModalIn 180ms ease;
}

.ui-modal__header {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(10, 12, 14, 0.08);
}

.ui-modal__icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(236, 140, 53, 0.14);
    color: var(--brand-orange);
    display: grid;
    place-items: center;
    font-weight: 900;
    flex: 0 0 34px;
}

.ui-modal__title {
    font-weight: 900;
    font-size: 18px;
    color: #0b1b2b;
}

.ui-modal__subtitle {
    font-weight: 600;
    font-size: 13px;
    color: rgba(11, 27, 43, 0.72);
    margin-top: 2px;
}

.ui-modal__body {
    padding: 16px 20px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
    color: #111827;
}

.ui-modal__footer {
    padding: 14px 20px 18px;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid rgba(10, 12, 14, 0.08);
}

.ui-modal__btn {
    height: 42px;
    padding: 0 18px;
    border-radius: 12px;
    border: 0;
    background: var(--brand-orange);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    box-shadow: var(--shadow-orange);
}

.ui-modal__btn:focus-visible {
    outline: 3px solid rgba(80, 170, 211, 0.45);
    outline-offset: 3px;
}

@keyframes uiModalIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }

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

@media (max-width: 640px) {
    .ui-modal__header {
        padding: 16px 16px;
    }

    .ui-modal__body {
        padding: 14px 16px;
    }

    .ui-modal__footer {
        padding: 12px 16px 16px;
    }
}

/* =========================
   GALLERY (Previous Work)
   - Professional, responsive
   - 1/2/3 cards per view
========================= */

.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: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-size: 18px;
    color: #262E45;
}

.gallery-title {
    margin: 0;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 900;
    letter-spacing: -0.8px;
    line-height: 1.05;
    font-size: clamp(28px, 3.6vw, 52px);
    color: #262E45;
}

/* 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);
    /* 2 gaps * 24px = 48px */
}

/* 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;
}

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

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

.gallery-cap-title {
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 900;
    font-size: 16px;
    color: #262E45;
    margin: 0 0 4px;
}

.gallery-cap-sub {
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    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: #262E45;
    width: 22px;
}

/* Center the "Book Now" CTA below the gallery */
.gallery-cta {
    margin-top: 24px;
    text-align: center;
}

/* ✅ 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);
        /* 1 gap * 24px */
    }
}

/* ✅ Mobile: 1 card + hide arrows (swipe) */
@media (max-width: 640px) {
    .gallery-inner {
        width: min(1200px, calc(100% - 32px));
    }

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

    .gallery-nav {
        display: none;
    }

    .gallery-track {
        grid-auto-columns: 100%;
        gap: 16px;
        padding: 4px;
    }

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

    .gallery-card {
        border-radius: 18px;
    }
}

/* =========================
   GALLERY ZOOM ICON
========================= */
.gallery-media {
    position: relative;
}

.gallery-zoom {
    position: absolute;
    left: 14px;
    top: 14px;
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 999px;

    /* ✅ transparent */
    background: transparent;

    /* keep it visible */
    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;
}

.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: #262E45;
}

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

.gallery-modal__title {
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: #262E45;
    margin-bottom: 4px;
}

.gallery-modal__sub {
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    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);
    }
}

/* =========================================================
   20.2 - EP-HERO (wide hero banner template)
   Full-bleed background image + left white fade + copy +
   feature card. Ported from the Thunder Restoration template
   and recolored to the Cool Zone brand palette.
========================================================= */
.ep-hero {
    position: relative;
    width: 100%;
    min-height: auto;
    overflow: hidden;
    background: #ffffff;
    isolation: isolate;
}

.ep-hero__bg {
    position: absolute;
    inset: 0;
    background-size: auto 130%;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Left-to-right white fade — keeps copy readable over any bg image */
.ep-hero__fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            #ffffff 0%,
            #ffffff 32%,
            rgba(255, 255, 255, 0.85) 44%,
            rgba(255, 255, 255, 0.3) 58%,
            rgba(255, 255, 255, 0) 72%);
    z-index: 1;
    pointer-events: none;
}

.ep-hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0;
    padding: 116px clamp(24px, 6vw, 96px) 92px clamp(28px, 4vw, 64px);
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 44px;
}

.ep-hero__copy {
    max-width: 1100px;
}

.ep-hero__title {
    margin: 0;
    font-family: "Archivo Black", "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-style: normal;
    font-weight: 900;
    color: var(--dark-text);
    font-size: clamp(34px, 5vw, 62px);
    line-height: 0.98;
    letter-spacing: -1px;
    text-transform: uppercase;
}

/* Highlighted keyword in the hero H1 */
.ep-hero__title--slug {
    color: var(--brand-orange);
    white-space: nowrap;
}

.ep-hero__title .br-mobile { display: none; }
.ep-hero__title .br-desktop { display: inline; }

.ep-hero__tagline {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 0;
    max-width: 640px;
}

.ep-hero__rule {
    display: inline-block;
    width: 4px;
    height: clamp(24px, 2.4vw, 32px);
    background: var(--brand-orange);
    border-radius: 2px;
    flex-shrink: 0;
}

.ep-hero__sub-text {
    font-family: var(--font-body);
    font-size: clamp(18px, 1.8vw, 26px);
    font-weight: 600;
    color: #1a2540;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

/* FEATURES ROW */
.ep-hero__features {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 24px;
    max-width: 520px;
    align-items: start;
}

.ep-hero__feature-card { width: 100%; }

@media (max-width: 992px) {
    .ep-hero__feature-card {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 18px 14px 16px;
        background: #ffffff;
        border-radius: 18px;
        border: 1px solid rgba(2, 48, 73, 0.08);
        box-shadow:
            0 18px 40px -22px rgba(2, 48, 73, 0.35),
            0 2px 8px rgba(15, 23, 42, 0.06);
    }
    .ep-hero__feature-card .ep-hero__tagline {
        margin-top: 0;
        max-width: 100%;
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(2, 48, 73, 0.10);
    }
    .ep-hero__feature-card .ep-hero__features {
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 0;
        margin-top: 0;
        border-radius: 0;
    }
}

.ep-feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    max-width: 100%;
}

.ep-feat__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 11px;
    border-radius: 50%;
    background: linear-gradient(180deg, #f9a64a 0%, #ec8c35 58%, #d97a2a 100%);
    box-shadow:
        0 6px 14px -4px rgba(217, 122, 42, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.ep-feat__icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    /* render the icons white for high contrast on the orange badge */
    filter: brightness(0) invert(1);
}

.ep-feat__label {
    font-family: "Archivo Black", "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-style: normal;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

/* Hero CTA placement inside the feature card (reuses .hero-call styles) */
.ep-hero__final-call {
    margin-top: 22px;
}

@media (max-width: 992px) {
    .ep-hero__final-call {
        margin-top: 14px;
        width: 100%;
        max-width: 460px;
        align-self: center;
    }
}

/* MOBILE & TABLET */
@media (max-width: 900px) {
    .ep-hero {
        min-height: 0;
    }

    .ep-hero__fade {
        background: linear-gradient(180deg,
                rgba(255, 255, 255, 0.97) 0%,
                rgba(255, 255, 255, 0.92) 30%,
                rgba(255, 255, 255, 0.75) 50%,
                rgba(255, 255, 255, 0.45) 72%,
                rgba(255, 255, 255, 0.18) 100%);
    }

    .ep-hero__bg {
        background-size: cover;
        background-position: center center;
    }

    .ep-hero__inner {
        padding: 34px 18px 28px;
        min-height: 0;
        gap: 22px;
        align-items: center;
    }

    .ep-hero__copy {
        max-width: 100%;
        text-align: center;
    }

    .ep-hero__title {
        font-size: clamp(34px, 7.5vw, 54px);
        letter-spacing: -0.8px;
        line-height: 1.0;
        text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
        text-align: center;
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Let the highlighted keyword wrap on mobile so it doesn't
       overflow past the hero edge */
    .ep-hero__title--slug {
        white-space: normal;
    }

    .ep-hero__tagline {
        margin-top: 14px;
        gap: 12px;
    }

    .ep-hero__rule {
        width: 4px;
        height: 22px;
        border-radius: 3px;
    }

    .ep-hero__sub-text {
        font-size: 16px;
        font-weight: 700;
        color: #0e1c3f;
        letter-spacing: 0.1px;
    }

    .ep-hero__features {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
        margin-top: 18px;
        padding: 18px 12px 16px;
        background: #ffffff;
        border-radius: 18px;
        border: 1px solid rgba(2, 48, 73, 0.08);
        box-shadow:
            0 18px 40px -22px rgba(2, 48, 73, 0.35),
            0 2px 8px rgba(15, 23, 42, 0.06);
    }

    .ep-feat {
        flex: 1 1 28%;
        max-width: none;
        min-width: 0;
        gap: 10px;
    }

    .ep-feat__icon {
        width: 58px;
        height: 58px;
        padding: 11px;
    }

    .ep-feat__label {
        font-size: 11px;
        letter-spacing: 0.5px;
        line-height: 1.25;
    }
}

@media (max-width: 768px) {
    .ep-hero__title .br-mobile { display: inline; }
    .ep-hero__title .br-desktop { display: none; }
}

@media (max-width: 480px) {
    .ep-hero__inner {
        padding: 28px 16px 24px;
        gap: 18px;
    }

    .ep-hero__title {
        font-size: clamp(30px, 9vw, 42px);
        letter-spacing: -0.6px;
    }

    .ep-hero__sub-text {
        font-size: 15px;
    }

    .ep-hero__features {
        padding: 16px 8px 14px;
        border-radius: 16px;
        gap: 8px;
    }

    .ep-feat {
        flex: 1 1 42%;
        gap: 8px;
    }

    .ep-feat__icon {
        width: 52px;
        height: 52px;
        padding: 10px;
    }

    .ep-feat__label {
        font-size: 10.5px;
        letter-spacing: 0.4px;
    }
}

/* =========================================================
   20.25 - HERO IMAGE SLIDER (mobile only)
   Sits between the hero CTA and the request form on phones/
   tablets. Hidden on desktop, where the hero already shows
   the background photo. Matches the Thunder LP layout.
========================================================= */
.hero-slider {
    display: none;
}

@media (max-width: 900px) {
    .hero-slider {
        display: block;
        position: relative;
        z-index: 6;
        background: #ffffff;
        /* Full-bleed: the image covers the whole section, edge to edge */
        padding: 0;
    }

    .hero-slider__viewport {
        position: relative;
        overflow: hidden;
        border-radius: 0;
        outline: none;
        touch-action: pan-y;
        cursor: grab;
    }

    .hero-slider__viewport:active {
        cursor: grabbing;
    }

    .hero-slider__track {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 100%;
        transform: translate3d(0, 0, 0);
        transition: transform 420ms ease;
        will-change: transform;
    }

    .hero-slider__slide {
        position: relative;
        aspect-ratio: 16 / 10;
        background: #f3f6fb;
    }

    .hero-slider__slide img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        /* Anchor the crop near the top so the techs' heads stay in frame
           on the portrait slides; harmless on the landscape slide. */
        object-position: center top;
        -webkit-user-drag: none;
        user-select: none;
    }

    /* Slides 1 & 3 are tall portraits: nudge the crop down a little so the
       work itself (hands on the condenser / the open panel) is visible,
       not just heads and sky. Slide 4 stays top-anchored. */
    .hero-slider__slide:nth-child(1) img {
        object-position: center 22%;
    }

    .hero-slider__slide:nth-child(3) img {
        object-position: center 38%;
    }

    /* Dots overlaid inside the image, centered near the bottom.
       .hero-slider has no padding, so its box matches the image; the
       absolute dots sit over the photo without being clipped by the
       viewport's overflow:hidden (they are a sibling, not a child). */
    .hero-slider__dots {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 14px;
        z-index: 2;
        display: flex;
        gap: 9px;
        justify-content: center;
        pointer-events: none;
    }

    .hero-slider__dot {
        width: 9px;
        height: 9px;
        padding: 0;
        border: 0;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.65);
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
        cursor: pointer;
        pointer-events: auto;
        transition: width 0.25s ease, background 0.25s ease;
    }

    .hero-slider__dot.is-active {
        width: 24px;
        background: var(--brand-orange, #ec8c35);
    }
}

@media (max-width: 480px) {
    .hero-slider__dots {
        bottom: 12px;
    }
}

/* =========================================================
   20.3 - SINGLE-STEP HERO FORM (grid layout)
========================================================= */
.hero-form-grid {
    display: grid;
    /* Name · Phone · Email on a single row */
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 16px;
    align-items: end;
}

.hero-form-grid .hero-submit-wrap {
    display: block;
}

.hero-form-grid .field input,
.hero-form-grid .field select,
.hero-form-grid .form-select {
    height: 50px;
    border-radius: 10px;
    border: 1.5px solid #e5e7eb;
    background: #fafafa;
    font-size: 14px;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.hero-form-grid .field label {
    font-size: 11px;
    letter-spacing: 1.4px;
    margin-bottom: 6px;
}

.hero-form-grid .field input:focus,
.hero-form-grid .field select:focus,
.hero-form-grid .form-select:focus {
    border-color: #d97a2a;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(236, 140, 53, .14);
}

.hero-submit-btn {
    position: relative;
    overflow: hidden;
    border: 0;
    cursor: pointer;
    width: 100%;
    max-width: none;
    height: 50px;
    padding: 0 22px;
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    white-space: nowrap;
    background: linear-gradient(135deg, #f59e3a 0%, #d97a2a 100%);
    box-shadow:
        0 10px 24px rgba(217, 122, 42, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.30);
    transition: transform .18s ease, box-shadow .25s ease, filter .25s ease;
}

.hero-submit-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg,
        transparent 30%,
        rgba(255, 255, 255, 0.28) 50%,
        transparent 70%);
    transform: translateX(-110%);
    transition: transform .65s ease;
}

.hero-submit-btn:hover {
    transform: translateY(-2px);
    filter: saturate(1.08);
    box-shadow:
        0 16px 34px rgba(217, 122, 42, 0.5),
        0 3px 6px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.40);
}

.hero-submit-btn:hover::before {
    transform: translateX(110%);
}

.hero-submit-btn:active {
    transform: translateY(0);
}

.hero-submit-btn .hero-submit-arrow {
    display: inline-block;
    transition: transform .25s ease;
    font-size: 14px;
}

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

/* reCAPTCHA sits on its own centered row below the grid */
.hero-form .hero-recaptcha {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
}

/* Third row: recaptcha and submit button grouped toward the center */
.hero-form-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 16px;
}

.hero-form-actions .hero-recaptcha {
    margin-top: 0;
    justify-content: center;
}

.hero-form-actions .hero-submit-wrap {
    flex: 0 0 auto;
}

.hero-form-actions .hero-submit-btn {
    min-width: 260px;
}

@media (max-width: 600px) {
    .hero-form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .hero-submit-btn {
        width: 100%;
        min-width: 0;
    }
    .hero-form-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .hero-form-actions .hero-recaptcha {
        justify-content: center;
    }
}

/* =========================================================
   reCAPTCHA POPUP MODAL (hero form)
   Opens on submit; the lead is posted once reCAPTCHA passes.
   Hidden state uses visibility/opacity (NOT display:none) so the
   reCAPTCHA iframe still renders at its correct size on page load.
========================================================= */
.rc-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
}

.rc-modal.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.rc-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 15, 30, 0.55);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.rc-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(360px, 100%);
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    padding: 26px 22px 24px;
    text-align: center;
    transform: translateY(8px) scale(0.98);
    transition: transform .2s ease;
}

.rc-modal.is-open .rc-modal__dialog {
    transform: translateY(0) scale(1);
}

.rc-modal__close {
    position: absolute;
    top: 8px;
    right: 12px;
    border: 0;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    color: #64748b;
    cursor: pointer;
}

.rc-modal__head {
    margin-bottom: 16px;
}

.rc-modal__title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--dark-text);
    margin: 0 0 4px;
}

.rc-modal__sub {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.4;
}

.rc-modal__captcha {
    display: flex;
    justify-content: center;
}

/* =========================================================
   BUTTON SHINE — animated glint sweeping left↔right
   Applied to every CTA / button across the landing pages.
========================================================= */
@keyframes cz-btn-shine {
    0%   { transform: translateX(-120%) skewX(-18deg); }
    50%  { transform: translateX(220%)  skewX(-18deg); }
    100% { transform: translateX(-120%) skewX(-18deg); }
}

.btn-solid,
.hero-submit-btn,
.why-btn,
.pros-btn,
.financing-cta__btn,
.lp-call-btn,
.hero-call,
.final-call,
.ep-hero__final-call,
.svc-cta,
.ui-modal__btn {
    position: relative;
    overflow: hidden;
}

.btn-solid::after,
.hero-submit-btn::after,
.why-btn::after,
.pros-btn::after,
.financing-cta__btn::after,
.lp-call-btn::after,
.hero-call::after,
.final-call::after,
.ep-hero__final-call::after,
.svc-cta::after,
.ui-modal__btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: translateX(-120%) skewX(-18deg);
    pointer-events: none;
    z-index: 2;
    animation: cz-btn-shine 4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .btn-solid::after,
    .hero-submit-btn::after,
    .why-btn::after,
    .pros-btn::after,
    .financing-cta__btn::after,
    .lp-call-btn::after,
    .hero-call::after,
    .final-call::after,
    .ep-hero__final-call::after,
    .svc-cta::after,
    .ui-modal__btn::after {
        animation: none;
        display: none;
    }
}

/* ════════════════════════════════════════════════════════════════
   DISPLAY TYPE — section titles in Anton (mirrors Thunder Restoration)
   Tall, condensed, impactful all-caps for the major section headings.
   ──────────────────────────────────────────────────────────────── */
.hero-title,
.services-title,
.pros-title,
.why-title,
.final-title,
.financing-cta__title {
    font-family: "Anton", "Bebas Neue", "Archivo Black", "Montserrat", system-ui, sans-serif !important;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* ════════════════════════════════════════════════════════════════
   HERO HEADLINE — match Thunder Restoration's hero H1
   Tall, condensed Anton display face, larger and tighter than the
   base Archivo Black so the headline dominates the hero. Sizes and
   breakpoints are ported verbatim from Thunder's LP.
   ──────────────────────────────────────────────────────────────── */
.ep-hero__title {
    font-family: "Anton", "Bebas Neue", "Archivo Black", "Montserrat", system-ui, sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    line-height: 0.95 !important;
    font-size: clamp(32px, 6vw, 68px) !important;
}

@media (max-width: 480px) {
    .ep-hero__title {
        font-size: clamp(34px, 9.5vw, 42px) !important;
    }
}

@media (min-width: 993px) {
    .ep-hero__title {
        font-size: clamp(42px, 5.5vw, 74px) !important;
    }
}

/* Desktop/tablet: inset the hero content from the left, matching Thunder */
@media (min-width: 768px) {
    .ep-hero__inner {
        padding-left: clamp(40px, 5vw, 96px) !important;
    }
}