/* Landing Page Base Styling */
/*=============================================
  Critter Stop Pest Control Landing Page CSS
  Brand Colors (PMS):
    Black:      #101820
    Navy:       #003A70
    Teal:       #00587C
    LightBlue:  #92C1E9
    Orange:     #CF4520
    SoftRed:    #A45248
    Cream:      #EFDBB2
    Yellow:     #F1C400
=============================================*/


/* Reset & Base
   ------------------------------------------------------------------
   Scoped to the pages that opt into the foundation rather than applied
   globally. An unscoped `* { margin:0; padding:0 }` strips the default
   spacing from every third-party block on the page (Gravity Forms, the
   AIOSEO author bio, Essential Grid), which is a standing source of
   layout surprises whenever a plugin is added.

   :where() is what makes the scoping free: it matches without adding
   specificity, so these declarations still sit at (0,0,0) exactly as the
   bare `*` selector did. Writing `body.cs-foundation *` instead would
   raise specificity to (0,1,1) and start overriding plugin CSS that
   currently wins, which would be a worse outcome than the original bug.

   The body element is listed separately because the descendant
   combinator does not match the scope element itself, and body is the
   one element in the chain with a UA default margin. */
:where(body.cs-foundation),
:where(body.cs-foundation) *,
:where(body.cs-foundation) *::before,
:where(body.cs-foundation) *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: var(--cs-black);
    line-height: 1.6;
    background: var(--cs-white);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Hide Language Flag */
.hide-wmpml-div {
    display: block !important;
}

.hide-main-mobile-header {
    display: none !important;
}

/* Container */
/* --cs-container was never defined anywhere, so `width` was invalid at
   computed-value time and fell back to `auto`. The explicit 100% fallback
   renders identically for a border-box block in normal flow and makes the
   behavior intentional instead of accidental. */
.cs-container {
    width: var(--cs-container, 100%);
    max-width: 1200px;
    margin: 0 auto;
}

/* Buttons */
.cs-btn {
    display: inline-block;
    font-weight: 600;
    border: none;
    border-radius: var(--cs-radius);
    cursor: pointer;
    transition: background .3s ease;
}

.cs-btn-primary {
    background: var(--cs-orange);
    color: var(--cs-white);
    padding: .75rem 1.5rem;
}

.cs-btn-primary:hover {
    background: var(--cs-softred);
    color: var(--cs-white);
}

.cs-btn-secondary {
    background: var(--cs-teal);
    color: var(--cs-white);
    padding: .75rem 1.5rem;
}

.cs-btn-secondary:hover {
    background: var(--cs-navy);
    color: var(--cs-white);
}

.cs-btn-large {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* Header */
.cs-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(5px);
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cs-logo img {
    height: 50px;
}

/* Hero */
.cs-hero {
    padding: 3rem 0;
    background: var(--cs-cream);
}

/* --cs-gap is not defined anywhere, so this has always computed to
   `normal`, i.e. no gap between the hero text and the hero image. The 0
   fallback preserves exactly what is on the page today. If the original
   intent was a real gap, 2rem matches the other hero rows in this file,
   but that is a visible layout change and these are live A/B test pages,
   so it is left as a deliberate decision rather than made here. */
.cs-hero-inner {
    display: flex;
    align-items: center;
    gap: var(--cs-gap, 0);
}

.cs-hero-text {
    flex: 1;
}

.cs-hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: .5rem;
    color: var(--cs-navy);
}

.cs-hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--cs-black);
}

.cs-hero-form {
    flex: 1;
    background: var(--cs-white);
    padding: 2rem;
    border-radius: var(--cs-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .05);
    display: grid;
    gap: .75rem;
}

.cs-hero-form input,
.cs-hero-form button {
    width: 100%;
    font-size: 1rem;
    padding: .75rem;
    border: 1px solid #ddd;
    border-radius: var(--cs-radius);
}

.cs-hero-form button {
    background: var(--cs-teal);
    color: var(--cs-white);
    border-color: var(--cs-teal);
    cursor: pointer;
}

.cs-hero-form button:hover {
    background: var(--cs-navy);
    border-color: var(--cs-navy);
}

/* === Restore FA5 checkmarks for hero bullets === */
.cs-hero-inner ul {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
}

.cs-hero-inner ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    color: var(--cs-black);
}

.cs-hero-inner ul li:before {
    content: "✓";
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: var(--cs-orange);
}


/* Trust Bar */
.cs-trust {
    padding: 3rem 0;
    background: var(--cs-white);
}

.cs-trust-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0rem;
    align-items: center;
    list-style: none;
    padding: 0;
}

.cs-trust-list li img {
    height: 100px;
    max-width: 120px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

/* Services Grid */
.cs-services {
    padding: 3rem 0;
    background: var(--cs-lightblue);
}

.cs-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin: 0;
    color: var(--cs-navy);
}

.cs-grid.cs-3cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--cs-gap);
}

.cs-service {
    background: var(--cs-white);
    padding: 2rem;
    text-align: center;
    border-radius: var(--cs-radius);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
}

.cs-service img {
    height: 50px;
    margin-bottom: 1rem;
}

.cs-service h3 {
    margin-bottom: .5rem;
    color: var(--cs-navy);
}

.cs-service p {
    font-size: .95rem;
    color: var(--cs-black);
}

.cs-section-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.cs-section-icon i {
    font-size: 2.25rem;
    color: var(--cs-orange);
}

.cs-icon-top {
    display: block;
    color: var(--cs-teal);
    margin-bottom: 1rem;
}


/* Testimonials */
.cs-testimonials {
    padding: 3rem 0;
    background: var(--cs-white);
}

.cs-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin: 0;
    color: var(--cs-navy);
}

.cs-google-reviews {
    margin-top: 1.5rem;
}

.cs-google-reviews iframe,
.cs-google-reviews .review-widget {
    width: 100%;
    max-width: 100%;
}

/* Process Steps */
.cs-process {
    padding: 3rem 0;
    background: var(--cs-lightblue);
}

.cs-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin: 0;
    color: var(--cs-navy);
}

.cs-process-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: var(--cs-gap);
    justify-content: center;
}

.cs-process-list li {
    background: var(--cs-white);
    font-size: 1.8rem;
    padding: 1.5rem;
    border-radius: var(--cs-radius);
    max-width: 300px;
    text-align: center;
}

.cs-process-list li strong {
    display: block;
    margin-bottom: .75rem;
    color: var(--cs-navy);
}

/* Map Section Styling */
.cs-map {
    padding: 3rem 0;
    background: var(--cs-white);
    text-align: center;
    position: relative;
    z-index: 1;
    border-top: 1px solid #ddd;
}

.cs-map h2 {
    font-size: 2.5rem;
    color: var(--cs-navy);
    margin: 0;
}

.cs-map iframe {
    width: 100%;
    max-width: 100%;
    height: 450px;
    border: 1px solid #ccc;
    border-radius: var(--cs-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Footer CTA */
.cs-cta-footer {
    padding: 3rem 0;
    background: var(--cs-cream);
    text-align: center;
}

.cs-cta-footer h2 {
    color: var(--cs-navy);
    font-size: 2.5rem;
    margin: 0;
}

.cs-cta-footer .cs-btn-primary {
    background: var(--cs-orange);
    color: var(--cs-white);
}

.cs-cta-footer .cs-btn-primary:hover {
    background: var(--cs-softred);
}

/* Responsive */
@media (max-width: 768px) {
    .cs-hero {
        grid-template-columns: 1fr !important;
        text-align: center;
        padding: 2rem 1rem !important;
    }

    .cs-hero-form {
        margin: 2rem auto !important;
    }

    .cs-btn-secondary {
        margin-top: .75rem !important;
    }

    .cs-hero-inner {
        flex-direction: column !important;
    }

    .cs-hero-text h1 {
        font-size: 2.5rem !important;
    }

    .cs-carousel {
        gap: 1rem !important;
    }

    .cs-process {
        text-align: center !important;
    }

    .cs-process-list {
        display: inline-block !important;
        /* shrink-wrap list */
        margin: 1.5rem auto 0 !important;
        /* center under heading */
        padding: 0 !important;
        /* reset any padding */
        text-align: left !important;
        /* keep each item’s text left-aligned */
    }

    .cs-process-list li {
        max-width: 300px !important;
        /* optional: constrain width */
        margin-bottom: 1rem !important;
    }

    .cs-hero-inner ul li:before {
        position: static !important;
        margin-right: 0.5rem !important;
    }

}

.cs-fi2r2 {
    --fi2-navy: #0b3a73;
    --fi2-navy-dark: #072c56;
    --fi2-blue: #2a7fff;
    --fi2-blue-soft: #edf5ff;
    --fi2-blue-panel: #eef5ff;
    --fi2-orange: #ef5a29;
    --fi2-orange-dark: #db4b1d;
    --fi2-text: #17324d;
    --fi2-text-soft: #5a6f87;
    --fi2-border: #dbe7f2;
    --fi2-bg: #f7fbff;
    --fi2-wrap: min(1320px, calc(100% - 40px));
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #fff;
    color: var(--fi2-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: clip;
}

.cs-fi2r2 *,
.cs-fi2r2 *::before,
.cs-fi2r2 *::after {
    box-sizing: border-box
}

.cs-fi2r2 a {
    text-decoration: none;
    color: inherit
}

.cs-fi2r2 img {
    max-width: 100%;
    display: block
}

.cs-fi2r2-wrap {
    width: var(--fi2-wrap);
    margin: 0 auto
}

.cs-fi2r2-page {
    background: #fff
}

.cs-fi2r2-header {
    background: #fff;
    border-bottom: 1px solid var(--fi2-border);
    position: relative;
    z-index: 10
}

.cs-fi2r2-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 0px 0
}

.cs-fi2r2-header__brand img {
    width: 200px;
    max-width: 200px;
    height: auto
}

.cs-fi2r2-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--fi2-text)
}

.cs-fi2r2-nav a {
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.cs-fi2r2-nav span {
    font-size: 12px;
    opacity: .75
}

.cs-fi2r2-header__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--fi2-orange);
    font-weight: 800;
    font-size: 20px
}

.cs-fi2r2-header__phone svg {
    width: 18px;
    height: 18px
}

.cs-fi2r2-hero-band {
    padding: 0;
    background: #fff;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw)
}

.cs-fi2r2-hero-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-top: 1px solid #75b0f7;
    border-bottom: 1px solid #75b0f7;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    overflow: hidden;
    background: #fff
}

.cs-fi2r2-hero-copy {
    position: relative;
    z-index: 3;
    min-width: 0;
    padding: 58px clamp(28px, 4.6vw, 76px) 60px clamp(28px, 4.6vw, 76px);
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.cs-fi2r2-title {
    margin: 0 0 18px;
    font-size: clamp(52px, 4.8vw, 74px);
    line-height: .94;
    letter-spacing: -.05em;
    color: var(--fi2-navy-dark);
    max-width: 100%
}

.cs-fi2r2-title span {
    color: var(--fi2-blue)
}

.cs-fi2r2-intro {
    margin: 0 0 20px;
    max-width: 48ch;
    font-size: 22px;
    line-height: 1.38;
    color: var(--fi2-text)
}

.cs-fi2r2-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 0 0 24px
}

.cs-fi2r2-hero-cta {
    min-height: 52px;
    padding: 14px 22px
}

.cs-fi2r2-hero-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fi2-orange);
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap
}

.cs-fi2r2-hero-call svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px
}

.cs-fi2r2-checks {
    display: grid;
    gap: 12px;
    margin: 0 0 22px
}

.cs-fi2r2-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--fi2-text)
}

.cs-fi2r2-check svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    color: var(--fi2-blue);
    margin-top: 1px
}

.cs-fi2r2-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--fi2-text-soft);
    font-weight: 600
}

.cs-fi2r2-rating img {
    height: 32px;
    width: auto
}

.cs-fi2r2-rating__stars {
    color: #f6b300;
    letter-spacing: .04em;
    font-size: 18px
}

.cs-fi2r2-rating strong {
    font-size: 28px;
    color: var(--fi2-navy-dark);
    line-height: 1
}

.cs-fi2r2-hero-media {
    position: relative;
    min-height: 640px;
    background: center center/cover no-repeat;
    display: block;
    padding: 0;
    overflow: hidden
}

.cs-fi2r2-hero-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, .02) 100%)
}

.cs-fi2r2-hero-band>.cs-fi2r2-wrap {
    width: 100%;
    max-width: none
}

.cs-fi2r2-formstrip {
    position: relative;
    z-index: 4;
    background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
    border-bottom: 1px solid var(--fi2-border);
    box-shadow: 0 18px 42px rgba(12, 43, 78, .08)
}

.cs-fi2r2-formstrip__inner {
    width: min(1320px, calc(100% - 40px));
    margin: 0 auto;
    padding: 18px 0;
    display: grid;
    grid-template-columns: minmax(220px, .45fr) minmax(0, 1.55fr);
    gap: 22px;
    align-items: center
}

.cs-fi2r2-formstrip__head {
    min-width: 0
}

.cs-fi2r2-formstrip__head span {
    display: inline-flex;
    margin-bottom: 6px;
    color: var(--fi2-orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase
}

.cs-fi2r2-formstrip__head h2 {
    margin: 0;
    color: var(--fi2-navy-dark);
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.02;
    letter-spacing: -.03em
}

.cs-fi2r2-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px
}

.cs-fi2r2-form--strip {
    grid-template-columns: repeat(5, minmax(0, 1fr)) minmax(190px, auto);
    align-items: center;
    gap: 10px
}

.cs-fi2r2-field--wide {
    grid-column: 1/-1
}

.cs-fi2r2-form input,
.cs-fi2r2-form select,
.cs-fi2r2-form textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--fi2-border);
    border-radius: 10px;
    background: #fff;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--fi2-text)
}

.cs-fi2r2-form textarea {
    min-height: 82px;
    resize: vertical
}

.cs-fi2r2-form--strip input,
.cs-fi2r2-form--strip select {
    min-height: 48px
}

.cs-fi2r2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .02em;
    white-space: nowrap
}

.cs-fi2r2-btn svg {
    width: 18px;
    height: 18px
}

.cs-fi2r2-btn--primary {
    background: linear-gradient(180deg, var(--fi2-orange) 0%, var(--fi2-orange-dark) 100%);
    color: #fff !important;
    box-shadow: 0 14px 28px rgba(239, 90, 41, .22)
}

.cs-fi2r2-form button {
    border: 0;
    cursor: pointer
}

.cs-fi2r2-form:not(.cs-fi2r2-form--strip) button {
    grid-column: 1/-1
}

.cs-fi2r2-form--strip button {
    grid-column: 6 / 7;
    min-height: 48px;
    padding: 12px 18px;
    font-size: 14px
}

.cs-fi2r2-secure {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--fi2-text-soft)
}

.cs-fi2r2-form:not(.cs-fi2r2-form--strip) .cs-fi2r2-secure {
    grid-column: 1/-1
}

.cs-fi2r2-form--strip .cs-fi2r2-secure {
    grid-column: 5 / 7;
    justify-content: flex-end;
    margin-top: -2px
}

.cs-fi2r2-secure svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    color: #7e8d9f
}

.cs-fi2r2-gf {
    min-width: 0
}

.cs-fi2r2-gf .gform_wrapper.gravity-theme {
    margin: 0
}

.cs-fi2r2-gf .gform_wrapper.gravity-theme form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(190px, auto);
    gap: 10px;
    align-items: start
}

.cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_body {
    min-width: 0
}

.cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_fields {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px
}

.cs-fi2r2-gf .gform_wrapper.gravity-theme .gfield {
    margin: 0
}

.cs-fi2r2-gf .gform_wrapper.gravity-theme .gfield_label,
.cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_required_legend {
    display: none !important
}

.cs-fi2r2-gf .gform_wrapper.gravity-theme input[type="text"],
.cs-fi2r2-gf .gform_wrapper.gravity-theme input[type="tel"],
.cs-fi2r2-gf .gform_wrapper.gravity-theme input[type="email"],
.cs-fi2r2-gf .gform_wrapper.gravity-theme select {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--fi2-border);
    border-radius: 10px;
    background: #fff;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--fi2-text);
    line-height: 1.2
}

.cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_footer {
    margin: 0 !important;
    padding: 0 !important;
    display: block
}

.cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_footer input[type="submit"] {
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 12px;
    padding: 12px 18px;
    background: linear-gradient(180deg, var(--fi2-orange) 0%, var(--fi2-orange-dark) 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    box-shadow: 0 14px 28px rgba(239, 90, 41, .22);
    cursor: pointer;
    white-space: nowrap
}

.cs-fi2r2-gf .gform_wrapper.gravity-theme .gfield_error input,
.cs-fi2r2-gf .gform_wrapper.gravity-theme .gfield_error select {
    border-color: #c02b0a
}

.cs-fi2r2-gf .gform_wrapper.gravity-theme .gfield_validation_message,
.cs-fi2r2-gf .gform_wrapper.gravity-theme .validation_message {
    font-size: 12px;
    line-height: 1.3;
    margin-top: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    color: #c02b0a
}

.cs-fi2r2-secure--gf {
    justify-content: flex-end;
    margin-top: 8px
}

.cs-fi2r2-process {
    position: relative;
    background: #fff;
    padding: 0 0 18px
}

.cs-fi2r2-process__inner {
    position: relative;
    background: #fff;
    padding-top: 46px
}

.cs-fi2r2-process__inner::before {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    top: -44px;
    height: 90px;
    background: radial-gradient(125% 90px at 50% 100%, #ffffff 48%, transparent 50%);
    pointer-events: none
}

.cs-fi2r2-section-title {
    margin: 0 0 26px;
    text-align: center;
    color: var(--fi2-navy-dark);
    font-size: clamp(34px, 3.2vw, 46px);
    line-height: 1.02;
    letter-spacing: -.04em
}

.cs-fi2r2-steps-line {
    height: 2px;
    border-top: 2px dotted #bad4f3;
    margin: 0 auto 0;
    width: min(980px, 86%)
}

.cs-fi2r2-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: -12px
}

.cs-fi2r2-step {
    position: relative;
    padding: 0 28px 10px;
    text-align: center
}

.cs-fi2r2-step.has-divider::after {
    content: '';
    position: absolute;
    right: 0;
    top: 66px;
    width: 1px;
    height: 92px;
    background: #e2edf8
}

.cs-fi2r2-step__number {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    margin: 0 auto 20px;
    background: var(--fi2-blue);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 14px
}

.cs-fi2r2-step__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    color: var(--fi2-blue)
}

.cs-fi2r2-step__icon svg {
    width: 100%;
    height: 100%
}

.cs-fi2r2-step h3 {
    margin: 0 0 8px;
    font-size: 28px;
    color: var(--fi2-navy-dark)
}

.cs-fi2r2-step p {
    margin: 0 auto;
    max-width: 18ch;
    font-size: 15px;
    line-height: 1.55;
    color: var(--fi2-text-soft)
}

.cs-fi2r2-services {
    padding: 18px 0 30px;
    background: #fff
}

.cs-fi2r2-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px
}

.cs-fi2r2-service-card {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 18px;
    border: 1px solid var(--fi2-border);
    border-radius: 18px;
    padding: 24px 22px;
    min-height: 198px
}

.cs-fi2r2-service-card.is-blue {
    background: #f3f9ff
}

.cs-fi2r2-service-card.is-green {
    background: #f5faef
}

.cs-fi2r2-service-card.is-peach {
    background: #fff9ef
}

.cs-fi2r2-service-card__icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .78);
    display: grid;
    place-items: center;
    box-shadow: inset 0 0 0 1px rgba(8, 63, 115, .08)
}

.cs-fi2r2-service-card__icon img {
    max-width: 36px;
    max-height: 36px;
    width: auto;
    height: auto
}

.cs-fi2r2-service-card h3 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: .98;
    color: var(--fi2-navy-dark)
}

.cs-fi2r2-service-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--fi2-text-soft)
}

.cs-fi2r2-service-card a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: var(--fi2-navy-dark);
    font-weight: 800;
    font-size: 14px
}

.cs-fi2r2-reviews {
    padding: 24px 0 34px;
    background: #fff
}

.cs-fi2r2-review-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 18px
}

.cs-fi2r2-review-intro .cs-fi2r2-section-title {
    margin-bottom: 10px
}

.cs-fi2r2-review-intro p {
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    color: var(--fi2-text-soft)
}

.cs-fi2r2-review-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--fi2-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase
}

.cs-fi2r2-review-shortcode {
    display: block;
    width: 100%
}

.cs-fi2r2-review-shortcode .cs-reviews {
    width: 100%;
    margin: 0;
    background: transparent
}

.cs-fi2r2-review-shortcode .cs-reviews .cs-container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0
}

.cs-fi2r2-testimonials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px
}

.cs-fi2r2-testimonials article {
    position: relative;
    padding-left: 18px
}

.cs-fi2r2-testimonials article::before {
    content: '“';
    position: absolute;
    left: 0;
    top: -2px;
    color: var(--fi2-blue);
    font-size: 26px;
    font-weight: 800;
    line-height: 1
}

.cs-fi2r2-testimonials p {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--fi2-text)
}

.cs-fi2r2-testimonials strong {
    font-size: 14px;
    color: var(--fi2-navy-dark)
}

.cs-fi2r2-review-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: var(--fi2-blue);
    font-weight: 800;
    font-size: 14px
}

.cs-fi2r2-faq {
    padding: 12px 0 36px;
    background: #fff
}

.cs-fi2r2-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px
}

.cs-fi2r2-faq-item {
    border: 1px solid var(--fi2-border);
    border-radius: 12px;
    background: #fff
}

.cs-fi2r2-faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: var(--fi2-navy-dark)
}

.cs-fi2r2-faq-item summary::-webkit-details-marker {
    display: none
}

.cs-fi2r2-faq-item summary i {
    width: 14px;
    height: 14px;
    position: relative;
    flex: 0 0 14px
}

.cs-fi2r2-faq-item summary i::before,
.cs-fi2r2-faq-item summary i::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #8090a4;
    border-radius: 999px
}

.cs-fi2r2-faq-item summary i::before {
    width: 14px;
    height: 2px
}

.cs-fi2r2-faq-item summary i::after {
    width: 2px;
    height: 14px;
    transition: opacity .2s ease
}

.cs-fi2r2-faq-item[open] summary i::after {
    opacity: 0
}

.cs-fi2r2-faq-answer {
    padding: 0 20px 18px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--fi2-text-soft)
}

.cs-fi2r2-final {
    padding: 0 0 0;
    background: #fff
}

.cs-fi2r2-final__panel {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    gap: 24px;
    align-items: center;
    background: linear-gradient(180deg, #edf5ff 0%, #e6f1ff 100%);
    border-radius: 18px 18px 0 0;
    padding: 26px 28px;
    border-top: 1px solid var(--fi2-border)
}

.cs-fi2r2-final__shield {
    width: 70px;
    height: 70px;
    color: var(--fi2-blue)
}

.cs-fi2r2-final__copy h2 {
    margin: 0 0 8px;
    font-size: 40px;
    line-height: .98;
    color: var(--fi2-navy-dark)
}

.cs-fi2r2-final__copy p {
    margin: 0;
    font-size: 16px;
    color: var(--fi2-text-soft)
}

.cs-fi2r2-final__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end
}

.cs-fi2r2-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--fi2-orange);
    font-weight: 800;
    font-size: 18px
}

.cs-fi2r2-phone-link svg {
    width: 18px;
    height: 18px
}

.cs-fi2r2-footer {
    background: linear-gradient(180deg, var(--fi2-navy) 0%, var(--fi2-navy-dark) 100%);
    color: rgba(255, 255, 255, .9)
}

.cs-fi2r2-footer__inner {
    display: grid;
    grid-template-columns: auto minmax(320px, 1.5fr) minmax(150px, .7fr) minmax(230px, .9fr);
    gap: 28px;
    padding: 24px 0 30px;
    align-items: start
}

.cs-fi2r2-footer__brand img {
    max-width: 200px;
    height: auto
}

.cs-fi2r2-footer__col h3 {
    margin: 0 0 10px;
    font-size: 14px;
    color: #fff;
    letter-spacing: .06em
}

.cs-fi2r2-footer__col p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7
}

.cs-fi2r2-location-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    max-width: 720px
}

.cs-fi2r2-location-links a,
.cs-fi2r2-footer-links a,
.cs-fi2r2-contact-list a {
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    line-height: 1.35;
    transition: color .2s ease, opacity .2s ease
}

.cs-fi2r2-location-links a {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, .06)
}

.cs-fi2r2-location-links a:hover,
.cs-fi2r2-footer-links a:hover,
.cs-fi2r2-contact-list a:hover {
    color: #fff;
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 3px
}

.cs-fi2r2-location-links__more {
    background: rgba(255, 255, 255, .14) !important;
    font-weight: 800
}

.cs-fi2r2-footer-links,
.cs-fi2r2-contact-list {
    display: grid;
    gap: 8px
}

.cs-fi2r2-contact-list a {
    display: flex;
    align-items: center;
    gap: 8px
}

.cs-fi2r2-footer__col span {
    display: inline-flex;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    color: #d9eaff;
    flex: 0 0 16px
}

.cs-fi2r2-footer__col span svg {
    width: 100%;
    height: 100%
}

