/* ====================================================================
   QuickRestore — Global Stylesheet
   Mobile-first. Edit tokens in :root to retheme the entire site.
   ==================================================================== */

/* -------------------- RESET -------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.15; }


/* -------------------- TOKENS -------------------- */
:root {
    /* Color */
    --navy:        #0B1B2B;
    --navy-2:      #142A40;
    --navy-3:      #1E3A57;
    --red:         #E11D2E;
    --red-dark:    #B0121F;
    --red-light:   #F8E0E2;
    --white:       #FFFFFF;
    --bg:          #F7F8FA;
    --bg-alt:      #EDF1F6;
    --slate:       #334155;
    --slate-2:     #475569;
    --slate-3:     #64748B;
    --slate-4:     #94A3B8;
    --border:      #E2E8F0;
    --border-2:    #CBD5E1;
    --green:       #10B981;
    --gold:        #F59E0B;

    /* Type */
    --font-display: 'Bebas Neue', system-ui, sans-serif;
    --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

    /* Spacing scale */
    --s-1:  4px;
    --s-2:  8px;
    --s-3:  12px;
    --s-4:  16px;
    --s-5:  20px;
    --s-6:  24px;
    --s-8:  32px;
    --s-10: 40px;
    --s-12: 48px;
    --s-16: 64px;
    --s-20: 80px;
    --s-24: 96px;

    /* Radius */
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-xl: 24px;
    --r-pill: 999px;

    /* Shadow */
    --sh-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.04);
    --sh-md: 0 4px 6px rgba(15,23,42,.05), 0 10px 15px rgba(15,23,42,.07);
    --sh-lg: 0 10px 25px rgba(15,23,42,.10), 0 20px 40px rgba(15,23,42,.08);
    --sh-red: 0 8px 24px rgba(225,29,46,.35);

    /* Layout */
    --container: 1200px;
    --header-h: 68px;

    /* Motion */
    --ease: cubic-bezier(.4,.0,.2,1);
}

body {
    font-family: var(--font-body);
    color: var(--slate);
    background: var(--white);
    font-size: 16px;
}

/* Skip link for keyboard users */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--navy);
    color: var(--white);
    padding: 12px 16px;
    z-index: 9999;
    font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }


/* -------------------- LAYOUT -------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-inline: var(--s-4);
}
@media (min-width: 720px)  { .container { padding-inline: var(--s-6); } }
@media (min-width: 1024px) { .container { padding-inline: var(--s-8); } }


/* -------------------- TYPOGRAPHY -------------------- */
.eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: var(--s-3);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--navy);
    letter-spacing: .01em;
    line-height: 1.05;
    margin-bottom: var(--s-4);
}
.section-sub {
    font-size: 17px;
    color: var(--slate-2);
    max-width: 700px;
    margin-bottom: var(--s-8);
}
.section-head {
    text-align: center;
    margin: 0 auto var(--s-10);
    max-width: 760px;
}
.section-head .section-sub { margin-inline: auto; margin-bottom: 0; }


/* -------------------- BUTTONS -------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-3);
    padding: 14px 22px;
    border-radius: var(--r-md);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
    min-height: 56px;
    text-align: center;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid #FBBF24; outline-offset: 2px; }

.btn--red {
    background: var(--red);
    color: var(--white);
    box-shadow: var(--sh-red);
}
.btn--red:hover { background: var(--red-dark); }

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.4);
}
.btn--outline:hover { background: rgba(255,255,255,.08); border-color: var(--white); }

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

.btn--ghost {
    color: var(--navy);
    border: 2px solid var(--border-2);
    background: var(--white);
}
.btn--ghost:hover { border-color: var(--navy); background: var(--bg); }

.btn__stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}
.btn__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .85;
}
.btn__num { font-size: 17px; font-weight: 700; }


/* -------------------- PHONE LINK -------------------- */
.phone-link {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    font-weight: 700;
    transition: color .2s var(--ease);
}
.phone-link i { font-size: 14px; }
.phone-link:hover { color: var(--red); }

.phone-link--util {
    color: rgba(255,255,255,.95);
    font-size: 14px;
}
.phone-link--util:hover { color: var(--white); }
.phone-link--util i { color: var(--green); }

