:root {
    --navy: #062B3A;
    --blue: #0A6FB5;
    --aqua: #12A7A0;
    --orange: #F97316;
    --orange-hover: #E7630C;
    --green: #16A34A;
    --pale-bg: #EAF7FA;
    --light-bg: #F5F8FA;
    --text: #102A43;
    --text-secondary: #526779;
    --border: #D8E5EA;
    --white: #FFFFFF;
    --radius: 16px;
    --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.5;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 17px;
    padding: 16px 28px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    white-space: nowrap;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 6px 16px rgba(249, 115, 22, .35);
}

.btn-primary:hover {
    background: var(--orange-hover);
    box-shadow: 0 8px 20px rgba(231, 99, 12, .45);
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 19px;
    color: var(--navy);
    letter-spacing: -.01em;
}

.logo small {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--text-secondary);
}

.logo svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--blue);
    font-size: 26px;
}

.header-phone svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--orange);
}

.header-phone-icon {
    display: none;
}

/* Hero */
.fold-wrap {
    display: flex;
    flex-direction: column;
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #041B26 0%, #0A3E52 55%, #0A6FB5 100%);
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(6, 43, 58, .94) 0%, rgba(6, 43, 58, .82) 38%, rgba(6, 43, 58, .35) 70%, rgba(6, 43, 58, .18) 100%);
}

.hero-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px 96px;
    display: grid;
    grid-template-columns: 1fr clamp(210px, 19vw, 270px);
    gap: 32px;
    align-items: center;
    width: 100%;
}

.hero-content {
    color: var(--white);
    max-width: 640px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #BEE7F2;
    margin-bottom: 16px;
}

.eyebrow strong {
    color: var(--white);
}

.hero h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.06;
    margin-bottom: 18px;
    letter-spacing: -.01em;
}

.hero p.lede {
    font-size: 18px;
    color: #D6ECF2;
    max-width: 520px;
    margin-bottom: 26px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-bottom: 22px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #EAF7FA;
}

.hero-badge svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--aqua);
}

.hero-subnote {
    margin-top: 14px;
    font-size: 13px;
    color: #A9CBD6;
}

/* Response status card (desktop) */
.dispatch-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.dispatch-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .04em;
    color: var(--green);
    margin-bottom: 12px;
    line-height: 1.3;
}

.dispatch-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}

.dispatch-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.dispatch-icon svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.dispatch-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
    text-align: center;
}

.dispatch-card p {
    font-size: 12.5px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.4;
    text-align: center;
}

.dispatch-card p.dispatch-line-2 {
    margin-top: 1.4em;
    color: var(--navy);
    font-weight: 700;
}

/* Mobile status strip */
.status-strip {
    display: none;
}

/* Trust strip */
.trust-bar {
    border-bottom: 1px solid var(--border);
    background: var(--pale-bg);
    flex-shrink: 0;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px 40px;
    padding: 22px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    text-align: left;
    flex: 0 0 auto;
}

.trust-item svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    color: var(--blue);
}

/* Sections */
section {
    padding: 64px 0;
}

.section-head {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.01em;
}

.section-head p {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    transition: box-shadow .2s ease, transform .2s ease;
}

.service-card:hover {
    box-shadow: 0 12px 24px rgba(10, 111, 181, .14);
    transform: translateY(-2px);
}

.service-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 20px 6px;
}

.service-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0;
}

.service-icon.aqua {
    background: var(--aqua);
}

.service-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.service-card p {
    font-size: 14.5px;
    color: var(--text-secondary);
    font-weight: 600;
    padding: 0 20px 18px;
    line-height: 1.5;
}

.service-photo {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #DCEFF2, #B9DEE5);
}

.service-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* What happens when you call */
.steps-section {
    background: var(--light-bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    margin: 0 auto 14px;
}

.step-item h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.step-item p {
    font-size: 14.5px;
    color: var(--text-secondary);
    font-weight: 600;
    line-height: 1.5;
}

/* Speed / mitigation section */
.local-section {
    background: var(--white);
}

.local-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.local-grid h2 {
    text-align: left;
    margin-bottom: 14px;
}

.local-grid > div:first-child p.intro {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.55;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    list-style: none;
}

.check-list svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--aqua);
    margin-top: 1px;
}

.local-photo-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.local-photo {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #CFE9EE, #9FCFDA);
}

.local-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.local-overlay {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: var(--navy);
    color: var(--white);
    border-radius: 12px;
    padding: 16px 20px;
    max-width: 280px;
}

.local-overlay h4 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 4px;
}

.local-overlay p {
    font-size: 13px;
    color: #BEE7F2;
}