@media (max-width: 1280px) {
    .cs-fi2r2-hero-copy {
        padding: 46px clamp(26px, 3.8vw, 54px) 50px
    }

    .cs-fi2r2-hero-media {
        min-height: 560px
    }

    .cs-fi2r2-formstrip__inner {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .cs-fi2r2-formstrip__head {
        text-align: center
    }

    .cs-fi2r2-form--strip {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }

    .cs-fi2r2-form--strip button {
        grid-column: span 2
    }

    .cs-fi2r2-form--strip .cs-fi2r2-secure {
        grid-column: 1/-1;
        justify-content: center
    }
}

@media (max-width: 991px) {
    .cs-fi2r2-header__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 16px;
    }

    .cs-fi2r2-nav {
        grid-column: auto;
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
    }

    .cs-fi2r2-header__phone {
        justify-self: center
    }

    .cs-fi2r2-hero-panel {
        grid-template-columns: 1fr
    }

    .cs-fi2r2-hero-copy {
        padding: 34px 24px 24px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cs-fi2r2-page {
        text-align: center
    }

    .cs-fi2r2-title {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto
    }

    .cs-fi2r2-intro {
        margin-left: auto;
        margin-right: auto;
        max-width: 46ch
    }

    .cs-fi2r2-hero-actions {
        justify-content: center;
        width: 100%;
        margin-bottom: 20px
    }

    .cs-fi2r2-hero-actions .cs-fi2r2-btn {
        width: min(100%, 360px)
    }

    .cs-fi2r2-hero-call {
        justify-content: center
    }

    .cs-fi2r2-checks {
        justify-items: center;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto
    }

    .cs-fi2r2-check {
        justify-content: center;
        text-align: center
    }

    .cs-fi2r2-rating {
        justify-content: center
    }

    .cs-fi2r2-hero-media {
        min-height: 300px;
        background-position: center center;
    }

    .cs-fi2r2-formstrip__inner {
        width: min(100% - 32px, 720px);
        padding: 18px 0 20px
    }

    .cs-fi2r2-form--strip {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .cs-fi2r2-form--strip button {
        grid-column: 1/-1
    }

    .cs-fi2r2-form--strip .cs-fi2r2-secure {
        grid-column: 1/-1;
        justify-content: center;
        text-align: center
    }

    .cs-fi2r2-form input,
    .cs-fi2r2-form select,
    .cs-fi2r2-form textarea {
        text-align: left
    }

    .cs-fi2r2-service-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        max-width: 640px;
        margin-left: auto;
        margin-right: auto
    }

    .cs-fi2r2-service-card__body {
        text-align: center
    }

    .cs-fi2r2-testimonials article {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        padding-left: 0
    }

    .cs-fi2r2-testimonials article::before {
        position: static;
        display: block;
        margin-bottom: 4px
    }

    .cs-fi2r2-faq-grid {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto
    }

    .cs-fi2r2-faq-item {
        text-align: left
    }

    .cs-fi2r2-steps,
    .cs-fi2r2-service-grid,
    .cs-fi2r2-testimonials,
    .cs-fi2r2-faq-grid,
    .cs-fi2r2-footer__inner,
    .cs-fi2r2-final__panel {
        grid-template-columns: 1fr
    }

    .cs-fi2r2-step.has-divider::after {
        display: none
    }

    .cs-fi2r2-step,
    .cs-fi2r2-review-intro,
    .cs-fi2r2-review-content,
    .cs-fi2r2-final__panel,
    .cs-fi2r2-footer__inner,
    .cs-fi2r2-footer__col {
        text-align: center;
    }

    .cs-fi2r2-final {
        padding: 0 0 22px
    }

    .cs-fi2r2-final .cs-fi2r2-wrap {
        width: min(100% - 32px, 720px);
        margin-left: auto;
        margin-right: auto
    }

    .cs-fi2r2-final__panel {
        width: 100%;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        justify-items: center;
        align-items: center;
        border-radius: 18px;
        padding: 34px 24px;
    }

    .cs-fi2r2-final__shield {
        justify-self: center;
        margin: 0 auto 4px
    }

    .cs-fi2r2-final__copy {
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
        text-align: center
    }

    .cs-fi2r2-final__actions {
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 14px
    }

    .cs-fi2r2-final__actions .cs-fi2r2-btn {
        width: min(100%, 360px)
    }

    .cs-fi2r2-phone-link {
        justify-content: center
    }

    .cs-fi2r2-footer__brand {
        justify-self: center
    }

    .cs-fi2r2-location-links,
    .cs-fi2r2-footer-links,
    .cs-fi2r2-contact-list {
        justify-content: center;
        justify-items: center
    }

    .cs-fi2r2-contact-list a {
        justify-content: center
    }

    .cs-fi2r2-location-links {
        max-width: none
    }
}

@media (max-width: 820px) {
    .cs-fi2r2 {
        --fi2-wrap: min(100% - 16px, 1320px)
    }

    .cs-fi2r2-header__inner {
        padding: 14px 0;
        gap: 14px
    }

    .cs-fi2r2-header__brand img {
        width: 300px;
        max-width: 80vw;
        height: 170px
    }

    .cs-fi2r2-nav {
        display: none
    }

    .cs-fi2r2-header__phone {
        font-size: 16px
    }

    .cs-fi2r2-hero-panel {
        border-radius: 0
    }

    .cs-fi2r2-hero-copy {
        padding: 26px 18px 18px
    }

    .cs-fi2r2-title {
        font-size: clamp(38px, 11vw, 50px);
        max-width: 100%
    }

    .cs-fi2r2-intro {
        font-size: 17px;
        max-width: 100%;
        margin-bottom: 18px
    }

    .cs-fi2r2-hero-actions {
        gap: 10px;
        margin-bottom: 18px
    }

    .cs-fi2r2-hero-call {
        font-size: 15px
    }

    .cs-fi2r2-check {
        font-size: 14px
    }

    .cs-fi2r2-rating {
        font-size: 13px;
        flex-wrap: wrap
    }

    .cs-fi2r2-hero-media {
        min-height: 500px;
        background-position: center center
    }

    .cs-fi2r2-form {
        grid-template-columns: 1fr
    }

    .cs-fi2r2-form--strip {
        grid-template-columns: 1fr
    }

    .cs-fi2r2-process__inner {
        padding-top: 30px
    }

    .cs-fi2r2-process__inner::before {
        top: -20px;
        height: 44px;
        background: radial-gradient(180% 44px at 50% 100%, #ffffff 48%, transparent 50%)
    }

    .cs-fi2r2-section-title {
        font-size: 34px;
        margin-bottom: 18px
    }

    .cs-fi2r2-steps {
        gap: 18px;
        margin-top: 10px
    }

    .cs-fi2r2-step {
        padding: 0 8px
    }

    .cs-fi2r2-step h3,
    .cs-fi2r2-service-card h3 {
        font-size: 24px
    }

    .cs-fi2r2-step p {
        max-width: 100%
    }

    .cs-fi2r2-service-card {
        grid-template-columns: 1fr;
        padding: 18px;
        justify-items: center;
        text-align: center
    }

    .cs-fi2r2-final .cs-fi2r2-wrap {
        width: min(100% - 20px, 560px)
    }

    .cs-fi2r2-final__panel {
        padding: 28px 18px;
        border-radius: 16px
    }

    .cs-fi2r2-final__shield {
        width: 60px;
        height: 60px
    }

    .cs-fi2r2-final__copy h2 {
        font-size: 30px
    }

    .cs-fi2r2-final__copy p {
        max-width: 30ch;
        margin-left: auto;
        margin-right: auto
    }

    .cs-fi2r2-footer__inner {
        padding: 22px 0 calc(26px + env(safe-area-inset-bottom))
    }
}

@media (max-width: 560px) {
    .cs-fi2r2-title {
        font-size: clamp(34px, 10.5vw, 44px)
    }

    .cs-fi2r2-hero-copy {
        padding: 24px 16px 16px
    }

    .cs-fi2r2-hero-media {
        min-height: 300px
    }

    .cs-fi2r2-checks {
        gap: 9px;
        margin-bottom: 16px
    }

    .cs-fi2r2-rating {
        gap: 8px;
        line-height: 1.2
    }

    .cs-fi2r2-formstrip__inner {
        width: min(100% - 24px, 520px);
        padding: 16px 0 18px
    }
}

@media (max-width: 1280px) {
    .cs-fi2r2-gf .gform_wrapper.gravity-theme form {
        grid-template-columns: 1fr
    }

    .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_fields {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }

    .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_footer {
        max-width: 440px;
        margin: 0 auto !important;
        width: 100%
    }

    .cs-fi2r2-secure--gf {
        justify-content: center
    }
}

@media (max-width: 991px) {
    .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_fields {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_footer {
        max-width: none
    }
}

@media (max-width: 640px) {
    .cs-fi2r2-gf {
        width: 100%;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto
    }

    .cs-fi2r2-gf .gform_wrapper.gravity-theme,
    .cs-fi2r2-gf .gform_wrapper.gravity-theme form,
    .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_body,
    .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_fields,
    .cs-fi2r2-gf .gform_wrapper.gravity-theme .gfield,
    .cs-fi2r2-gf .gform_wrapper.gravity-theme .ginput_container,
    .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_footer {
        width: 100%;
        max-width: none
    }

    .cs-fi2r2-gf .gform_wrapper.gravity-theme form {
        display: block
    }

    .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_fields {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px;
        width: 100%;
        margin: 0 auto
    }

    .cs-fi2r2-gf .gform_wrapper.gravity-theme .gfield {
        grid-column: 1 / -1 !important;
        margin: 0;
        width: 100%
    }

    .cs-fi2r2-gf .gform_wrapper.gravity-theme input[type="text"],
    .cs-fi2r2-gf .gform_wrapper.gravity-theme input[type="tel"],
    .cs-fi2r2-gf .gform_wrapper.gravity-theme input[type="email"],
    .cs-fi2r2-gf .gform_wrapper.gravity-theme select {
        width: 100% !important;
        max-width: none !important;
        min-height: 48px
    }

    .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_footer {
        margin: 10px auto 0 !important;
        padding: 0 !important
    }

    .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_footer input[type="submit"] {
        width: 100% !important;
        max-width: none !important;
        min-height: 52px
    }

    .cs-fi2r2-secure--gf {
        width: 100%;
        max-width: 520px;
        margin: 12px auto 0;
        justify-content: center;
        text-align: center
    }
}

/* ============================================================
   Free Inspection Round 2 — SAMPLE PAGE ONLY (page ID 35836)
   New PPC redesign overrides. Shared FI2R2 pages above retain
   their original styling and menu. Do not remove the page scope.
   ============================================================ */
body.page-id-35836 .cs-fi2r2 {
    --fi2-navy: #0b3a73;
    --fi2-navy-dark: #072c56;
    --fi2-blue: #2a7fff;
    --fi2-blue-soft: #edf5ff;
    --fi2-blue-panel: #eef5ff;
    --fi2-orange: #ef5a29;
    --fi2-orange-dark: #db4b1d;
    --fi2-text: #17324d;
    --fi2-text-soft: #5a6f87;
    --fi2-border: #dbe7f2;
    --fi2-bg: #f7fbff;
    --fi2-wrap: min(1320px, calc(100% - 40px));
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #fff;
    color: var(--fi2-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: clip;
}
body.page-id-35836 .cs-fi2r2 *,
body.page-id-35836 .cs-fi2r2 *::before,
body.page-id-35836 .cs-fi2r2 *::after {
    box-sizing: border-box
}
body.page-id-35836 .cs-fi2r2 a {
    text-decoration: none;
    color: inherit
}
body.page-id-35836 .cs-fi2r2 img {
    max-width: 100%;
    display: block
}
body.page-id-35836 .cs-fi2r2-wrap {
    width: var(--fi2-wrap);
    margin: 0 auto
}
body.page-id-35836 .cs-fi2r2-page {
    background: #fff
}
body.page-id-35836 .cs-fi2r2-header {
    background: #fff;
    border-bottom: 1px solid var(--fi2-border);
    position: relative;
    z-index: 10
}
body.page-id-35836 .cs-fi2r2-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(16px, 2vw, 32px);
    padding: 6px 0
}
body.page-id-35836 .cs-fi2r2-header__brand img {
    width: 168px;
    max-width: 168px;
    height: auto
}
body.page-id-35836 .cs-fi2r2-header__desktop-details {
    display: grid;
    grid-template-columns: minmax(170px, 1fr) minmax(170px, .92fr) minmax(150px, .78fr);
    align-items: center;
    justify-self: stretch;
    width: min(100%, 860px);
    gap: clamp(12px, 1.7vw, 26px)
}
body.page-id-35836 .cs-fi2r2-header__location,
body.page-id-35836 .cs-fi2r2-header__email,
body.page-id-35836 .cs-fi2r2-header__inspection {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px
}
body.page-id-35836 .cs-fi2r2-header__location > svg,
body.page-id-35836 .cs-fi2r2-header__email > svg {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    color: var(--fi2-blue)
}
body.page-id-35836 .cs-fi2r2-header__location > span,
body.page-id-35836 .cs-fi2r2-header__email > span,
body.page-id-35836 .cs-fi2r2-header__inspection > span,
body.page-id-35836 .cs-fi2r2-header__phone-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    line-height: 1.12
}
body.page-id-35836 .cs-fi2r2-header__location small,
body.page-id-35836 .cs-fi2r2-header__email small,
body.page-id-35836 .cs-fi2r2-header__inspection small,
body.page-id-35836 .cs-fi2r2-header__phone-copy small {
    color: var(--fi2-text-soft);
    font-size: clamp(9px, .68vw, 11px);
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase
}
body.page-id-35836 .cs-fi2r2-header__location strong,
body.page-id-35836 .cs-fi2r2-header__email strong,
body.page-id-35836 .cs-fi2r2-header__inspection strong,
body.page-id-35836 .cs-fi2r2-header__phone-copy strong {
    color: var(--fi2-navy-dark);
    font-size: clamp(12px, .94vw, 15px);
    font-weight: 900;
    letter-spacing: -.01em
}
body.page-id-35836 .cs-fi2r2-header__email,
body.page-id-35836 .cs-fi2r2-header__inspection {
    padding-left: clamp(10px, 1.2vw, 20px);
    border-left: 1px solid var(--fi2-border)
}
body.page-id-35836 .cs-fi2r2-header__email strong,
body.page-id-35836 .cs-fi2r2-header__inspection strong {
    white-space: nowrap
}
body.page-id-35836 .cs-fi2r2-header__inspection strong {
    color: var(--fi2-blue)
}
body.page-id-35836 .cs-fi2r2-header__inspection i {
    font-style: normal
}
body.page-id-35836 .cs-fi2r2-header__email:hover,
body.page-id-35836 .cs-fi2r2-header__inspection:hover {
    opacity: .82
}
body.page-id-35836 .cs-fi2r2-header__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 8px 14px;
    border-radius: 12px;
    background: linear-gradient(180deg, var(--fi2-orange) 0%, var(--fi2-orange-dark) 100%);
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(239, 90, 41, .18)
}
body.page-id-35836 .cs-fi2r2-header__phone > svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px
}
body.page-id-35836 .cs-fi2r2-header__phone .cs-fi2r2-header__phone-copy small,
body.page-id-35836 .cs-fi2r2-header__phone .cs-fi2r2-header__phone-copy strong {
    color: #fff
}
body.page-id-35836 .cs-fi2r2-header__phone .cs-fi2r2-header__phone-copy strong {
    font-size: 16px;
    white-space: nowrap
}
body.page-id-35836 .cs-fi2r2-hero-band {
    padding: 0;
    background: #fff;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw)
}
body.page-id-35836 .cs-fi2r2-hero-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-top: 1px solid #75b0f7;
    border-bottom: 1px solid #75b0f7;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    overflow: hidden;
    background: #fff
}
body.page-id-35836 .cs-fi2r2-hero-copy {
    position: relative;
    z-index: 3;
    min-width: 0;
    padding: 58px clamp(28px, 4.6vw, 76px) 60px clamp(28px, 4.6vw, 76px);
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center
}
body.page-id-35836 .cs-fi2r2-hero-kicker {
    display: inline-flex;
    align-self: flex-start;
    margin: 0 0 10px;
    color: var(--fi2-orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase
}
body.page-id-35836 .cs-fi2r2-title {
    margin: 0 0 18px;
    font-size: clamp(52px, 4.8vw, 74px);
    line-height: .94;
    letter-spacing: -.05em;
    color: var(--fi2-navy-dark);
    max-width: 100%
}
body.page-id-35836 .cs-fi2r2-title span {
    color: var(--fi2-blue)
}
body.page-id-35836 .cs-fi2r2-intro {
    margin: 0 0 20px;
    max-width: 48ch;
    font-size: 22px;
    line-height: 1.38;
    color: var(--fi2-text)
}
body.page-id-35836 .cs-fi2r2-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 0 0 24px
}
body.page-id-35836 .cs-fi2r2-hero-cta {
    min-height: 52px;
    padding: 14px 22px
}
body.page-id-35836 .cs-fi2r2-hero-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fi2-orange);
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap
}
body.page-id-35836 .cs-fi2r2-hero-call svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px
}
body.page-id-35836 .cs-fi2r2-checks {
    display: grid;
    gap: 12px;
    margin: 0 0 22px
}
body.page-id-35836 .cs-fi2r2-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--fi2-text)
}
body.page-id-35836 .cs-fi2r2-check svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    color: var(--fi2-blue);
    margin-top: 1px
}
body.page-id-35836 .cs-fi2r2-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--fi2-text-soft);
    font-weight: 600
}
body.page-id-35836 .cs-fi2r2-rating img {
    height: 32px;
    width: auto
}
body.page-id-35836 .cs-fi2r2-rating__stars {
    color: #f6b300;
    letter-spacing: .04em;
    font-size: 18px
}
body.page-id-35836 .cs-fi2r2-rating strong {
    font-size: 28px;
    color: var(--fi2-navy-dark);
    line-height: 1
}
body.page-id-35836 .cs-fi2r2-hero-media {
    position: relative;
    min-height: 640px;
    display: block;
    padding: 0;
    overflow: hidden;
    background: #eaf2f8
}
body.page-id-35836 .cs-fi2r2-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none !important;
    object-fit: cover;
    object-position: var(--fi2-hero-position, center center)
}
body.page-id-35836 .cs-fi2r2-hero-media::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, .02) 100%)
}
body.page-id-35836 .cs-fi2r2-hero-band>.cs-fi2r2-wrap {
    width: 100%;
    max-width: none
}
body.page-id-35836 .cs-fi2r2-formstrip {
    position: relative;
    z-index: 4;
    background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
    border-bottom: 1px solid var(--fi2-border);
    box-shadow: 0 18px 42px rgba(12, 43, 78, .08)
}
body.page-id-35836 .cs-fi2r2-formstrip__inner {
    width: min(1320px, calc(100% - 40px));
    margin: 0 auto;
    padding: 18px 0;
    display: grid;
    grid-template-columns: minmax(220px, .45fr) minmax(0, 1.55fr);
    gap: 22px;
    align-items: center
}
body.page-id-35836 .cs-fi2r2-formstrip__head {
    min-width: 0
}
body.page-id-35836 .cs-fi2r2-formstrip__head span {
    display: inline-flex;
    margin-bottom: 6px;
    color: var(--fi2-orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase
}
body.page-id-35836 .cs-fi2r2-formstrip__head h2 {
    margin: 0;
    color: var(--fi2-navy-dark);
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.02;
    letter-spacing: -.03em
}
body.page-id-35836 .cs-fi2r2-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px
}
body.page-id-35836 .cs-fi2r2-form--strip {
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(200px, auto);
    align-items: center;
    gap: 10px
}
body.page-id-35836 .cs-fi2r2-field--wide {
    grid-column: 1/-1
}
body.page-id-35836 .cs-fi2r2-form input,
body.page-id-35836 .cs-fi2r2-form select,
body.page-id-35836 .cs-fi2r2-form textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--fi2-border);
    border-radius: 10px;
    background: #fff;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--fi2-text)
}
body.page-id-35836 .cs-fi2r2-form textarea {
    min-height: 82px;
    resize: vertical
}
body.page-id-35836 .cs-fi2r2-form--strip input,
body.page-id-35836 .cs-fi2r2-form--strip select {
    min-height: 48px
}
body.page-id-35836 .cs-fi2r2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .02em;
    white-space: nowrap
}
body.page-id-35836 .cs-fi2r2-btn svg {
    width: 18px;
    height: 18px
}
body.page-id-35836 .cs-fi2r2-btn--primary {
    background: linear-gradient(180deg, var(--fi2-orange) 0%, var(--fi2-orange-dark) 100%);
    color: #fff !important;
    box-shadow: 0 14px 28px rgba(239, 90, 41, .22)
}
body.page-id-35836 .cs-fi2r2-form button {
    border: 0;
    cursor: pointer
}
body.page-id-35836 .cs-fi2r2-form:not(.cs-fi2r2-form--strip) button {
    grid-column: 1/-1
}
body.page-id-35836 .cs-fi2r2-form--strip button {
    grid-column: 4 / 5;
    min-height: 48px;
    padding: 12px 18px;
    font-size: 14px
}
body.page-id-35836 .cs-fi2r2-secure {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--fi2-text-soft)
}
body.page-id-35836 .cs-fi2r2-form:not(.cs-fi2r2-form--strip) .cs-fi2r2-secure {
    grid-column: 1/-1
}
body.page-id-35836 .cs-fi2r2-form--strip .cs-fi2r2-secure {
    grid-column: 1 / -1;
    justify-content: flex-end;
    margin-top: -2px
}
body.page-id-35836 .cs-fi2r2-secure svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    color: #7e8d9f
}
body.page-id-35836 .cs-fi2r2-gf {
    min-width: 0
}
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme {
    margin: 0
}
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(190px, auto);
    gap: 10px;
    align-items: start
}
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_body {
    min-width: 0
}
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_fields {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px
}
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .gfield {
    margin: 0
}
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .gfield--type-consent {
    grid-column: 1 / -1 !important
}
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .gfield_label,
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_required_legend {
    display: none !important
}
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme input[type="text"],
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme input[type="tel"],
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme input[type="email"],
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme select {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--fi2-border);
    border-radius: 10px;
    background: #fff;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--fi2-text);
    line-height: 1.2
}
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_footer {
    margin: 0 !important;
    padding: 0 !important;
    display: block
}
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_footer input[type="submit"] {
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 12px;
    padding: 12px 18px;
    background: linear-gradient(180deg, var(--fi2-orange) 0%, var(--fi2-orange-dark) 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    box-shadow: 0 14px 28px rgba(239, 90, 41, .22);
    cursor: pointer;
    white-space: nowrap
}
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .gfield_error input,
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .gfield_error select {
    border-color: #c02b0a
}
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .gfield_validation_message,
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .validation_message {
    font-size: 12px;
    line-height: 1.3;
    margin-top: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    color: #c02b0a
}
body.page-id-35836 .cs-fi2r2-secure--gf {
    justify-content: flex-end;
    margin-top: 8px
}
body.page-id-35836 .cs-fi2r2-process {
    position: relative;
    background: #fff;
    padding: 0 0 18px
}
body.page-id-35836 .cs-fi2r2-process__inner {
    position: relative;
    background: #fff;
    padding-top: 46px
}
body.page-id-35836 .cs-fi2r2-process__inner::before {
    content: "";
    position: absolute;
    left: -4px;
    right: -4px;
    top: -44px;
    height: 90px;
    background: radial-gradient(125% 90px at 50% 100%, #ffffff 48%, transparent 50%);
    pointer-events: none
}
body.page-id-35836 .cs-fi2r2-section-title {
    margin: 0 0 26px;
    text-align: center;
    color: var(--fi2-navy-dark);
    font-size: clamp(34px, 3.2vw, 46px);
    line-height: 1.02;
    letter-spacing: -.04em
}
body.page-id-35836 .cs-fi2r2-steps-line {
    height: 2px;
    border-top: 2px dotted #bad4f3;
    margin: 0 auto 0;
    width: min(980px, 86%)
}
body.page-id-35836 .cs-fi2r2-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: -12px
}
body.page-id-35836 .cs-fi2r2-step {
    position: relative;
    padding: 0 28px 10px;
    text-align: center
}
body.page-id-35836 .cs-fi2r2-step.has-divider::after {
    content: "";
    position: absolute;
    right: 0;
    top: 66px;
    width: 1px;
    height: 92px;
    background: #e2edf8
}
body.page-id-35836 .cs-fi2r2-step__number {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    margin: 0 auto 20px;
    background: var(--fi2-blue);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 14px
}
body.page-id-35836 .cs-fi2r2-step__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    color: var(--fi2-blue)
}
body.page-id-35836 .cs-fi2r2-step__icon svg {
    width: 100%;
    height: 100%
}
body.page-id-35836 .cs-fi2r2-step h3 {
    margin: 0 0 8px;
    font-size: 28px;
    color: var(--fi2-navy-dark)
}
body.page-id-35836 .cs-fi2r2-step p {
    margin: 0 auto;
    max-width: 18ch;
    font-size: 15px;
    line-height: 1.55;
    color: var(--fi2-text-soft)
}
body.page-id-35836 .cs-fi2r2-services {
    padding: 18px 0 30px;
    background: #fff
}
body.page-id-35836 .cs-fi2r2-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px
}
body.page-id-35836 .cs-fi2r2-service-card {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 18px;
    border: 1px solid var(--fi2-border);
    border-radius: 18px;
    padding: 24px 22px;
    min-height: 198px
}
body.page-id-35836 .cs-fi2r2-service-card.is-blue {
    background: #f3f9ff
}
body.page-id-35836 .cs-fi2r2-service-card.is-green {
    background: #f5faef
}
body.page-id-35836 .cs-fi2r2-service-card.is-peach {
    background: #fff9ef
}
body.page-id-35836 .cs-fi2r2-service-card__icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .78);
    display: grid;
    place-items: center;
    box-shadow: inset 0 0 0 1px rgba(8, 63, 115, .08)
}
body.page-id-35836 .cs-fi2r2-service-card__icon img {
    max-width: 36px;
    max-height: 36px;
    width: auto;
    height: auto
}
body.page-id-35836 .cs-fi2r2-service-card h3 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: .98;
    color: var(--fi2-navy-dark)
}
body.page-id-35836 .cs-fi2r2-service-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--fi2-text-soft)
}
body.page-id-35836 .cs-fi2r2-service-card a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: var(--fi2-navy-dark);
    font-weight: 800;
    font-size: 14px
}
body.page-id-35836 .cs-fi2r2-reviews {
    padding: 24px 0 34px;
    background: #fff
}
body.page-id-35836 .cs-fi2r2-review-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 18px
}
body.page-id-35836 .cs-fi2r2-review-intro .cs-fi2r2-section-title {
    margin-bottom: 10px
}
body.page-id-35836 .cs-fi2r2-review-intro p {
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    color: var(--fi2-text-soft)
}
body.page-id-35836 .cs-fi2r2-review-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--fi2-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase
}
body.page-id-35836 .cs-fi2r2-review-shortcode {
    display: block;
    width: 100%
}
body.page-id-35836 .cs-fi2r2-review-shortcode .cs-reviews {
    width: 100%;
    margin: 0;
    background: transparent
}
body.page-id-35836 .cs-fi2r2-review-shortcode .cs-reviews .cs-container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0
}
body.page-id-35836 .cs-fi2r2-testimonials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px
}
body.page-id-35836 .cs-fi2r2-testimonials article {
    position: relative;
    padding-left: 18px
}
body.page-id-35836 .cs-fi2r2-testimonials article::before {
    content: "“";
    position: absolute;
    left: 0;
    top: -2px;
    color: var(--fi2-blue);
    font-size: 26px;
    font-weight: 800;
    line-height: 1
}
body.page-id-35836 .cs-fi2r2-testimonials p {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--fi2-text)
}
body.page-id-35836 .cs-fi2r2-testimonials strong {
    font-size: 14px;
    color: var(--fi2-navy-dark)
}
body.page-id-35836 .cs-fi2r2-review-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: var(--fi2-blue);
    font-weight: 800;
    font-size: 14px
}
body.page-id-35836 .cs-fi2r2-faq {
    padding: 12px 0 36px;
    background: #fff
}
body.page-id-35836 .cs-fi2r2-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px
}
body.page-id-35836 .cs-fi2r2-faq-item {
    border: 1px solid var(--fi2-border);
    border-radius: 12px;
    background: #fff
}
body.page-id-35836 .cs-fi2r2-faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: var(--fi2-navy-dark)
}
body.page-id-35836 .cs-fi2r2-faq-item summary::-webkit-details-marker {
    display: none
}
body.page-id-35836 .cs-fi2r2-faq-item summary i {
    width: 14px;
    height: 14px;
    position: relative;
    flex: 0 0 14px
}
body.page-id-35836 .cs-fi2r2-faq-item summary i::before,
body.page-id-35836 .cs-fi2r2-faq-item summary i::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #8090a4;
    border-radius: 999px
}
body.page-id-35836 .cs-fi2r2-faq-item summary i::before {
    width: 14px;
    height: 2px
}
body.page-id-35836 .cs-fi2r2-faq-item summary i::after {
    width: 2px;
    height: 14px;
    transition: opacity .2s ease
}
body.page-id-35836 .cs-fi2r2-faq-item[open] summary i::after {
    opacity: 0
}
body.page-id-35836 .cs-fi2r2-faq-answer {
    padding: 0 20px 18px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--fi2-text-soft)
}
body.page-id-35836 .cs-fi2r2-final {
    padding: 0 0 0;
    background: #fff
}
body.page-id-35836 .cs-fi2r2-final__panel {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    gap: 24px;
    align-items: center;
    background: linear-gradient(180deg, #edf5ff 0%, #e6f1ff 100%);
    border-radius: 18px 18px 0 0;
    padding: 26px 28px;
    border-top: 1px solid var(--fi2-border)
}
body.page-id-35836 .cs-fi2r2-final__shield {
    width: 70px;
    height: 70px;
    color: var(--fi2-blue)
}
body.page-id-35836 .cs-fi2r2-final__copy h2 {
    margin: 0 0 8px;
    font-size: 40px;
    line-height: .98;
    color: var(--fi2-navy-dark)
}
body.page-id-35836 .cs-fi2r2-final__copy p {
    margin: 0;
    font-size: 16px;
    color: var(--fi2-text-soft)
}
body.page-id-35836 .cs-fi2r2-final__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end
}
body.page-id-35836 .cs-fi2r2-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--fi2-orange);
    font-weight: 800;
    font-size: 18px
}
body.page-id-35836 .cs-fi2r2-phone-link svg {
    width: 18px;
    height: 18px
}
body.page-id-35836 .cs-fi2r2-footer {
    background: linear-gradient(180deg, var(--fi2-navy) 0%, var(--fi2-navy-dark) 100%);
    color: rgba(255, 255, 255, .9)
}
body.page-id-35836 .cs-fi2r2-footer__inner {
    display: grid;
    grid-template-columns: auto minmax(320px, 1.5fr) minmax(150px, .7fr) minmax(230px, .9fr);
    gap: 28px;
    padding: 24px 0 30px;
    align-items: start
}
body.page-id-35836 .cs-fi2r2-footer__brand img {
    max-width: 200px;
    height: auto
}
body.page-id-35836 .cs-fi2r2-footer__col h3 {
    margin: 0 0 10px;
    font-size: 14px;
    color: #fff;
    letter-spacing: .06em
}
body.page-id-35836 .cs-fi2r2-footer__col p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7
}
body.page-id-35836 .cs-fi2r2-location-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    max-width: 720px
}
body.page-id-35836 .cs-fi2r2-location-links a,
body.page-id-35836 .cs-fi2r2-footer-links a,
body.page-id-35836 .cs-fi2r2-contact-list a {
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    line-height: 1.35;
    transition: color .2s ease, opacity .2s ease
}
body.page-id-35836 .cs-fi2r2-location-links a {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, .06)
}
body.page-id-35836 .cs-fi2r2-location-links a:hover,
body.page-id-35836 .cs-fi2r2-footer-links a:hover,
body.page-id-35836 .cs-fi2r2-contact-list a:hover {
    color: #fff;
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 3px
}
body.page-id-35836 .cs-fi2r2-location-links__more {
    background: rgba(255, 255, 255, .14) !important;
    font-weight: 800
}
body.page-id-35836 .cs-fi2r2-footer-links,
body.page-id-35836 .cs-fi2r2-contact-list {
    display: grid;
    gap: 8px
}
body.page-id-35836 .cs-fi2r2-contact-list a {
    display: flex;
    align-items: center;
    gap: 8px
}
body.page-id-35836 .cs-fi2r2-footer__col span {
    display: inline-flex;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    color: #d9eaff;
    flex: 0 0 16px
}
body.page-id-35836 .cs-fi2r2-footer__col span svg {
    width: 100%;
    height: 100%
}
@media (min-width: 1600px) {
body.page-id-35836 .cs-fi2r2-header .cs-fi2r2-wrap {
        width: min(1520px, calc(100% - 48px))
    }
body.page-id-35836 .cs-fi2r2-hero-panel {
        grid-template-columns: minmax(620px, 700px) minmax(0, 1fr)
    }
body.page-id-35836 .cs-fi2r2-hero-copy,
body.page-id-35836 .cs-fi2r2-hero-media {
        min-height: 560px
    }
body.page-id-35836 .cs-fi2r2-hero-copy {
        padding-top: 48px;
        padding-bottom: 48px
    }

}
@media (max-width: 1280px) {
body.page-id-35836 .cs-fi2r2-hero-copy {
        padding: 46px clamp(26px, 3.8vw, 54px) 50px
    }
body.page-id-35836 .cs-fi2r2-hero-media {
        min-height: 560px
    }
body.page-id-35836 .cs-fi2r2-formstrip__inner {
        grid-template-columns: 1fr;
        gap: 14px
    }
body.page-id-35836 .cs-fi2r2-formstrip__head {
        text-align: center
    }
body.page-id-35836 .cs-fi2r2-form--strip {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
body.page-id-35836 .cs-fi2r2-form--strip button {
        grid-column: 1 / -1
    }
body.page-id-35836 .cs-fi2r2-form--strip .cs-fi2r2-secure {
        grid-column: 1/-1;
        justify-content: center
    }

}
@media (max-width: 991px) {
body.page-id-35836 .cs-fi2r2-header__inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
        justify-items: stretch;
        text-align: left;
        gap: 12px;
        padding: 8px 0
    }
body.page-id-35836 .cs-fi2r2-header__desktop-details {
        display: none
    }
body.page-id-35836 .cs-fi2r2-header__brand img {
        width: 112px;
        max-width: 112px;
        height: auto
    }
body.page-id-35836 .cs-fi2r2-header__phone {
        justify-self: end;
        min-height: 50px;
        padding: 7px 11px;
        border-radius: 11px
    }
body.page-id-35836 .cs-fi2r2-header__phone .cs-fi2r2-header__phone-copy small {
        font-size: 9px
    }
body.page-id-35836 .cs-fi2r2-header__phone .cs-fi2r2-header__phone-copy strong {
        font-size: 14px
    }
body.page-id-35836 .cs-fi2r2-hero-panel {
        display: block;
        min-height: 590px
    }
body.page-id-35836 .cs-fi2r2-hero-copy {
        position: relative;
        z-index: 3;
        min-height: 590px;
        padding: 30px 24px 42px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.96) 48%, rgba(255,255,255,.88) 68%, rgba(255,255,255,.58) 84%, rgba(255,255,255,.18) 100%)
    }