.phone-link--header {
    background: var(--red);
    color: var(--white);
    padding: 12px 18px;
    border-radius: var(--r-md);
    font-size: 16px;
    box-shadow: var(--sh-red);
}
.phone-link--header:hover { background: var(--red-dark); color: var(--white); }
.phone-link--header i { color: var(--white); }

.phone-link--footer { color: var(--white); font-size: 17px; }
.phone-link--footer:hover { color: var(--red); }
.phone-link--footer i { color: var(--green); }

.phone-pair {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
    width: 100%;
}
@media (min-width: 540px) {
    .phone-pair { flex-direction: row; }
    .phone-pair .btn { flex: 1; }
}


/* -------------------- PULSE DOT -------------------- */
.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    margin-right: var(--s-2);
    flex-shrink: 0;
}
.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--green);
    opacity: .5;
    animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
    0%   { transform: scale(.8); opacity: .5; }
    70%  { transform: scale(2);   opacity: 0;   }
    100% { transform: scale(2);   opacity: 0;   }
}


/* -------------------- UTILITY BAR -------------------- */
.util-bar {
    background: var(--navy);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.util-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
    flex-wrap: wrap;
}
.util-bar__usp {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,.85);
    font-weight: 500;
}
.util-bar__usp i { color: var(--gold); margin-right: var(--s-2); }
.util-bar__phones {
    display: flex;
    align-items: center;
    gap: var(--s-5);
}
.util-bar__phones .phone-link span { display: inline; }
@media (max-width: 720px) {
    .util-bar { display: none; }
}


/* -------------------- SITE HEADER -------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--sh-md); }
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
    min-height: var(--header-h);
    padding-block: 12px;
}

.logo {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--navy);
    letter-spacing: .02em;
    line-height: 1;
    flex-shrink: 0;
}
.logo__mark { display: inline-block; }
.logo--footer { color: var(--white); font-size: 32px; margin-bottom: var(--s-3); }

.primary-nav__list {
    display: none;
}
@media (min-width: 1024px) {
    .primary-nav__list {
        display: flex;
        gap: var(--s-6);
        align-items: center;
    }
    .primary-nav__list a {
        font-weight: 600;
        font-size: 15px;
        color: var(--slate);
        padding: 8px 4px;
        position: relative;
        transition: color .2s var(--ease);
    }
    .primary-nav__list a:hover { color: var(--navy); }
    .primary-nav__list a::after {
        content: '';
        position: absolute;
        left: 4px; right: 4px; bottom: 0;
        height: 2px;
        background: var(--red);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .25s var(--ease);
    }
    .primary-nav__list a:hover::after { transform: scaleX(1); }
}

.site-header__cta { display: none; }
@media (min-width: 720px) { .site-header__cta { display: inline-flex; } }

.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    color: var(--navy);
    font-size: 22px;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.primary-nav__close {
    display: none;
    position: absolute;
    top: 16px; right: 16px;
    width: 44px; height: 44px;
    color: var(--white);
    font-size: 22px;
    align-items: center; justify-content: center;
}

@media (max-width: 1023px) {
    .primary-nav {
        position: fixed;
        top: 0; right: 0;
        width: min(320px, 88vw);
        height: 100vh;
        background: var(--navy);
        padding: 80px 32px 32px;
        z-index: 200;
        transform: translateX(100%);
        transition: transform .3s var(--ease);
        overflow-y: auto;
    }
    .primary-nav.is-open { transform: translateX(0); }
    .primary-nav__close { display: inline-flex; }
    .primary-nav__list {
        display: flex;
        flex-direction: column;
        gap: var(--s-2);
    }
    .primary-nav__list a {
        display: block;
        color: var(--white);
        font-weight: 600;
        font-size: 18px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .primary-nav__list a:hover { color: var(--red); }
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(11,27,43,.6);
    z-index: 150;
    opacity: 0;
    transition: opacity .25s var(--ease);
}
.nav-backdrop.is-open {
    opacity: 1;
}


/* -------------------- HERO -------------------- */
.hero {
    background:
        radial-gradient(1200px 600px at 80% -10%, rgba(225,29,46,.18), transparent 60%),
        linear-gradient(180deg, var(--navy) 0%, #0d2238 100%);
    color: var(--white);
    padding: var(--s-12) 0 var(--s-16);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><circle cx='1' cy='1' r='1' fill='%23ffffff' fill-opacity='0.04'/></svg>");
    pointer-events: none;
}
.hero__inner { position: relative; }
.hero__eyebrow {
    color: var(--red);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    margin-bottom: var(--s-5);
}
.hero__h1 {
    font-family: var(--font-display);
    font-size: clamp(38px, 6.5vw, 76px);
    line-height: 1;
    letter-spacing: .005em;
    margin-bottom: var(--s-5);
}
.hero__h1 .accent { color: var(--red); }
.hero__sub {
    font-size: clamp(17px, 2vw, 19px);
    color: rgba(255,255,255,.82);
    max-width: 640px;
    margin-bottom: var(--s-8);
    line-height: 1.55;
}
.hero__ctas {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
    margin-bottom: var(--s-8);
    max-width: 540px;
}
@media (min-width: 540px) { .hero__ctas { flex-direction: row; } }
.hero__ctas .btn { flex: 1; }
.hero__hint {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    margin-bottom: var(--s-10);
}
.hero__hint i { color: var(--green); }

.trust-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-3) var(--s-4);
    padding-top: var(--s-6);
    border-top: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 720px) {
    .trust-strip { grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
}
.trust-strip__item {
    display: flex;
    align-items: center;
    gap: var(--s-2);
    color: rgba(255,255,255,.85);
    font-size: 14px;
    font-weight: 500;
}
.trust-strip__item i { color: var(--green); font-size: 16px; flex-shrink: 0; }


/* -------------------- STATS STRIP -------------------- */
.stats {
    background: var(--white);
    padding: var(--s-12) 0;
    border-bottom: 1px solid var(--border);
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-6);
}
@media (min-width: 720px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat {
    text-align: center;
}
.stat__num {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 56px);
    line-height: 1;
    color: var(--navy);
    margin-bottom: var(--s-2);
}
.stat__num .unit { color: var(--red); }
.stat__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-2);
    text-transform: uppercase;
    letter-spacing: .06em;
}