/* Optional provider truck panel */
.provider-panel {
    background: var(--pale-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    max-width: 1150px;
    margin: 0 auto;
}

.provider-panel img {
    width: 180px;
    height: 130px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.provider-panel h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.provider-panel p {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
    line-height: 1.5;
}

/* Area banner + map */
.area-banner {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 22px 24px;
}

.area-banner strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}

.area-banner span {
    font-size: 14px;
    font-weight: 700;
    color: #BEE7F2;
}

.map-wrap {
    padding: 48px 0;
    background: var(--light-bg);
}

.map-svg-holder {
    max-width: 900px;
    margin: 0 auto;
}

.map-heading {
    text-align: center;
    margin-bottom: 28px;
}

.map-heading h2 {
    font-size: 32px;
}

.map-heading p {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 600;
    margin-top: 8px;
}

.map-disclosure {
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 14px;
}

/* Final CTA */
.cta-band {
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 32px 36px;
    border-radius: var(--radius);
    max-width: 1150px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cta-band-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cta-band-left svg {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    color: var(--aqua);
}

.cta-band h3 {
    font-size: 22px;
    font-weight: 800;
}

.cta-band p {
    font-size: 14px;
    color: #BEE7F2;
    margin-top: 4px;
}

/* Footer */
footer {
    background: var(--navy);
    color: #A9C7D2;
    padding: 26px 0;
    font-size: 13px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: var(--white);
    font-size: 15px;
}

.footer-logo svg {
    width: 22px;
    height: 22px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-link-separator {
    color: rgba(255, 255, 255, 0.4);
}

.footer-disclaimer-wrap {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(190, 231, 242, 0.18);
}

.footer-disclaimer {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.68);
    max-width: 1180px;
}

/* Sticky call bar */
.sticky-call-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: var(--orange);
    color: var(--white);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    padding-bottom: max(14px, env(safe-area-inset-bottom));
    font-weight: 800;
    font-size: 16px;
    min-height: 56px;
    box-shadow: 0 -6px 16px rgba(0, 0, 0, .18);
    transform: translateY(100%);
    transition: transform .25s ease;
}

.sticky-call-bar.visible {
    transform: translateY(0);
}

.sticky-call-bar svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 860px) {
    .fold-wrap {
        min-height: 100vh;
    }

    .hero {
        min-height: calc(100vh - 68px);
        flex: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 40px 20px 32px;
        text-align: center;
    }

    .dispatch-card {
        display: none;
    }

    .status-strip {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: var(--white);
        border-radius: 12px;
        padding: 12px 16px;
        margin-top: 6px;
        font-size: 13px;
        font-weight: 700;
        color: var(--navy);
    }

    .status-strip .dispatch-dot {
        background: var(--green);
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p.lede {
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badges {
        gap: 14px 18px;
        justify-content: center;
    }

    .hero .btn {
        margin: 0 auto;
        width: 100%;
    }

    .header-phone {
        display: none;
    }

    .header-phone-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--pale-bg);
        color: var(--blue);
    }

    .header-phone-icon svg {
        width: 20px;
        height: 20px;
    }

    .trust-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px 20px;
        padding: 20px 4px;
        justify-content: stretch;
    }

    .trust-item {
        justify-content: flex-start;
    }

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

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    h2 {
        font-size: 30px;
    }

    .local-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .local-grid h2 {
        text-align: center;
    }

    .local-grid > div:first-child {
        order: 1;
        text-align: center;
    }

    .local-grid > div:first-child p.intro {
        margin-left: auto;
        margin-right: auto;
        max-width: 420px;
    }

    .check-list {
        align-items: center;
        max-width: 320px;
        margin: 0 auto;
    }

    .check-list li {
        justify-content: center;
        text-align: center;
    }

    .local-photo-wrap {
        order: 2;
    }

    .provider-panel {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .provider-panel img {
        width: 100%;
        height: 160px;
    }

    .cta-band {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .cta-band-left {
        flex-direction: column;
        text-align: center;
    }

    .cta-band .btn {
        width: 100%;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .sticky-call-bar {
        display: flex;
    }

    section {
        padding: 44px 0;
    }

    /* keep footer legible above sticky bar */
    footer {
        padding-bottom: 84px;
    }
}

@media (max-width: 520px) {
    .hero h1 {
        font-size: 32px;
    }
}

@media (min-width: 861px) {
    .fold-wrap {
        height: 100vh;
    }

    .hero {
        flex: 1;
        min-height: 0;
    }

    .dispatch-card {
        transform: translateX(32px);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        transition-duration: 0.001ms !important;
    }
}

a:focus-visible, button:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 2px;
}