body.page-id-35836 .cs-fi2r2-hero-kicker {
        align-self: center
    }
body.page-id-35836 .cs-fi2r2-page {
        text-align: center
    }
body.page-id-35836 .cs-fi2r2-title {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto
    }
body.page-id-35836 .cs-fi2r2-intro {
        margin-left: auto;
        margin-right: auto;
        max-width: 46ch
    }
body.page-id-35836 .cs-fi2r2-hero-actions {
        justify-content: center;
        width: 100%;
        margin-bottom: 20px
    }
body.page-id-35836 .cs-fi2r2-hero-actions .cs-fi2r2-btn {
        width: min(100%, 360px)
    }
body.page-id-35836 .cs-fi2r2-hero-call {
        justify-content: center
    }
body.page-id-35836 .cs-fi2r2-checks {
        justify-items: center;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto
    }
body.page-id-35836 .cs-fi2r2-check {
        justify-content: center;
        text-align: center
    }
body.page-id-35836 .cs-fi2r2-rating {
        justify-content: center
    }
body.page-id-35836 .cs-fi2r2-hero-media {
        position: absolute;
        z-index: 1;
        inset: 0;
        min-height: 0
    }
body.page-id-35836 .cs-fi2r2-hero-img {
        object-position: var(--fi2-hero-position-mobile, center center)
    }
body.page-id-35836 .cs-fi2r2-hero-media::before {
        background: linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,0) 100%)
    }
body.page-id-35836 .cs-fi2r2-formstrip__inner {
        width: min(100% - 32px, 720px);
        padding: 18px 0 20px
    }
body.page-id-35836 .cs-fi2r2-form--strip {
        grid-template-columns: 1fr
    }
body.page-id-35836 .cs-fi2r2-form--strip button {
        grid-column: 1/-1
    }
body.page-id-35836 .cs-fi2r2-form--strip .cs-fi2r2-secure {
        grid-column: 1/-1;
        justify-content: center;
        text-align: center
    }
body.page-id-35836 .cs-fi2r2-form input,
body.page-id-35836 .cs-fi2r2-form select,
body.page-id-35836 .cs-fi2r2-form textarea {
        text-align: left
    }
body.page-id-35836 .cs-fi2r2-service-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        max-width: 640px;
        margin-left: auto;
        margin-right: auto
    }
body.page-id-35836 .cs-fi2r2-service-card__body {
        text-align: center
    }
body.page-id-35836 .cs-fi2r2-testimonials article {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        padding-left: 0
    }
body.page-id-35836 .cs-fi2r2-testimonials article::before {
        position: static;
        display: block;
        margin-bottom: 4px
    }
body.page-id-35836 .cs-fi2r2-faq-grid {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto
    }
body.page-id-35836 .cs-fi2r2-faq-item {
        text-align: left
    }
body.page-id-35836 .cs-fi2r2-steps,
body.page-id-35836 .cs-fi2r2-service-grid,
body.page-id-35836 .cs-fi2r2-testimonials,
body.page-id-35836 .cs-fi2r2-faq-grid,
body.page-id-35836 .cs-fi2r2-footer__inner,
body.page-id-35836 .cs-fi2r2-final__panel {
        grid-template-columns: 1fr
    }
body.page-id-35836 .cs-fi2r2-step.has-divider::after {
        display: none
    }
body.page-id-35836 .cs-fi2r2-step,
body.page-id-35836 .cs-fi2r2-review-intro,
body.page-id-35836 .cs-fi2r2-review-content,
body.page-id-35836 .cs-fi2r2-final__panel,
body.page-id-35836 .cs-fi2r2-footer__inner,
body.page-id-35836 .cs-fi2r2-footer__col {
        text-align: center;
    }
body.page-id-35836 .cs-fi2r2-final {
        padding: 0 0 22px
    }
body.page-id-35836 .cs-fi2r2-final .cs-fi2r2-wrap {
        width: min(100% - 32px, 720px);
        margin-left: auto;
        margin-right: auto
    }
body.page-id-35836 .cs-fi2r2-final__panel {
        width: 100%;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        justify-items: center;
        align-items: center;
        border-radius: 18px;
        padding: 34px 24px;
    }
body.page-id-35836 .cs-fi2r2-final__shield {
        justify-self: center;
        margin: 0 auto 4px
    }
body.page-id-35836 .cs-fi2r2-final__copy {
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
        text-align: center
    }
body.page-id-35836 .cs-fi2r2-final__actions {
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 14px
    }