/* -------------------- SECTION (generic) -------------------- */
.section { padding: var(--s-16) 0; }
.section--bg { background: var(--bg); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy .section-title { color: var(--white); }
.section--navy .section-sub { color: rgba(255,255,255,.75); }
@media (min-width: 1024px) { .section { padding: var(--s-20) 0; } }


/* -------------------- SERVICE GRID -------------------- */
.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-5);
}
@media (min-width: 640px)  { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--s-8);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s var(--ease);
    display: flex;
    flex-direction: column;
    gap: var(--s-4);
    position: relative;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
    border-color: var(--red);
}
.service-card__icon {
    width: 56px; height: 56px;
    border-radius: var(--r-md);
    display: inline-flex;
    align-items: center; justify-content: center;
    background: var(--red-light);
    color: var(--red);
    font-size: 24px;
}
.service-card__title {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--navy);
    line-height: 1.05;
}
.service-card__text {
    font-size: 15px;
    color: var(--slate-2);
    line-height: 1.55;
    flex: 1;
}
.service-card__link {
    color: var(--red);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.service-card__link i { transition: transform .2s var(--ease); }
.service-card:hover .service-card__link i { transform: translateX(4px); }


/* -------------------- URGENCY BAND -------------------- */
.urgency-band {
    background: linear-gradient(90deg, var(--red) 0%, #C8101F 100%);
    color: var(--white);
    padding: var(--s-6) 0;
}
.urgency-band__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s-4);
    text-align: center;
}
@media (min-width: 1024px) {
    .urgency-band__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.urgency-band__items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--s-3) var(--s-5);
    font-weight: 700;
    font-size: 15px;
}
.urgency-band__item { display: inline-flex; align-items: center; gap: var(--s-2); }
.urgency-band__item i { font-size: 16px; }
.urgency-band__sep { opacity: .55; font-weight: 700; }
.urgency-band__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    background: var(--white);
    color: var(--red);
    padding: 12px 22px;
    border-radius: var(--r-md);
    font-weight: 700;
    font-size: 16px;
    transition: transform .2s var(--ease);
}
.urgency-band__cta:hover { transform: translateY(-1px); }


/* -------------------- PROCESS -------------------- */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-6);
    counter-reset: step;
    position: relative;
}
@media (min-width: 640px)  { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-5); } }

.process-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--s-8) var(--s-6);
    text-align: center;
    position: relative;
}
.process-step__num {
    width: 52px; height: 52px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: var(--s-4);
}
.process-step__icon {
    color: var(--red);
    font-size: 28px;
    margin-bottom: var(--s-3);
}
.process-step__title {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--navy);
    margin-bottom: var(--s-2);
}
.process-step__text {
    font-size: 14px;
    color: var(--slate-2);
    line-height: 1.5;
}


/* -------------------- WHY US (feature cards) -------------------- */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-5);
}
@media (min-width: 720px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
    display: flex;
    gap: var(--s-4);
    padding: var(--s-6);
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
}
.why-card__icon {
    width: 48px; height: 48px;
    border-radius: var(--r-md);
    background: var(--navy);
    color: var(--white);
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.why-card__title {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--navy);
    margin-bottom: var(--s-2);
}
.why-card__text { font-size: 14px; color: var(--slate-2); line-height: 1.55; }


/* -------------------- AREAS (Service Areas) -------------------- */
.areas {
    background: var(--navy);
    color: var(--white);
    padding: var(--s-16) 0;
}
@media (min-width: 1024px) { .areas { padding: var(--s-20) 0; } }
.areas .section-title { color: var(--white); }
.areas .section-sub { color: rgba(255,255,255,.75); }

.areas__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-10);
}
@media (min-width: 720px) { .areas__grid { grid-template-columns: 1fr 1fr; } }

.areas__col__title {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--white);
    margin-bottom: var(--s-5);
    padding-bottom: var(--s-3);
    border-bottom: 2px solid var(--red);
    display: inline-block;
}
.areas__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-3) var(--s-5);
}
.areas__list a {
    color: rgba(255,255,255,.85);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    transition: color .2s var(--ease);
}
.areas__list a i { color: var(--red); font-size: 12px; }
.areas__list a:hover { color: var(--white); }


/* -------------------- TESTIMONIALS -------------------- */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-5);
}
@media (min-width: 720px)  { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--s-8);
    display: flex;
    flex-direction: column;
    gap: var(--s-4);
}
.testimonial__stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.testimonial__text {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.65;
    flex: 1;
    font-style: italic;
}
.testimonial__meta { border-top: 1px solid var(--border); padding-top: var(--s-3); }
.testimonial__name { font-weight: 700; color: var(--navy); }
.testimonial__location {
    font-size: 13px;
    color: var(--slate-3);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}


/* -------------------- INSURANCE STRIP -------------------- */
.insurance {
    padding: var(--s-12) 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.insurance__head {
    text-align: center;
    margin-bottom: var(--s-6);
}
.insurance__head h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--navy);
}
.insurance__head p {
    color: var(--slate-2);
    font-size: 15px;
    margin-top: var(--s-2);
}
.insurance__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--s-4) var(--s-8);
}
.insurance__item {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--slate-3);
    letter-spacing: .04em;
    transition: color .2s var(--ease);
}
.insurance__item:hover { color: var(--navy); }


/* -------------------- FAQS -------------------- */
.faqs { background: var(--white); padding: var(--s-16) 0; }
@media (min-width: 1024px) { .faqs { padding: var(--s-20) 0; } }
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    width: 100%;
    text-align: left;
    padding: var(--s-5) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
    font-weight: 700;
    font-size: 17px;
    color: var(--navy);
    transition: color .2s var(--ease);
}
.faq-q:hover { color: var(--red); }
.faq-q__icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--bg);
    color: var(--navy);
    display: inline-flex;
    align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform .25s var(--ease), background .2s var(--ease), color .2s var(--ease);
    font-size: 12px;
}
.faq-q[aria-expanded="true"] .faq-q__icon {
    background: var(--red);
    color: var(--white);
    transform: rotate(45deg);
}
.faq-a {
    padding: 0 0 var(--s-5);
    color: var(--slate-2);
    font-size: 16px;
    line-height: 1.65;
    max-width: 720px;
}