body.page-id-35836 .cs-fi2r2-final__actions .cs-fi2r2-btn {
        width: min(100%, 360px)
    }
body.page-id-35836 .cs-fi2r2-phone-link {
        justify-content: center
    }
body.page-id-35836 .cs-fi2r2-footer__brand {
        justify-self: center
    }
body.page-id-35836 .cs-fi2r2-location-links,
body.page-id-35836 .cs-fi2r2-footer-links,
body.page-id-35836 .cs-fi2r2-contact-list {
        justify-content: center;
        justify-items: center
    }
body.page-id-35836 .cs-fi2r2-contact-list a {
        justify-content: center
    }
body.page-id-35836 .cs-fi2r2-location-links {
        max-width: none
    }

}
@media (max-width: 820px) {
body.page-id-35836 .cs-fi2r2 {
        --fi2-wrap: min(100% - 16px, 1320px)
    }
body.page-id-35836 .cs-fi2r2-header__inner {
        padding: 7px 0;
        gap: 10px
    }
body.page-id-35836 .cs-fi2r2-header__brand img {
        width: 104px;
        max-width: 104px;
        height: auto
    }
body.page-id-35836 .cs-fi2r2-header__phone {
        min-height: 48px;
        gap: 7px;
        padding: 6px 10px
    }
body.page-id-35836 .cs-fi2r2-header__phone > svg {
        width: 16px;
        height: 16px;
        flex-basis: 16px
    }
body.page-id-35836 .cs-fi2r2-hero-panel {
        border-radius: 0
    }
body.page-id-35836 .cs-fi2r2-hero-panel,
body.page-id-35836 .cs-fi2r2-hero-copy {
        min-height: 570px
    }
body.page-id-35836 .cs-fi2r2-hero-copy {
        padding: 24px 18px 40px
    }
body.page-id-35836 .cs-fi2r2-title {
        font-size: clamp(36px, 10.2vw, 48px);
        max-width: 100%
    }
body.page-id-35836 .cs-fi2r2-intro {
        font-size: 17px;
        max-width: 100%;
        margin-bottom: 18px
    }
body.page-id-35836 .cs-fi2r2-hero-actions {
        gap: 10px;
        margin-bottom: 18px
    }
body.page-id-35836 .cs-fi2r2-hero-call {
        font-size: 15px
    }
body.page-id-35836 .cs-fi2r2-check {
        font-size: 14px
    }
body.page-id-35836 .cs-fi2r2-rating {
        font-size: 13px;
        flex-wrap: wrap
    }
body.page-id-35836 .cs-fi2r2-form {
        grid-template-columns: 1fr
    }
body.page-id-35836 .cs-fi2r2-form--strip {
        grid-template-columns: 1fr
    }
body.page-id-35836 .cs-fi2r2-process__inner {
        padding-top: 30px
    }
body.page-id-35836 .cs-fi2r2-process__inner::before {
        top: -20px;
        height: 44px;
        background: radial-gradient(180% 44px at 50% 100%, #ffffff 48%, transparent 50%)
    }
body.page-id-35836 .cs-fi2r2-section-title {
        font-size: 34px;
        margin-bottom: 18px
    }
body.page-id-35836 .cs-fi2r2-steps {
        gap: 18px;
        margin-top: 10px
    }
body.page-id-35836 .cs-fi2r2-step {
        padding: 0 8px
    }
body.page-id-35836 .cs-fi2r2-step h3,
body.page-id-35836 .cs-fi2r2-service-card h3 {
        font-size: 24px
    }
body.page-id-35836 .cs-fi2r2-step p {
        max-width: 100%
    }
body.page-id-35836 .cs-fi2r2-service-card {
        grid-template-columns: 1fr;
        padding: 18px;
        justify-items: center;
        text-align: center
    }
body.page-id-35836 .cs-fi2r2-final .cs-fi2r2-wrap {
        width: min(100% - 20px, 560px)
    }
body.page-id-35836 .cs-fi2r2-final__panel {
        padding: 28px 18px;
        border-radius: 16px
    }
body.page-id-35836 .cs-fi2r2-final__shield {
        width: 60px;
        height: 60px
    }
body.page-id-35836 .cs-fi2r2-final__copy h2 {
        font-size: 30px
    }
body.page-id-35836 .cs-fi2r2-final__copy p {
        max-width: 30ch;
        margin-left: auto;
        margin-right: auto
    }
body.page-id-35836 .cs-fi2r2-footer__inner {
        padding: 22px 0 calc(26px + env(safe-area-inset-bottom))
    }

}
@media (max-width: 560px) {
body.page-id-35836 .cs-fi2r2-title {
        font-size: clamp(34px, 9.8vw, 44px)
    }
body.page-id-35836 .cs-fi2r2-hero-panel,
body.page-id-35836 .cs-fi2r2-hero-copy {
        min-height: 560px
    }
body.page-id-35836 .cs-fi2r2-hero-copy {
        padding: 22px 16px 38px
    }
body.page-id-35836 .cs-fi2r2-checks {
        gap: 9px;
        margin-bottom: 16px
    }
body.page-id-35836 .cs-fi2r2-rating {
        gap: 8px;
        line-height: 1.2
    }
body.page-id-35836 .cs-fi2r2-formstrip__inner {
        width: min(100% - 24px, 520px);
        padding: 16px 0 18px
    }

}
@media (max-width: 1280px) {
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme form {
        grid-template-columns: 1fr
    }
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_fields {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_footer {
        max-width: 440px;
        margin: 0 auto !important;
        width: 100%
    }
body.page-id-35836 .cs-fi2r2-secure--gf {
        justify-content: center
    }

}
@media (max-width: 991px) {
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_fields {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_footer {
        max-width: none
    }

}
@media (max-width: 640px) {
body.page-id-35836 .cs-fi2r2-gf {
        width: 100%;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto
    }
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme,
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme form,
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_body,
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_fields,
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .gfield,
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .ginput_container,
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_footer {
        width: 100%;
        max-width: none
    }
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme form {
        display: block
    }
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_fields {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px;
        width: 100%;
        margin: 0 auto
    }
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .gfield {
        grid-column: 1 / -1 !important;
        margin: 0;
        width: 100%
    }
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme input[type="text"],
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme input[type="tel"],
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme input[type="email"],
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme select {
        width: 100% !important;
        max-width: none !important;
        min-height: 48px
    }
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_footer {
        margin: 10px auto 0 !important;
        padding: 0 !important
    }
body.page-id-35836 .cs-fi2r2-gf .gform_wrapper.gravity-theme .gform_footer input[type="submit"] {
        width: 100% !important;
        max-width: none !important;
        min-height: 52px
    }
body.page-id-35836 .cs-fi2r2-secure--gf {
        width: 100%;
        max-width: 520px;
        margin: 12px auto 0;
        justify-content: center;
        text-align: center
    }

}

.cs-mc2 {
    --cs-navy: #03244b;
    --cs-navy-deep: #021731;
    --cs-black: #101820;
    --cs-black-soft: #0b1b33;
    --cs-orange: #f25b22;
    --cs-orange-deep: #e84c12;
    --cs-white: #fff;
    --cs-line: rgba(3, 36, 75, .10);
    --cs-text: #102033;
    --cs-muted: #556170;
    --cs-wrap: min(1180px, calc(100% - 32px));
    --cs-radius-xl: 22px;
    --cs-radius-lg: 18px;
    --cs-radius-md: 14px;
}

.cs-mc2,
* .cs-mc2 {
    box-sizing: border-box
}

.cs-mc2 {
    width: 100%;
    background: #fff;
    color: var(--cs-text);
}

.cs-mc2 a {
    text-decoration: none;
    color: inherit
}

.cs-mc2 img {
    display: block;
    max-width: 100%
}

.cs-mc2-wrap {
    width: var(--cs-wrap);
    margin: 0 auto
}

.cs-mc2-band {
    width: 100%
}

.cs-mc2-title-font {
    font-family: 'catamaran';
    letter-spacing: -.01em
}

.cs-mc2-header {
    background: var(--cs-navy);
    color: #fff;
    padding: 18px 0
}

.cs-mc2-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px
}

.cs-mc2-brand img {
    height: 100px;
    width: auto;
    object-fit: contain
}

.cs-mc2-header__service-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
    color: rgba(255, 255, 255, .9);
    line-height: 1.18
}

.cs-mc2-header__service-line span {
    display: block;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .72)
}

.cs-mc2-header__service-line strong {
    display: block;
    font-size: 19px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.01em
}

.cs-mc2-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 28px;
    border-radius: 16px;
    background: var(--cs-orange);
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -.02em;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(242, 91, 34, .22)
}

.cs-mc2-hero {
    background: linear-gradient(135deg, #eef3f7 0%, #dfe7ef 100%);
    overflow: hidden
}

.cs-mc2-hero .cs-mc2-wrap {
    width: 100%;
    max-width: none;
    margin: 0
}

.cs-mc2-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    min-height: 640px;
    padding: 0;
    gap: 0
}

.cs-mc2-hero__grid--split {
    grid-template-columns: minmax(0, 47.5%) minmax(0, 52.5%)
}

.cs-mc2-hero__copy {
    background: rgba(255, 255, 255, .98);
    padding: clamp(48px, 6vw, 84px) clamp(28px, 5vw, 76px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: none;
    border-radius: 0
}

.cs-mc2-hero__media {
    display: block;
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: #cfd9e3;
    box-shadow: none
}

.cs-mc2-hero__media:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 36, 75, .10), rgba(3, 36, 75, 0) 42%);
    pointer-events: none
}

.cs-mc2-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    object-position: center
}

.cs-mc2-eyebrow {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cs-navy);
    margin-bottom: 18px
}

.cs-mc2-hero__title {
    margin: 0;
    font-family: 'catamaran';
    font-size: clamp(42px, 5vw, 64px);
    line-height: .92;
    letter-spacing: -.02em;
    color: var(--cs-navy);
    max-width: 520px
}

.cs-mc2-hero__copy p {
    margin: 20px 0 0;
    font-size: 23px;
    line-height: 1.36;
    color: #243447;
    max-width: 440px;
    font-weight: 500
}

.cs-mc2-hero__cta {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 18px 28px;
    background: linear-gradient(135deg, #ff6a2f 0%, #f25b22 45%, #ec4c14 100%);
    color: #fff;
    border-radius: 18px;
    width: fit-content;
    box-shadow: 0 16px 32px rgba(242, 91, 34, .25)
}

.cs-mc2-hero__cta svg {
    width: 34px;
    height: 34px;
    flex: 0 0 34px
}

.cs-mc2-hero__phone {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.cs-mc2-hero__phone strong {
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 800;
    letter-spacing: -.03em
}

.cs-mc2-hero__phone span {
    margin-top: 8px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase
}

.cs-mc2-hero__proof {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: var(--cs-navy);
    font-weight: 600
}

.cs-mc2-hero__proof svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px
}

.cs-mc2-proof {
    background: var(--cs-navy);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.cs-mc2-proof__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

.cs-mc2-proof__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 20px;
    border-right: 1px solid rgba(255, 255, 255, .12);
    justify-content: center;
    min-height: 106px
}

.cs-mc2-proof__item:last-child {
    border-right: 0
}

.cs-mc2-proof__item svg {
    width: 44px;
    height: 44px;
    flex: 0 0 44px
}

.cs-mc2-proof__item span {
    font-size: 14px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: .01em
}

.cs-mc2-section {
    background: #fff;
    padding: 4rem 0 5rem
}

.cs-mc2-section__title {
    margin: 0 0 22px;
    text-align: center;
    font-family: 'catamaran';
    font-size: clamp(34px, 3.1vw, 48px);
    letter-spacing: -.01em;
    color: var(--cs-navy)
}

.cs-mc2-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px
}

.cs-mc2-card {
    border: 1px solid var(--cs-line);
    border-radius: 18px;
    background: #fff;
    padding: 24px 22px 18px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(3, 36, 75, .05)
}

.cs-mc2-card__icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cs-navy)
}

.cs-mc2-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.cs-mc2-card h3 {
    margin: 0;
    font-family: 'catamaran';
    font-size: 28px;
    line-height: .98;
    color: var(--cs-navy);
    letter-spacing: -.01em
}

.cs-mc2-card p {
    margin: 12px auto 0;
    max-width: 210px;
    font-size: 15px;
    line-height: 1.45;
    color: #506072
}

.cs-mc2-card a {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cs-orange);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .02em;
    text-transform: uppercase
}

.cs-mc2-callback {
    background: #101820;
    color: #fff;
    padding: 22px 0
}

.cs-mc2-callback__grid {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(420px, 1.1fr);
    align-items: center;
    gap: 26px
}

.cs-mc2-callback__copy {
    display: flex;
    align-items: center;
    gap: 18px
}

.cs-mc2-callback__icon {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .2);
    display: grid;
    place-items: center;
    color: #fff
}

.cs-mc2-callback__icon svg {
    width: 30px;
    height: 30px
}

.cs-mc2-callback__copy h2 {
    margin: 0;
    font-family: 'catamaran';
    font-size: 44px;
    line-height: .92;
    letter-spacing: -.01em
}

.cs-mc2-callback__copy p {
    margin: 8px 0 0;
    font-size: 17px;
    color: rgba(255, 255, 255, .85)
}

.cs-mc2-callback__form {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.cs-mc2-callback__fields {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    align-items: center
}

.cs-mc2-callback__fields input {
    min-height: 52px;
    border-radius: 10px;
    border: 0;
    padding: 0 16px;
    font-size: 16px;
    color: #0e2037;
    background: #fff
}

.cs-mc2-callback__submit {
    min-height: 52px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff6a2f 0%, #f25b22 45%, #ec4c14 100%);
    padding: 0 22px;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap
}

.cs-mc2-callback__note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, .8)
}

.cs-mc2-gf {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%
}

.cs-mc2-gf .gform_wrapper.gravity-theme {
    margin: 0;
    width: 100%
}

.cs-mc2-gf .gform_wrapper.gravity-theme form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
    width: 100%
}

.cs-mc2-gf .gform_wrapper.gravity-theme .gform_body {
    min-width: 0
}

.cs-mc2-gf .gform_wrapper.gravity-theme .gform_fields {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px
}

.cs-mc2-gf .gform_wrapper.gravity-theme .gfield {
    margin: 0;
    color: #fff !important;
}

.cs-mc2-gf .gform_wrapper.gravity-theme .gfield.gfield--width-third {
    grid-column: span 1 !important;
    min-width: 0
}

.cs-mc2-gf .gform_wrapper.gravity-theme .gfield--type-consent,
.cs-mc2-gf .gform_wrapper.gravity-theme .gfield.gfield--width-full {
    grid-column: 1 / -1 !important
}

.cs-mc2-gf .gf-consent-white {
    width: 100%;
    color: #fff;
}

.cs-mc2-gf .gform_wrapper.gravity-theme .gfield_label,
.cs-mc2-gf .gform_wrapper.gravity-theme .gform_required_legend {
    display: none !important
}

.cs-mc2-gf .gform_wrapper.gravity-theme input[type="text"],
.cs-mc2-gf .gform_wrapper.gravity-theme input[type="tel"],
.cs-mc2-gf .gform_wrapper.gravity-theme input[type="email"] {
    width: 100%;
    min-height: 52px;
    border-radius: 10px;
    border: 0;
    padding: 0 16px;
    font-size: 16px;
    color: #0e2037;
    background: #fff;
    line-height: 1.2
}

.cs-mc2-gf .gform_wrapper.gravity-theme .gform_footer {
    margin: 0 !important;
    padding: 0 !important;
    display: block
}

.cs-mc2-gf .gform_wrapper.gravity-theme .gform_footer input[type="submit"] {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff6a2f 0%, #f25b22 45%, #ec4c14 100%);
    padding: 0 22px;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 12px 24px rgba(242, 91, 34, .22)
}

.cs-mc2-gf .gform_wrapper.gravity-theme .gfield_error input {
    border: 2px solid #f4a08b
}

.cs-mc2-gf .gform_wrapper.gravity-theme .gfield_validation_message,
.cs-mc2-gf .gform_wrapper.gravity-theme .validation_message {
    font-size: 12px;
    line-height: 1.3;
    margin-top: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    color: #ffd2c6;
    text-align: left
}

.cs-mc2-gf .gform_confirmation_message {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    font-weight: 700;
    text-align: left
}

.cs-mc2-faq {
    background: #fff;
    padding: 4rem 0 4rem
}