/* -------------------- BREADCRUMBS -------------------- */
.breadcrumbs {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: var(--s-3) 0;
}
.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--s-2);
    font-size: 13px;
    color: var(--slate-3);
}
.breadcrumbs__item { display: inline-flex; align-items: center; gap: var(--s-2); }
.breadcrumbs__item a { color: var(--slate-2); transition: color .2s var(--ease); }
.breadcrumbs__item a:hover { color: var(--red); }
.breadcrumbs__sep { font-size: 10px; color: var(--slate-4); }
.breadcrumbs__item [aria-current="page"] { color: var(--navy); font-weight: 600; }


/* -------------------- FINAL CTA -------------------- */
.final-cta {
    background:
        radial-gradient(900px 500px at 100% 0%, rgba(225,29,46,.18), transparent 60%),
        linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
    color: var(--white);
    padding: var(--s-16) 0;
}
@media (min-width: 1024px) { .final-cta { padding: var(--s-20) 0; } }
.final-cta__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-10);
}
@media (min-width: 1024px) {
    .final-cta__inner { grid-template-columns: 1.2fr 1fr; align-items: center; gap: var(--s-12); }
}
.final-cta__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.05;
    color: var(--white);
    margin-bottom: var(--s-4);
}
.final-cta__sub {
    font-size: 17px;
    color: rgba(255,255,255,.78);
    margin-bottom: var(--s-6);
    line-height: 1.55;
}
.final-cta__bullets {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-2);
}
@media (min-width: 540px) { .final-cta__bullets { grid-template-columns: 1fr 1fr; } }
.final-cta__bullets li {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    font-size: 14px;
    color: rgba(255,255,255,.85);
    font-weight: 500;
}
.final-cta__bullets i { color: var(--green); }
.final-cta__buttons { display: flex; flex-direction: column; gap: var(--s-4); }
.final-cta__hint {
    font-size: 13px;
    color: rgba(255,255,255,.65);
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    text-align: center;
    justify-content: center;
}
.final-cta__hint i { color: var(--green); }


/* -------------------- FOOTER -------------------- */
.site-footer {
    background: #07111B;
    color: rgba(255,255,255,.7);
    padding: var(--s-16) 0 var(--s-8);
    font-size: 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-10);
    margin-bottom: var(--s-12);
}
@media (min-width: 720px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: var(--s-8); } }

.footer-tagline {
    font-size: 16px;
    color: rgba(255,255,255,.85);
    margin-bottom: var(--s-3);
    font-weight: 500;
}
.footer-usp {
    color: rgba(255,255,255,.65);
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: var(--s-5);
    max-width: 360px;
}
.footer-phones {
    display: flex;
    flex-direction: column;
    gap: var(--s-2);
    margin-bottom: var(--s-5);
}
.footer-meta { margin-bottom: var(--s-5); }
.footer-meta p {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    margin-bottom: var(--s-2);
    color: rgba(255,255,255,.65);
}
.footer-meta i { color: var(--red); width: 16px; }
.footer-meta a { color: rgba(255,255,255,.7); }
.footer-meta a:hover { color: var(--white); }

.footer-social { display: flex; gap: var(--s-3); }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    display: inline-flex;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,.8);
    transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.footer-social a:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-col__title {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--white);
    margin-bottom: var(--s-4);
    letter-spacing: .04em;
}
.footer-list { display: flex; flex-direction: column; gap: var(--s-2); }
.footer-list a {
    color: rgba(255,255,255,.65);
    font-size: 14px;
    transition: color .2s var(--ease);
}
.footer-list a:hover { color: var(--red); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: var(--s-5);
    display: flex;
    flex-direction: column;
    gap: var(--s-4);
    align-items: center;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,.55);
}
@media (min-width: 720px) {
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom__right { display: flex; flex-wrap: wrap; gap: var(--s-5); justify-content: center; }
.footer-bottom__right a { color: rgba(255,255,255,.55); }
.footer-bottom__right a:hover { color: var(--white); }


/* -------------------- STICKY MOBILE CTA -------------------- */
.sticky-cta {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    display: flex;
    background: var(--navy);
    box-shadow: 0 -4px 20px rgba(0,0,0,.25);
    padding: 8px;
    gap: 6px;
}
.sticky-cta__btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-2);
    padding: 12px 8px;
    border-radius: var(--r-md);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    min-height: 56px;
    line-height: 1.1;
}
.sticky-cta__btn--primary { background: var(--red); }
.sticky-cta__btn--primary:hover { background: var(--red-dark); }
.sticky-cta__btn--secondary { background: var(--navy-3); }
.sticky-cta__btn--secondary:hover { background: var(--navy-2); }
.sticky-cta__stack { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.05; }
.sticky-cta__label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .85;
}
.sticky-cta__num { font-size: 14px; font-weight: 700; }
.sticky-cta__btn i { font-size: 16px; }

@media (min-width: 1024px) {
    .sticky-cta { display: none; }
}
@media (max-width: 1023px) {
    body { padding-bottom: 76px; }
}


/* -------------------- PAGE-LEVEL HELPERS -------------------- */
.page-hero {
    background:
        radial-gradient(900px 500px at 80% -10%, rgba(225,29,46,.18), transparent 60%),
        linear-gradient(180deg, var(--navy) 0%, #0d2238 100%);
    color: var(--white);
    padding: var(--s-12) 0 var(--s-12);
}
.page-hero__h1 {
    font-family: var(--font-display);
    font-size: clamp(34px, 5.5vw, 60px);
    line-height: 1.05;
    margin-bottom: var(--s-4);
}
.page-hero__sub {
    font-size: clamp(16px, 1.6vw, 18px);
    color: rgba(255,255,255,.82);
    max-width: 720px;
    margin-bottom: var(--s-6);
    line-height: 1.55;
}
.page-hero__ctas {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
    max-width: 540px;
}
@media (min-width: 540px) { .page-hero__ctas { flex-direction: row; } }
.page-hero__ctas .btn { flex: 1; }

.prose { max-width: 760px; }
.prose p { font-size: 17px; line-height: 1.7; color: var(--slate); margin-bottom: var(--s-4); }
.prose h2 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--navy);
    margin-top: var(--s-8);
    margin-bottom: var(--s-4);
}
.prose h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-top: var(--s-6);
    margin-bottom: var(--s-3);
}
.prose ul, .prose ol { margin: var(--s-4) 0; padding-left: var(--s-6); }
.prose ul li, .prose ol li {
    list-style: disc;
    color: var(--slate);
    line-height: 1.65;
    margin-bottom: var(--s-2);
}
.prose ol li { list-style: decimal; }
.prose strong { color: var(--navy); font-weight: 700; }


/* -------------------- INFO CARD ROWS -------------------- */
.info-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-8);
    align-items: center;
}
@media (min-width: 1024px) { .info-row { grid-template-columns: 1fr 1fr; gap: var(--s-12); } }

.checklist {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
    margin-top: var(--s-5);
}
.checklist li {
    display: flex;
    align-items: flex-start;
    gap: var(--s-3);
    font-size: 16px;
    color: var(--slate);
}
.checklist li i {
    color: var(--green);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}
.checklist li strong { color: var(--navy); }


/* -------------------- LOCAL CALLOUT BOX -------------------- */
.local-callout {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--r-lg);
    padding: var(--s-8);
    margin: var(--s-8) 0;
    border-left: 6px solid var(--red);
}
.local-callout h3 {
    font-family: var(--font-display);
    font-size: 26px;
    margin-bottom: var(--s-3);
    color: var(--white);
}
.local-callout p { color: rgba(255,255,255,.82); font-size: 16px; line-height: 1.6; }


/* -------------------- VIEW ALL LINK -------------------- */
.view-all {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    color: var(--red);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: var(--s-6);
}
.view-all:hover { color: var(--red-dark); }
.view-all i { transition: transform .2s var(--ease); }
.view-all:hover i { transform: translateX(4px); }


/* -------------------- RESPONSIVE TWEAKS -------------------- */
@media (max-width: 480px) {
    .util-bar__phones { gap: var(--s-3); }
    .hero { padding: var(--s-10) 0 var(--s-12); }
    .section { padding: var(--s-12) 0; }
}

/* -------------------- PRINT (basic) -------------------- */
@media print {
    .util-bar, .site-header, .sticky-cta, .urgency-band, .final-cta { display: none; }
}