.cs-mc2-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.cs-mc2-faq__item {
    border: 1px solid rgba(3, 36, 75, .12);
    border-radius: 12px;
    background: #fff;
    overflow: hidden
}

.cs-mc2-faq__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    background: #fff;
    border: 0;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: var(--cs-text);
    cursor: pointer
}

.cs-mc2-faq__trigger span:last-child {
    font-size: 28px;
    line-height: 1;
    color: var(--cs-navy);
    font-weight: 500
}

.cs-mc2-faq__panel {
    display: none;
    padding: 0 22px 20px;
    font-size: 16px;
    line-height: 1.55;
    color: #556170
}

.cs-mc2-faq__item.is-open .cs-mc2-faq__panel {
    display: block
}

.cs-mc2-speed {
    background: #fff;
    padding: 0
}

.cs-mc2-speed>.cs-mc2-wrap {
    width: 100%;
    max-width: none
}

.cs-mc2-speed__strip {
    border-radius: 0;
    background: linear-gradient(90deg, var(--cs-navy), var(--cs-navy) 52%, #10284a 100%);
    color: #fff;
    padding: 26px 32px;
    display: grid;
    grid-template-columns: minmax(280px, 2.5fr) repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: center
}

.cs-mc2-speed__lead {
    display: flex;
    align-items: center;
    gap: 16px
}

.cs-mc2-speed__lead svg {
    width: 66px;
    height: 66px;
    flex: 0 0 66px
}

.cs-mc2-speed__lead strong {
    display: block;
    font-family: 'catamaran';
    font-size: 44px;
    line-height: .88;
    letter-spacing: -.01em
}

.cs-mc2-speed__lead span {
    display: block;
    margin-top: 8px;
    font-size: 18px;
    color: rgba(255, 255, 255, .84)
}

.cs-mc2-speed__item {
    display: flex;
    align-items: center;
    gap: 12px
}

.cs-mc2-speed__item svg {
    width: 34px;
    height: 34px;
    flex: 0 0 34px
}

.cs-mc2-speed__item strong {
    display: block;
    font-family: 'catamaran';
    font-size: 29px;
    line-height: .94
}

.cs-mc2-speed__item span {
    display: block;
    margin-top: 4px;
    font-size: 15px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.35
}

.cs-mc2-footer-areas {
    background: var(--cs-navy-deep);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, .10);
    width: 100%
}

.cs-mc2-footer-areas>.cs-mc2-wrap {
    width: 100%;
    max-width: none;
    margin: 0
}

.cs-mc2-footer-areas__inner {
    display: grid;
    grid-template-columns: minmax(260px, .75fr) minmax(320px, 1.25fr);
    gap: 28px;
    align-items: center;
    padding: 28px 32px 32px
}

.cs-mc2-footer-areas__copy h2 {
    margin: 0;
    font-family: 'catamaran';
    font-size: clamp(28px, 2.8vw, 42px);
    line-height: .98;
    letter-spacing: -.01em;
    color: #fff
}

.cs-mc2-footer-areas__copy p {
    margin: 8px 0 0;
    font-size: 16px;
    line-height: 1.45;
    color: rgba(255, 255, 255, .78);
    max-width: 42ch
}

.cs-mc2-location-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 10px
}

.cs-mc2-location-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .92);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    transition: background .2s ease, color .2s ease, border-color .2s ease
}

.cs-mc2-location-links a:hover,
.cs-mc2-location-links a:focus-visible {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .36);
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px
}

.cs-mc2-location-links__more {
    background: var(--cs-orange) !important;
    border-color: var(--cs-orange) !important;
    color: #fff !important
}

.cs-mc2-mobile-call {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #ff6a2f 0%, #f25b22 45%, #ec4c14 100%);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 70px;
    padding: 0 16px;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: .02em;
    text-transform: uppercase;
    box-shadow: 0 -12px 28px rgba(3, 36, 75, .18)
}

.cs-mc2-mobile-call svg {
    width: 26px;
    height: 26px;
    flex: 0 0 26px
}

@media (max-width: 991px) {
    .cs-mc2-header__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 14px;
    }

    .cs-mc2-header__service-line {
        max-width: 360px;
        margin: 0 auto;
    }

    .cs-mc2-header__service-line span {
        font-size: 11px;
    }

    .cs-mc2-header__service-line strong {
        font-size: 16px;
    }

    .cs-mc2-brand img {
        height: 200px;
        margin: 0 auto;
    }

    .cs-mc2-call-btn {
        margin: 0 auto;
    }

    .cs-mc2-hero__grid,
    .cs-mc2-hero__grid--split {
        grid-template-columns: 1fr;
        padding: 0;
        min-height: auto;
        gap: 0;
    }

    .cs-mc2-hero__copy {
        width: 100%;
        margin: 0;
        padding: 34px 22px 28px;
        align-items: center;
        text-align: center;
    }

    .cs-mc2-hero__media {
        order: -1;
        min-height: 320px;
    }

    .cs-mc2-hero__media img {
        min-height: 320px;
        object-position: center;
    }

    .cs-mc2-hero__title {
        font-size: clamp(48px, 11vw, 72px);
        max-width: 12ch;
        margin-left: auto;
        margin-right: auto;
    }

    .cs-mc2-hero__copy p {
        font-size: 18px;
        max-width: 34ch;
        margin-left: auto;
        margin-right: auto;
    }

    .cs-mc2-hero__cta {
        width: min(100%, 460px);
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .cs-mc2-hero__proof {
        justify-content: center;
        text-align: center;
    }

    .cs-mc2-proof__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cs-mc2-proof__item {
        justify-content: center;
        text-align: center;
    }

    .cs-mc2-proof__item:nth-child(2n) {
        border-right: 0;
    }

    .cs-mc2-proof__item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .cs-mc2-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cs-mc2-callback__grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .cs-mc2-callback__copy {
        justify-content: center;
        text-align: center;
    }

    .cs-mc2-callback__form {
        width: min(100%, 760px);
        margin: 0 auto;
    }

    .cs-mc2-callback__fields {
        grid-template-columns: 1fr;
    }

    .cs-mc2-callback__submit {
        width: 100%;
    }

    .cs-mc2-gf .gform_wrapper.gravity-theme form {
        grid-template-columns: 1fr;
    }

    .cs-mc2-gf .gform_wrapper.gravity-theme .gform_fields {
        grid-template-columns: 1fr;
    }

    .cs-mc2-gf .gform_wrapper.gravity-theme .gform_footer input[type="submit"] {
        width: 100%;
    }

    .cs-mc2-gf .gform_confirmation_message {
        text-align: center;
    }

    .cs-mc2-faq__list {
        width: min(100%, 860px);
        margin: 0 auto;
    }

    .cs-mc2-speed__strip {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .cs-mc2-speed__lead {
        justify-content: center;
        text-align: center;
    }

    .cs-mc2-speed__item {
        justify-content: center;
        text-align: center;
    }

    .cs-mc2-footer-areas__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 18px;
    }

    .cs-mc2-footer-areas__copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .cs-mc2-location-links {
        justify-content: center;
    }

    .cs-mc2-mobile-call {
        display: flex;
    }

    .cs-mc2-speed {
        padding-bottom: 94px;
    }
}

@media (max-width: 640px) {
    .cs-mc2-brand img {
        height: 150px;
        margin: 0 auto;
    }

    .cs-mc2-hero__media {
        min-height: 250px;
    }

    .cs-mc2-hero__media img {
        min-height: 250px;
    }

    .cs-mc2-proof__grid,
    .cs-mc2-cards {
        grid-template-columns: 1fr;
    }

    .cs-mc2-proof__item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .cs-mc2-proof__item:last-child {
        border-bottom: 0;
    }

    .cs-mc2-speed__lead strong {
        font-size: 34px;
    }

    .cs-mc2-footer-areas__inner {
        padding: 24px 18px 110px;
    }

    .cs-mc2-call-btn {
        width: min(100%, 320px);
    }

    .cs-mc2-location-links a {
        width: 100%;
        max-width: 320px;
    }
}



/* =========================================================
   MOBILE CALL-FIRST ROUND 2 — NON-SAMPLE SMALL LAPTOP FORM
   Give the 3-field callback form more horizontal room on
   smaller desktop/laptop screens. Sample page 35837 excluded.
   ========================================================= */
@media (min-width: 992px) and (max-width: 1366px) {
    body:not(.page-id-35837) .cs-mc2-callback__grid {
        grid-template-columns: minmax(230px, .62fr) minmax(0, 1.38fr);
        gap: 20px;
    }

    body:not(.page-id-35837) .cs-mc2-callback__icon {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
    }

    body:not(.page-id-35837) .cs-mc2-callback__copy {
        gap: 14px;
    }

    body:not(.page-id-35837) .cs-mc2-callback__copy h2 {
        font-size: 38px;
    }

    body:not(.page-id-35837) .cs-mc2-callback__copy p {
        font-size: 15px;
    }

    body:not(.page-id-35837) .cs-mc2-gf .gform_wrapper.gravity-theme form {
        grid-template-columns: minmax(0, 1fr) minmax(190px, auto);
        gap: 10px;
    }
}

/* =========================================================
   MOBILE CALL-FIRST ROUND 2 — SAMPLE PAGE REDESIGN ONLY
   /wildlife-plano-dfw/ | WordPress page ID 35837
   All other .cs-mc2 pages retain the original shared design.
   ========================================================= */
body.page-id-35837 .cs-mc2 {
    --cs-navy: #03244b;
    --cs-navy-deep: #021731;
    --cs-black: #101820;
    --cs-black-soft: #0b1b33;
    --cs-orange: #f25b22;
    --cs-orange-deep: #e84c12;
    --cs-white: #fff;
    --cs-line: rgba(3, 36, 75, .10);
    --cs-text: #102033;
    --cs-muted: #556170;
    --cs-wrap: min(1180px, calc(100% - 32px));
    --cs-radius-xl: 22px;
    --cs-radius-lg: 18px;
    --cs-radius-md: 14px;
}

body.page-id-35837 .cs-mc2,
body.page-id-35837 * .cs-mc2 {
    box-sizing: border-box
}

body.page-id-35837 .cs-mc2 {
    width: 100%;
    background: #fff;
    color: var(--cs-text);
}

body.page-id-35837 .cs-mc2 *,
body.page-id-35837 .cs-mc2 *::before,
body.page-id-35837 .cs-mc2 *::after {
    box-sizing: border-box
}

body.page-id-35837 .cs-mc2 a {
    text-decoration: none;
    color: inherit
}

body.page-id-35837 .cs-mc2 img {
    display: block;
    max-width: 100%
}

body.page-id-35837 .cs-mc2 a:focus-visible,
body.page-id-35837 .cs-mc2 button:focus-visible,
body.page-id-35837 .cs-mc2 input:focus-visible,
body.page-id-35837 .cs-mc2 select:focus-visible {
    outline: 3px solid #92c1e9;
    outline-offset: 3px
}

body.page-id-35837 .cs-mc2-wrap {
    width: var(--cs-wrap);
    margin: 0 auto
}

body.page-id-35837 .cs-mc2-band {
    width: 100%
}

body.page-id-35837 .cs-mc2-title-font {
    font-family: 'catamaran';
    letter-spacing: -.01em
}

/* Header */
body.page-id-35837 .cs-mc2-header {
    background: var(--cs-navy);
    color: #fff;
    padding: 8px 0;
    position: relative;
    z-index: 20
}

body.page-id-35837 .cs-mc2-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px
}

body.page-id-35837 .cs-mc2-brand {
    display: inline-flex;
    align-items: center
}

body.page-id-35837 .cs-mc2-brand img {
    height: 108px;
    width: auto;
    object-fit: contain
}

body.page-id-35837 .cs-mc2-header__service-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
    color: rgba(255, 255, 255, .9);
    line-height: 1.18
}

body.page-id-35837 .cs-mc2-header__service-line span {
    display: block;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .72)
}

body.page-id-35837 .cs-mc2-header__service-line strong {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.01em
}

body.page-id-35837 .cs-mc2-header__desktop-details {
    display: none
}

body.page-id-35837 .cs-mc2-header__location,
body.page-id-35837 .cs-mc2-header__email,
body.page-id-35837 .cs-mc2-header__callback-link {
    min-width: 0
}

body.page-id-35837 .cs-mc2-call-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 8px 24px;
    border-radius: 16px;
    background: var(--cs-orange);
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(242, 91, 34, .22)
}

body.page-id-35837 .cs-mc2-call-btn__label {
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .9
}

body.page-id-35837 .cs-mc2-call-btn__number {
    margin-top: 4px;
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.02em
}

/* Conversion hero */
body.page-id-35837 .cs-mc2-hero {
    background: linear-gradient(135deg, #eef3f7 0%, #dfe7ef 100%);
    overflow: hidden
}

body.page-id-35837 .cs-mc2-hero .cs-mc2-wrap {
    width: 100%;
    max-width: none;
    margin: 0
}

body.page-id-35837 .cs-mc2-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    min-height: 520px;
    padding: 0;
    gap: 0;
    position: relative
}

body.page-id-35837 .cs-mc2-hero__grid--split {
    grid-template-columns: minmax(0, 45%) minmax(0, 55%)
}

body.page-id-35837 .cs-mc2-hero__copy {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, .985);
    padding: clamp(34px, 4vw, 56px) clamp(28px, 4.4vw, 68px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: none;
    border-radius: 0
}

body.page-id-35837 .cs-mc2-hero__media {
    display: block;
    position: relative;
    z-index: 1;
    min-height: 520px;
    overflow: hidden;
    background: #cfd9e3
}

body.page-id-35837 .cs-mc2-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 36, 75, .12), rgba(3, 36, 75, 0) 44%);
    pointer-events: none;
    z-index: 2
}

body.page-id-35837 .cs-mc2-hero__scene {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: var(--cs-hero-position-desktop, center center)
}


body.page-id-35837 .cs-mc2-eyebrow {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--cs-navy);
    margin-bottom: 12px
}

body.page-id-35837 .cs-mc2-hero__rating {
    width: fit-content;
    max-width: 100%;
    display: inline-grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto auto;
    align-items: center;
    column-gap: 9px;
    row-gap: 3px;
    margin: 0 0 16px;
    padding: 10px 13px 9px;
    border: 1px solid rgba(3, 36, 75, .16);
    border-radius: 12px;
    background: #fff;
    color: var(--cs-navy);
    box-shadow: 0 8px 22px rgba(3, 36, 75, .11)
}

body.page-id-35837 .cs-mc2-hero__google-mark {
    grid-column: 1;
    grid-row: 1 / 4;
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    padding-right: 9px;
    border-right: 1px solid rgba(3, 36, 75, .11);
    color: #4285f4;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    line-height: 1;
    font-weight: 900;
    background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 25% 45%, #fbbc05 45% 68%, #ea4335 68% 82%, #4285f4 82% 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

body.page-id-35837 .cs-mc2-hero__stars {
    grid-column: 2;
    grid-row: 1;
    color: #f6b300;
    letter-spacing: .035em;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap
}

body.page-id-35837 .cs-mc2-hero__rating-value {
    grid-column: 3;
    grid-row: 1;
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.02em
}

body.page-id-35837 .cs-mc2-hero__rating-label {
    grid-column: 2 / 4;
    grid-row: 2;
    font-size: 10px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #64748b
}

body.page-id-35837 .cs-mc2-hero__rating-count {
    grid-column: 2 / 4;
    grid-row: 3;
    font-size: 11px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: .01em;
    color: var(--cs-navy)
}

body.page-id-35837 .cs-mc2-hero__title {
    margin: 0;
    font-family: 'catamaran';
    font-size: clamp(52px, 6vw, 78px);
    line-height: .92;
    letter-spacing: -.025em;
    color: var(--cs-navy);
    max-width: 600px
}

body.page-id-35837 .cs-mc2-hero__copy p {
    margin: 18px 0 0;
    font-size: 21px;
    line-height: 1.36;
    color: #243447;
    max-width: 460px;
    font-weight: 500
}

/* Lightweight trust cues borrowed from the PPC reference. Text + CSS only, no extra assets. */
body.page-id-35837 .cs-mc2-hero__benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 17px 0 0;
    padding: 0;
    width: fit-content;
    color: var(--cs-navy);
    font-size: 15px;
    line-height: 1.3;
    font-weight: 800
}

body.page-id-35837 .cs-mc2-hero__benefits li {
    display: flex;
    align-items: center;
    gap: 8px
}

body.page-id-35837 .cs-mc2-hero__benefits li::before {
    content: "✓";
    color: #1aa957;
    font-size: 18px;
    line-height: 1;
    font-weight: 900;
    flex: 0 0 auto
}

body.page-id-35837 .cs-mc2-hero__cta {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 13px 22px 13px 14px;
    background: linear-gradient(180deg, #ff6b32 0%, #f25b22 58%, #e94c14 100%);
    color: var(--cs-navy);
    border: 2px solid rgba(3, 36, 75, .08);
    border-radius: 18px;
    width: fit-content;
    min-height: 68px;
    box-shadow: 0 10px 22px rgba(242, 91, 34, .22), inset 0 1px 0 rgba(255, 255, 255, .24)
}

body.page-id-35837 .cs-mc2-hero__cta svg {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    padding: 10px;
    border-radius: 50%;
    background: var(--cs-navy);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12)
}

body.page-id-35837 .cs-mc2-hero__phone {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1
}

body.page-id-35837 .cs-mc2-hero__phone span {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .88
}

body.page-id-35837 .cs-mc2-hero__phone strong {
    margin-top: 5px;
    font-size: clamp(25px, 2.7vw, 34px);
    line-height: .96;
    font-weight: 900;
    letter-spacing: -.025em
}

body.page-id-35837 .cs-mc2-hero__proof {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--cs-navy);
    font-weight: 700
}

body.page-id-35837 .cs-mc2-hero__proof svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px
}

/* Short callback conversion path immediately after hero */
body.page-id-35837 .cs-mc2-callback {
    background: #101820;
    color: #fff;
    padding: 20px 0
}

body.page-id-35837 .cs-mc2-callback__grid {
    display: grid;
    grid-template-columns: minmax(290px, .68fr) minmax(0, 1.52fr);
    align-items: center;
    gap: 28px
}

body.page-id-35837 .cs-mc2-callback__copy {
    display: flex;
    align-items: center;
    gap: 16px
}

body.page-id-35837 .cs-mc2-callback__icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .2);
    display: grid;
    place-items: center;
    color: #fff
}

body.page-id-35837 .cs-mc2-callback__icon svg {
    width: 25px;
    height: 25px
}

body.page-id-35837 .cs-mc2-callback__copy h2 {
    margin: 0;
    font-family: 'catamaran';
    font-size: 36px;
    line-height: .94;
    letter-spacing: -.01em
}

body.page-id-35837 .cs-mc2-callback__copy p {
    margin: 6px 0 0;
    font-size: 15px;
    line-height: 1.35;
    color: rgba(255, 255, 255, .82)
}

body.page-id-35837 .cs-mc2-callback__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0
}

body.page-id-35837 .cs-mc2-callback__fields {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 10px;
    align-items: center
}

body.page-id-35837 .cs-mc2-callback__fields input,
body.page-id-35837 .cs-mc2-callback__fields select {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    border-radius: 10px;
    border: 0;
    padding: 0 14px;
    font-size: 16px;
    color: #0e2037;
    background: #fff
}

body.page-id-35837 .cs-mc2-callback__submit {
    min-height: 50px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff6a2f 0%, #f25b22 45%, #ec4c14 100%);
    padding: 0 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap
}

body.page-id-35837 .cs-mc2-callback__note {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: rgba(255, 255, 255, .76)
}

/* Gravity Forms: two visible lead fields plus optional SMS consent. Hidden PPC attribution remains untouched. */
body.page-id-35837 .cs-mc2-gf {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    min-width: 0
}

body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme {
    margin: 0;
    width: 100%
}

body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(205px, auto);
    gap: 12px;
    align-items: start;
    width: 100%
}

body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme .gform_body {
    min-width: 0
}

body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme .gform_fields {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 12px
}

body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme .gfield {
    margin: 0;
    min-width: 0;
    color: #fff !important
}

/* Gravity Forms' 12-column width utility can otherwise force half-width fields onto separate rows. */
body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme .gfield.gfield--width-half {
    grid-column: span 1 !important
}

body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme .gfield:not(.gfield--type-consent):not(.gfield.gfield--width-full) {
    grid-column: span 1
}

body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme .gfield--type-consent,
body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme .gfield.gfield--width-full {
    grid-column: 1 / -1
}

body.page-id-35837 .cs-mc2-gf .gf-consent-white {
    width: 100%;
    color: #fff
}

body.page-id-35837 .cs-mc2-gf .gfield--type-consent {
    margin-top: 4px !important;
    margin-bottom: 2px !important
}

body.page-id-35837 .cs-mc2-gf .ginput_container_consent {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    max-width: 650px;
    font-size: 11.75px;
    line-height: 1.46;
    color: rgba(255, 255, 255, .88)
}

body.page-id-35837 .cs-mc2-gf .ginput_container_consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    accent-color: var(--cs-orange)
}

body.page-id-35837 .cs-mc2-gf .ginput_container_consent label {
    margin: 0 !important;
    font-size: inherit !important;
    line-height: inherit !important;
    color: inherit !important
}

body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme .gfield_label,
body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme .gform_required_legend {
    display: none !important
}

body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme input[type="text"],
body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme input[type="tel"],
body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme input[type="email"],
body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme select {
    width: 100%;
    max-width: none;
    min-height: 50px;
    border-radius: 10px;
    border: 0;
    padding: 0 14px;
    font-size: 16px;
    color: #0e2037;
    background: #fff;
    line-height: 1.2
}

body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme .gform_footer {
    margin: 0 !important;
    padding: 0 !important;
    display: block
}

body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme .gform_footer input[type="submit"] {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff6a2f 0%, #f25b22 45%, #ec4c14 100%);
    padding: 0 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(242, 91, 34, .22);
    cursor: pointer;
    white-space: nowrap
}

body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme .gfield_error input,
body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme .gfield_error select {
    border: 2px solid #f4a08b
}

body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme .gfield_validation_message,
body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme .validation_message {
    font-size: 12px;
    line-height: 1.3;
    margin-top: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    color: #ffd2c6;
    text-align: left
}

body.page-id-35837 .cs-mc2-gf .gform_confirmation_message {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    font-weight: 700;
    text-align: left
}

/* Trust strip */
body.page-id-35837 .cs-mc2-proof {
    background: var(--cs-navy);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

body.page-id-35837 .cs-mc2-proof__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

body.page-id-35837 .cs-mc2-proof__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px 18px;
    border-right: 1px solid rgba(255, 255, 255, .12);
    justify-content: center;
    min-height: 86px
}

body.page-id-35837 .cs-mc2-proof__item:last-child {
    border-right: 0
}

body.page-id-35837 .cs-mc2-proof__item svg {
    width: 36px;
    height: 36px;
    flex: 0 0 36px
}

body.page-id-35837 .cs-mc2-proof__item span {
    font-size: 13px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: .01em
}

/* Existing content below conversion area */
body.page-id-35837 .cs-mc2-section {
    background: #fff;
    padding: 3.25rem 0 3.75rem
}

body.page-id-35837 .cs-mc2-section__title {
    margin: 0 0 22px;
    text-align: center;
    font-family: 'catamaran';
    font-size: clamp(34px, 3.1vw, 48px);
    letter-spacing: -.01em;
    color: var(--cs-navy)
}

body.page-id-35837 .cs-mc2-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px
}

body.page-id-35837 .cs-mc2-card {
    border: 1px solid var(--cs-line);
    border-radius: 18px;
    background: #fff;
    padding: 24px 22px 18px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(3, 36, 75, .05)
}

body.page-id-35837 .cs-mc2-card__icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cs-navy)
}

body.page-id-35837 .cs-mc2-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

body.page-id-35837 .cs-mc2-card h3 {
    margin: 0;
    font-family: 'catamaran';
    font-size: 28px;
    line-height: .98;
    color: var(--cs-navy);
    letter-spacing: -.01em
}

body.page-id-35837 .cs-mc2-card p {
    margin: 12px auto 0;
    max-width: 210px;
    font-size: 15px;
    line-height: 1.45;
    color: #506072
}

body.page-id-35837 .cs-mc2-card a {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cs-orange);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .02em;
    text-transform: uppercase
}

body.page-id-35837 .cs-mc2-faq {
    background: #fff;
    padding: 3.25rem 0 3.5rem
}

body.page-id-35837 .cs-mc2-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

body.page-id-35837 .cs-mc2-faq__item {
    border: 1px solid rgba(3, 36, 75, .12);
    border-radius: 12px;
    background: #fff;
    overflow: hidden
}

body.page-id-35837 .cs-mc2-faq__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    background: #fff;
    border: 0;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: var(--cs-text);
    cursor: pointer
}

body.page-id-35837 .cs-mc2-faq__trigger span:last-child {
    font-size: 28px;
    line-height: 1;
    color: var(--cs-navy);
    font-weight: 500
}

body.page-id-35837 .cs-mc2-faq__panel {
    display: none;
    padding: 0 22px 20px;
    font-size: 16px;
    line-height: 1.55;
    color: #556170
}

body.page-id-35837 .cs-mc2-faq__item.is-open .cs-mc2-faq__panel {
    display: block
}

body.page-id-35837 .cs-mc2-speed {
    background: #fff;
    padding: 0
}

body.page-id-35837 .cs-mc2-speed>.cs-mc2-wrap {
    width: 100%;
    max-width: none
}

body.page-id-35837 .cs-mc2-speed__strip {
    border-radius: 0;
    background: linear-gradient(90deg, var(--cs-navy), var(--cs-navy) 52%, #10284a 100%);
    color: #fff;
    padding: 26px 32px;
    display: grid;
    grid-template-columns: minmax(280px, 2.5fr) repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: center
}

body.page-id-35837 .cs-mc2-speed__lead {
    display: flex;
    align-items: center;
    gap: 16px
}

body.page-id-35837 .cs-mc2-speed__lead svg {
    width: 66px;
    height: 66px;
    flex: 0 0 66px
}

body.page-id-35837 .cs-mc2-speed__lead strong {
    display: block;
    font-family: 'catamaran';
    font-size: 44px;
    line-height: .88;
    letter-spacing: -.01em
}

body.page-id-35837 .cs-mc2-speed__lead span {
    display: block;
    margin-top: 8px;
    font-size: 18px;
    color: rgba(255, 255, 255, .84)
}

body.page-id-35837 .cs-mc2-speed__item {
    display: flex;
    align-items: center;
    gap: 12px
}

body.page-id-35837 .cs-mc2-speed__item svg {
    width: 34px;
    height: 34px;
    flex: 0 0 34px
}

body.page-id-35837 .cs-mc2-speed__item strong {
    display: block;
    font-family: 'catamaran';
    font-size: 29px;
    line-height: .94
}

body.page-id-35837 .cs-mc2-speed__item span {
    display: block;
    margin-top: 4px;
    font-size: 15px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.35
}

body.page-id-35837 .cs-mc2-footer-areas {
    background: var(--cs-navy-deep);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, .10);
    width: 100%
}

body.page-id-35837 .cs-mc2-footer-areas>.cs-mc2-wrap {
    width: 100%;
    max-width: none;
    margin: 0
}

body.page-id-35837 .cs-mc2-footer-areas__inner {
    display: grid;
    grid-template-columns: minmax(260px, .75fr) minmax(320px, 1.25fr);
    gap: 28px;
    align-items: center;
    padding: 28px 32px 32px
}

body.page-id-35837 .cs-mc2-footer-areas__copy h2 {
    margin: 0;
    font-family: 'catamaran';
    font-size: clamp(28px, 2.8vw, 42px);
    line-height: .98;
    letter-spacing: -.01em;
    color: #fff
}

body.page-id-35837 .cs-mc2-footer-areas__copy p {
    margin: 8px 0 0;
    font-size: 16px;
    line-height: 1.45;
    color: rgba(255, 255, 255, .78);
    max-width: 42ch
}

body.page-id-35837 .cs-mc2-location-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 10px
}

body.page-id-35837 .cs-mc2-location-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .92);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    transition: background .2s ease, color .2s ease, border-color .2s ease
}

body.page-id-35837 .cs-mc2-location-links a:hover,
body.page-id-35837 .cs-mc2-location-links a:focus-visible {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .36);
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px
}

body.page-id-35837 .cs-mc2-location-links__more {
    background: var(--cs-orange) !important;
    border-color: var(--cs-orange) !important;
    color: #fff !important
}

/* Fixed mobile phone conversion bar */
body.page-id-35837 .cs-mc2-mobile-call {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #ff6a2f 0%, #f25b22 45%, #ec4c14 100%);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 62px;
    padding: 6px 16px calc(6px + env(safe-area-inset-bottom));
    font-weight: 800;
    box-shadow: 0 -12px 28px rgba(3, 36, 75, .18)
}

body.page-id-35837 .cs-mc2-mobile-call svg {
    width: 24px;
    height: 24px;
    flex: 0 0 24px
}

body.page-id-35837 .cs-mc2-mobile-call__copy {
    display: flex;
    align-items: baseline;
    gap: 8px;
    line-height: 1
}

body.page-id-35837 .cs-mc2-mobile-call__copy span {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase
}

body.page-id-35837 .cs-mc2-mobile-call__copy strong {
    font-size: 19px;
    font-weight: 900;
    letter-spacing: -.02em
}

/* Desktop PPC refinement: use desktop header real estate intentionally and prevent the hero copy panel from expanding with the viewport. */
@media (min-width: 992px) {
    body.page-id-35837 .cs-mc2-header .cs-mc2-wrap {
        width: min(1520px, calc(100% - 32px));
        max-width: none
    }

    body.page-id-35837 .cs-mc2-header__inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: clamp(16px, 2vw, 36px)
    }

    body.page-id-35837 .cs-mc2-header__service-line {
        display: none
    }

    body.page-id-35837 .cs-mc2-header__desktop-details {
        display: grid;
        grid-template-columns: minmax(170px, 1.05fr) minmax(170px, 1fr) minmax(150px, .85fr);
        align-items: center;
        justify-self: stretch;
        width: min(100%, 900px);
        gap: clamp(12px, 1.6vw, 28px)
    }

    body.page-id-35837 .cs-mc2-header__location,
body.page-id-35837 .cs-mc2-header__email,
body.page-id-35837 .cs-mc2-header__callback-link {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #fff
    }

    body.page-id-35837 .cs-mc2-header__location svg,
body.page-id-35837 .cs-mc2-header__email svg {
        width: 26px;
        height: 26px;
        flex: 0 0 26px;
        color: #92c1e9
    }

    body.page-id-35837 .cs-mc2-header__location div,
body.page-id-35837 .cs-mc2-header__email > span,
body.page-id-35837 .cs-mc2-header__callback-link > span {
        display: flex;
        min-width: 0;
        flex-direction: column;
        justify-content: center;
        gap: 3px;
        line-height: 1.12
    }

    body.page-id-35837 .cs-mc2-header__location span,
body.page-id-35837 .cs-mc2-header__email small,
body.page-id-35837 .cs-mc2-header__callback-link small {
        font-size: clamp(9px, .68vw, 11px);
        font-weight: 900;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, .7)
    }

    body.page-id-35837 .cs-mc2-header__location strong,
body.page-id-35837 .cs-mc2-header__email strong,
body.page-id-35837 .cs-mc2-header__callback-link strong {
        font-size: clamp(12px, .92vw, 15px);
        font-weight: 900;
        letter-spacing: -.01em;
        color: #fff
    }

    body.page-id-35837 .cs-mc2-header__location strong {
        white-space: normal
    }

    body.page-id-35837 .cs-mc2-header__email,
body.page-id-35837 .cs-mc2-header__callback-link {
        padding-left: clamp(10px, 1.25vw, 22px);
        border-left: 1px solid rgba(255, 255, 255, .14);
        transition: opacity .18s ease, transform .18s ease
    }

    body.page-id-35837 .cs-mc2-header__email strong {
        white-space: nowrap
    }

    body.page-id-35837 .cs-mc2-header__callback-link {
        justify-content: flex-start
    }

    body.page-id-35837 .cs-mc2-header__callback-link strong {
        color: #92c1e9;
        white-space: nowrap
    }

    body.page-id-35837 .cs-mc2-header__email:hover,
body.page-id-35837 .cs-mc2-header__callback-link:hover {
        color: #fff;
        opacity: .88
    }

    body.page-id-35837 .cs-mc2-header__email:focus-visible,
body.page-id-35837 .cs-mc2-header__callback-link:focus-visible {
        outline-color: #fff
    }

    body.page-id-35837 .cs-mc2-hero__grid--split {
        grid-template-columns: clamp(520px, 42vw, 700px) minmax(0, 1fr)
    }

    body.page-id-35837 .cs-mc2-hero__grid,
body.page-id-35837 .cs-mc2-hero__media,
body.page-id-35837 .cs-mc2-hero__scene {
        min-height: 500px
    }

    body.page-id-35837 .cs-mc2-hero__copy {
        padding-top: 38px;
        padding-bottom: 38px
    }
}

@media (max-width: 991px) {
    body.page-id-35837 .cs-mc2 {
        --cs-wrap: min(100% - 28px, 760px)
    }

    /* The compact header carries the persistent call path, avoiding a second fixed CTA layer. */
    body.page-id-35837 .cs-mc2-header {
        padding: 4px 0;
        position: sticky;
        top: 0;
        z-index: 9990
    }

    body.page-id-35837 .cs-mc2-header__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
        justify-items: center;
        gap: 12px;
        min-height: 72px
    }

    body.page-id-35837 .cs-mc2-header__service-line {
        display: none
    }

    body.page-id-35837 .cs-mc2-brand img {
        height: 74px;
        max-width: 46vw;
        margin: 0 auto
    }

    body.page-id-35837 .cs-mc2-call-btn {
        justify-self: center;
        align-items: center;
        text-align: center;
        min-height: 48px;
        padding: 5px 11px;
        border-radius: 11px;
        box-shadow: none
    }

    body.page-id-35837 .cs-mc2-call-btn__label {
        font-size: 9px
    }

    body.page-id-35837 .cs-mc2-call-btn__number {
        font-size: 17px
    }

    /*
     * Integrated PPC hero for tablet/mobile.
     * The same single responsive LCP image becomes a right-side visual layer instead of
     * a separate block below the copy. A CSS gradient protects text from busy imagery.
     * No JS, duplicate image, slider, background-image request, or fixed 600px canvas.
     */
    body.page-id-35837 .cs-mc2-hero__grid,
body.page-id-35837 .cs-mc2-hero__grid--split {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: 0;
        position: relative;
        overflow: hidden;
        isolation: isolate;
        background: #fff
    }

    body.page-id-35837 .cs-mc2-hero__copy {
        position: relative;
        z-index: 3;
        width: 100%;
        min-height: 0;
        margin: 0;
        padding: 24px 42% 24px 20px;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: transparent
    }

    body.page-id-35837 .cs-mc2-hero__media {
        position: absolute;
        z-index: 1;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: 0;
        overflow: hidden;
        background: #d8e0e8
    }

    body.page-id-35837 .cs-mc2-hero__scene {
        width: 100%;
        height: 100%;
        min-height: 0;
        object-fit: cover;
        object-position: var(--cs-hero-position-mobile, center center)
    }

    body.page-id-35837 .cs-mc2-hero__media::after {
        background: linear-gradient(90deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, .99) 42%,
            rgba(255, 255, 255, .94) 50%,
            rgba(255, 255, 255, .72) 58%,
            rgba(255, 255, 255, .24) 70%,
            rgba(255, 255, 255, 0) 82%,
            rgba(2, 23, 49, .05) 100%)
    }

    body.page-id-35837 .cs-mc2-hero__grid--single .cs-mc2-hero__copy {
        padding-right: 20px;
        background: #fff
    }

    body.page-id-35837 .cs-mc2-hero__grid--single {
        background: #fff
    }

    body.page-id-35837 .cs-mc2-eyebrow {
        margin-bottom: 8px;
        font-size: 10px;
        letter-spacing: .14em
    }

    body.page-id-35837 .cs-mc2-hero__rating {
        margin: 0 auto 11px;
        padding: 8px 10px 7px;
        column-gap: 7px;
        row-gap: 2px
    }

    body.page-id-35837 .cs-mc2-hero__google-mark {
        width: 26px;
        height: 26px;
        padding-right: 7px;
        font-size: 22px
    }

    body.page-id-35837 .cs-mc2-hero__stars {
        font-size: 13px
    }

    body.page-id-35837 .cs-mc2-hero__rating-value {
        font-size: 17px
    }

    body.page-id-35837 .cs-mc2-hero__rating-label {
        font-size: 8.5px
    }

    body.page-id-35837 .cs-mc2-hero__rating-count {
        font-size: 9.5px
    }

    body.page-id-35837 .cs-mc2-hero__title {
        font-size: clamp(38px, 7vw, 52px);
        line-height: .94;
        max-width: 12ch;
        margin: 0 auto;
        text-align: center
    }

    body.page-id-35837 .cs-mc2-hero__copy p {
        font-size: 16px;
        line-height: 1.34;
        max-width: 28ch;
        margin: 11px auto 0;
        text-align: center
    }

    body.page-id-35837 .cs-mc2-hero__benefits {
        gap: 5px;
        margin: 12px auto 0;
        font-size: 13px;
        text-align: left
    }

    body.page-id-35837 .cs-mc2-hero__benefits li::before {
        font-size: 16px
    }

    body.page-id-35837 .cs-mc2-hero__cta {
        width: min(100%, 276px);
        min-height: 58px;
        justify-content: center;
        margin: 14px auto 0;
        padding: 9px 14px 9px 10px;
        gap: 10px;
        border-radius: 15px;
        box-shadow: 0 8px 18px rgba(242, 91, 34, .20), inset 0 1px 0 rgba(255, 255, 255, .22)
    }

    body.page-id-35837 .cs-mc2-hero__cta svg {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        padding: 8px
    }

    body.page-id-35837 .cs-mc2-hero__phone strong {
        font-size: 22px
    }

    body.page-id-35837 .cs-mc2-callback {
        padding: 17px 0 20px
    }

    body.page-id-35837 .cs-mc2-callback__grid {
        grid-template-columns: 1fr;
        gap: 12px
    }

    body.page-id-35837 .cs-mc2-callback__copy {
        justify-content: center;
        text-align: center
    }

    body.page-id-35837 .cs-mc2-callback__icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px
    }

    body.page-id-35837 .cs-mc2-callback__copy h2 {
        font-size: 31px
    }

    body.page-id-35837 .cs-mc2-callback__copy p {
        font-size: 14px
    }

    body.page-id-35837 .cs-mc2-callback__form {
        width: min(100%, 760px);
        margin: 0 auto;
        text-align: center
    }

    body.page-id-35837 .cs-mc2-callback__fields {
        grid-template-columns: repeat(3, minmax(0, 1fr)) auto
    }

    body.page-id-35837 .cs-mc2-callback__note {
        justify-content: center;
        text-align: center
    }

    body.page-id-35837 .cs-mc2-section {
        padding: 48px 0 44px
    }

    body.page-id-35837 .cs-mc2-faq {
        padding: 44px 0 48px
    }

    body.page-id-35837 .cs-mc2-callback__fields input,
body.page-id-35837 .cs-mc2-callback__fields select,
body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme input[type="text"],
body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme input[type="tel"],
body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme input[type="email"],
body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme select {
        text-align: center
    }

    body.page-id-35837 .cs-mc2-gf .ginput_container_consent {
        max-width: 620px;
        margin: 3px auto 2px;
        text-align: center;
        line-height: 1.48
    }

    body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme form {
        grid-template-columns: minmax(0, 1fr) minmax(168px, auto)
    }

    body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme .gform_fields {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }

    body.page-id-35837 .cs-mc2-gf .gform_confirmation_message {
        text-align: center
    }

    body.page-id-35837 .cs-mc2-proof__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }

    body.page-id-35837 .cs-mc2-proof__item {
        padding: 14px 8px;
        min-height: 76px;
        gap: 8px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center
    }

    body.page-id-35837 .cs-mc2-proof__item svg {
        width: 30px;
        height: 30px;
        flex-basis: 30px
    }

    body.page-id-35837 .cs-mc2-proof__item span {
        font-size: 11px
    }

    body.page-id-35837 .cs-mc2-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    body.page-id-35837 .cs-mc2-faq__list {
        width: min(100%, 860px);
        margin: 0 auto;
        text-align: center
    }

    body.page-id-35837 .cs-mc2-faq__trigger {
        position: relative;
        justify-content: center;
        text-align: center;
        padding-left: 52px;
        padding-right: 52px
    }

    body.page-id-35837 .cs-mc2-faq__trigger > span:first-child {
        width: 100%;
        text-align: center
    }

    body.page-id-35837 .cs-mc2-faq__trigger > span:last-child {
        position: absolute;
        right: 20px
    }

    body.page-id-35837 .cs-mc2-faq__panel {
        text-align: center
    }

    body.page-id-35837 .cs-mc2-speed__strip {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center
    }

    body.page-id-35837 .cs-mc2-speed__lead,
body.page-id-35837 .cs-mc2-speed__item {
        justify-content: center;
        text-align: center
    }

    body.page-id-35837 .cs-mc2-footer-areas__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 18px
    }

    body.page-id-35837 .cs-mc2-footer-areas__copy p {
        margin-left: auto;
        margin-right: auto
    }

    body.page-id-35837 .cs-mc2-location-links {
        justify-content: center
    }

    /* Mobile call access remains in the sticky header. Remove the overlapping bottom bar. */
    body.page-id-35837 .cs-mc2-mobile-call {
        display: none !important
    }

    body.page-id-35837 .cs-mc2-speed {
        padding-bottom: 0
    }

    /* PPC pages already expose Call + Callback above the fold. Avoid duplicate fixed booking UI on mobile. */
    body.page-id-35837 body:has(.cs-mc2) #cs-book-btn {
        display: none !important
    }

    /* If the CRM widget honors its configured container, keep it out of the PPC conversion surface. */
    body.page-id-35837 body:has(.cs-mc2) #engagement-widget-container {
        display: none !important
    }
}

@media (max-width: 640px) {
    body.page-id-35837 .cs-mc2 {
        --cs-wrap: min(100% - 24px, 560px)
    }

    body.page-id-35837 .cs-mc2-header__inner {
        min-height: 66px;
        gap: 8px
    }

    body.page-id-35837 .cs-mc2-brand img {
        height: 70px;
        max-width: 46vw
    }

    body.page-id-35837 .cs-mc2-call-btn {
        min-height: 44px;
        padding: 5px 9px
    }

    body.page-id-35837 .cs-mc2-call-btn__label {
        font-size: 8px
    }

    body.page-id-35837 .cs-mc2-call-btn__number {
        font-size: 15px
    }

    body.page-id-35837 .cs-mc2-hero__copy {
        padding: 19px 39% 20px 14px;
        justify-content: center
    }

    body.page-id-35837 .cs-mc2-hero__media {
        width: 100%
    }

    body.page-id-35837 .cs-mc2-hero__grid--single .cs-mc2-hero__copy {
        padding-right: 14px
    }

    body.page-id-35837 .cs-mc2-hero__title {
        font-size: clamp(34px, 9.2vw, 42px);
        max-width: 10.5ch
    }

    body.page-id-35837 .cs-mc2-hero__copy p {
        font-size: 15px;
        line-height: 1.4;
        max-width: 25ch
    }

    body.page-id-35837 .cs-mc2-hero__rating {
        max-width: 100%;
        padding: 8px 10px 7px;
        column-gap: 7px;
        row-gap: 2px
    }

    body.page-id-35837 .cs-mc2-hero__google-mark {
        width: 26px;
        height: 26px;
        padding-right: 7px;
        font-size: 22px
    }

    body.page-id-35837 .cs-mc2-hero__rating-value {
        font-size: 17px
    }

    body.page-id-35837 .cs-mc2-hero__rating-label {
        font-size: 8.5px;
        letter-spacing: .07em
    }

    body.page-id-35837 .cs-mc2-hero__rating-count {
        font-size: 9px
    }

    body.page-id-35837 .cs-mc2-hero__stars {
        font-size: 13px
    }

    body.page-id-35837 .cs-mc2-hero__benefits {
        gap: 4px;
        margin-top: 10px;
        font-size: 12.75px
    }

    body.page-id-35837 .cs-mc2-hero__benefits li {
        gap: 5px
    }

    body.page-id-35837 .cs-mc2-hero__benefits li::before {
        font-size: 15px
    }

    body.page-id-35837 .cs-mc2-hero__cta {
        width: min(100%, 246px);
        min-height: 54px;
        margin-top: 12px;
        padding: 8px 12px 8px 9px;
        gap: 9px;
        border-radius: 14px
    }

    body.page-id-35837 .cs-mc2-hero__cta svg {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
        padding: 7px
    }

    body.page-id-35837 .cs-mc2-hero__phone span {
        font-size: 8.5px
    }

    body.page-id-35837 .cs-mc2-hero__phone strong {
        font-size: 19px;
        margin-top: 4px
    }

    body.page-id-35837 .cs-mc2-callback__copy {
        gap: 8px
    }

    body.page-id-35837 .cs-mc2-callback__icon {
        display: none
    }

    body.page-id-35837 .cs-mc2-callback__copy h2 {
        font-size: 29px
    }

    body.page-id-35837 .cs-mc2-section {
        padding: 42px 0 36px
    }

    body.page-id-35837 .cs-mc2-faq {
        padding: 38px 0 42px
    }

    body.page-id-35837 .cs-mc2-callback__fields,
body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme .gform_fields {
        grid-template-columns: 1fr
    }

    body.page-id-35837 .cs-mc2-callback__fields .cs-mc2-callback__submit {
        grid-column: 1 / -1;
        width: 100%
    }

    body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme form {
        grid-template-columns: 1fr
    }

    body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme .gfield,
body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme .gfield--type-consent,
body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme .gfield.gfield--width-full {
        grid-column: 1 / -1 !important
    }

    body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme .gform_footer {
        margin-top: 2px !important
    }

    body.page-id-35837 .cs-mc2-gf .gform_wrapper.gravity-theme .gform_footer input[type="submit"] {
        width: 100%
    }

    body.page-id-35837 .cs-mc2-gf .ginput_container_consent {
        max-width: 520px;
        margin: 5px auto 4px;
        gap: 9px;
        font-size: 11px;
        line-height: 1.5
    }

    body.page-id-35837 .cs-mc2-proof__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    body.page-id-35837 .cs-mc2-proof__item {
        min-height: 70px;
        border-right: 1px solid rgba(255, 255, 255, .12);
        border-bottom: 1px solid rgba(255, 255, 255, .12)
    }

    body.page-id-35837 .cs-mc2-proof__item:nth-child(2n) {
        border-right: 0
    }

    body.page-id-35837 .cs-mc2-proof__item:nth-last-child(-n+2) {
        border-bottom: 0
    }

    body.page-id-35837 .cs-mc2-cards {
        grid-template-columns: 1fr
    }

    body.page-id-35837 .cs-mc2-speed__lead strong {
        font-size: 34px
    }

    body.page-id-35837 .cs-mc2-footer-areas__inner {
        padding: 24px 18px 32px
    }

    body.page-id-35837 .cs-mc2-location-links a {
        width: 100%;
        max-width: 320px
    }
}

@media (max-width: 380px) {
    body.page-id-35837 .cs-mc2-call-btn__number {
        font-size: 14px
    }

    body.page-id-35837 .cs-mc2-hero__copy {
        padding-right: 40%
    }

    body.page-id-35837 .cs-mc2-hero__media {
        width: 100%
    }

    body.page-id-35837 .cs-mc2-hero__title {
        font-size: 32px
    }

    body.page-id-35837 .cs-mc2-hero__rating {
        padding: 7px 8px 6px;
        column-gap: 6px
    }

    body.page-id-35837 .cs-mc2-hero__google-mark {
        width: 24px;
        height: 24px;
        padding-right: 6px;
        font-size: 20px
    }

    body.page-id-35837 .cs-mc2-hero__rating-value {
        font-size: 16px
    }

    body.page-id-35837 .cs-mc2-hero__rating-label {
        font-size: 8px
    }

    body.page-id-35837 .cs-mc2-hero__rating-count {
        font-size: 8.5px
    }

    body.page-id-35837 .cs-mc2-hero__stars {
        font-size: 12px
    }

    body.page-id-35837 .cs-mc2-hero__cta {
        width: min(100%, 232px);
        padding-left: 8px;
        padding-right: 10px;
        gap: 8px
    }

    body.page-id-35837 .cs-mc2-hero__cta svg {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
        padding: 7px
    }

    body.page-id-35837 .cs-mc2-hero__phone strong {
        font-size: 17px
    }
}
