:root {
    --ink: #0a1726;
    --navy: #102741;
    --blue: #1b4e7a;
    --red: #d52733;
    --yellow: #f2c94c;
    --steel: #627084;
    --line: #dce3ec;
    --mist: #f5f7fa;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(16, 39, 65, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

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

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

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 18px clamp(18px, 4vw, 58px);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(220, 227, 236, 0.85);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 246px;
    min-width: 246px;
}

.brand img {
    width: 100%;
    height: auto;
}

h1,
h2,
h3 {
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.02;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: clamp(14px, 3vw, 36px);
    color: #35445a;
    font-size: 0.94rem;
    font-weight: 800;
}

.main-nav a {
    transition: color 180ms ease;
}

.main-nav a:hover {
    color: var(--red);
}

.nav-lookup-cta {
    color: var(--red) !important;
    border: 1.5px solid var(--red);
    border-radius: 6px;
    padding: .2rem .65rem;
    align-self: center;
    transition: background 180ms ease, color 180ms ease !important;
}

.nav-lookup-cta:hover {
    background: var(--red);
    color: var(--white) !important;
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 0;
    border-radius: 6px;
    font-family: "Inter", Arial, sans-serif;
    font-weight: 900;
    cursor: pointer;
}

.header-cta {
    color: var(--white);
    background: var(--navy);
    white-space: nowrap;
}

.mobile-menu {
    display: none;
    position: relative;
    justify-self: end;
}

.mobile-menu summary {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    color: var(--white);
    background: var(--navy);
    border-radius: 6px;
    cursor: pointer;
    list-style: none;
}

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

.mobile-menu summary span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 2px 0;
    background: var(--white);
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu[open] summary span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu[open] summary span:nth-child(2) {
    opacity: 0;
}

.mobile-menu[open] summary span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu-panel {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    display: grid;
    gap: 6px;
    width: min(300px, calc(100vw - 36px));
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.mobile-menu-panel a {
    padding: 13px 14px;
    color: var(--navy);
    border-radius: 6px;
    font-family: "Inter", Arial, sans-serif;
    font-weight: 900;
}

.mobile-menu-panel a:hover {
    background: #f3f6fa;
    color: var(--red);
}

.mobile-menu-panel .mobile-call {
    margin-top: 4px;
    color: var(--white);
    background: var(--red);
    text-align: center;
}

.mobile-menu-panel .mobile-call:hover {
    color: var(--white);
    background: #b81f2a;
}

.hero {
    position: relative;
    min-height: 94vh;
    overflow: hidden;
    display: grid;
    align-items: center;
    padding: 128px clamp(18px, 5vw, 72px) 42px;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media {
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 35%, rgba(255,255,255,0.24) 67%, rgba(255,255,255,0.04) 100%),
        linear-gradient(0deg, rgba(10, 23, 38, 0.26), rgba(10, 23, 38, 0));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(720px, 100%);
}

.eyebrow,
.section-kicker {
    margin: 0 0 16px;
    color: var(--red);
    font-family: "Inter", Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(3.2rem, 7vw, 7.8rem);
    font-weight: 900;
    max-width: 780px;
}

.hero-copy {
    max-width: 590px;
    margin: 26px 0 0;
    color: #334154;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn-primary {
    color: var(--white);
    background: var(--red);
    box-shadow: 0 14px 28px rgba(213, 39, 51, 0.22);
}

.btn-secondary {
    color: var(--navy);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(570px, 100%);
    margin-top: 42px;
    border-top: 1px solid rgba(98, 112, 132, 0.25);
}

.hero-stats div {
    padding: 20px 18px 0 0;
}

.hero-stats strong {
    display: block;
    color: var(--navy);
    font-family: "Inter", Arial, sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1;
}

.hero-stats span {
    display: block;
    margin-top: 7px;
    color: var(--steel);
    font-size: 0.88rem;
    font-weight: 800;
}

.section-pad {
    padding: clamp(72px, 9vw, 132px) clamp(18px, 5vw, 72px);
}

.intro {
    background: var(--white);
}

.intro-grid,
.coverage,
.contact,
.process-panel {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: clamp(28px, 6vw, 80px);
    align-items: start;
}

h2 {
    margin: 0;
    font-size: clamp(2.1rem, 4.7vw, 4.7rem);
    font-weight: 900;
}

.intro-grid p,
.process-panel p,
.coverage-copy p,
.contact-copy p {
    margin: 0;
    color: #4b596d;
    font-size: 1.05rem;
}

.services {
    background: var(--mist);
}

.section-heading {
    width: min(1180px, 100%);
    margin: 0 auto 34px;
}

.section-heading h2 {
    max-width: 830px;
}

.service-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    min-height: 330px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(16, 39, 65, 0.04);
}

.service-card.featured {
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
    box-shadow: var(--shadow);
}

.card-icon {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 46px;
    color: var(--red);
    background: #fff2f3;
    border-radius: 6px;
    font-family: "Inter", Arial, sans-serif;
    font-weight: 900;
}

.featured .card-icon {
    color: var(--navy);
    background: var(--yellow);
}

.service-card h3 {
    margin: 0 0 16px;
    font-size: 1.35rem;
}

.service-card p {
    margin: 0;
    color: #596678;
}

.featured p {
    color: rgba(255, 255, 255, 0.78);
}

.service-card a {
    display: inline-block;
    margin-top: 28px;
    color: var(--yellow);
    font-weight: 900;
}

.process {
    color: var(--white);
    background: var(--navy);
}

.process-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: clamp(34px, 6vw, 90px);
    align-items: start;
}

.process .section-kicker {
    color: var(--yellow);
}

.process-panel p {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.72);
}

.steps {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps li {
    position: relative;
    min-height: 104px;
    padding: 24px 24px 24px 98px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

.steps li::before {
    content: counter(list-item, decimal-leading-zero);
    position: absolute;
    left: 24px;
    top: 24px;
    color: var(--yellow);
    font-family: "Inter", Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
}

.steps span {
    display: block;
    margin-bottom: 4px;
    color: var(--white);
    font-family: "Inter", Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 900;
}

.coverage {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(36px, 6vw, 88px);
    align-items: center;
}

.coverage-map {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(16, 39, 65, 0.08);
    background: var(--mist);
}

.coverage-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.coverage-copy h2,
.contact-copy h2 {
    margin-bottom: 22px;
}

.coverage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.coverage-tags span {
    padding: 10px 14px;
    background: #eef3f8;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--navy);
    font-weight: 900;
    font-size: 0.88rem;
}

.contact {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.7fr);
    gap: clamp(36px, 6vw, 90px);
    align-items: start;
}

.contact-methods {
    display: grid;
    gap: 12px;
    margin-top: 34px;
}

.contact-methods a {
    color: var(--red);
    font-family: "Inter", Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--navy);
    font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--ink);
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 6px;
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.form-success {
    padding: 14px 16px;
    color: #144829;
    background: #e9f8ef;
    border: 1px solid #bde8cb;
    border-radius: 6px;
    font-weight: 800;
}

.form-error {
    padding: 14px 16px;
    color: #7a1620;
    background: #fff0f1;
    border: 1px solid #f1b8bf;
    border-radius: 6px;
    font-weight: 800;
}

.site-footer {
    padding: 30px clamp(18px, 5vw, 72px);
    color: rgba(255, 255, 255, 0.78);
    background: #07111d;
}

.site-footer p {
    margin: 0;
}

@media (max-width: 1060px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .main-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

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

@media (max-width: 820px) {
    .site-header {
        position: absolute;
        padding: 14px 18px;
    }

    .brand {
        width: 210px;
        min-width: 210px;
    }

    .hero {
        min-height: 92vh;
        padding-top: 112px;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.88) 58%, rgba(255,255,255,0.18) 100%),
            linear-gradient(0deg, rgba(10, 23, 38, 0.3), rgba(10, 23, 38, 0));
    }

    .hero-media {
        object-position: 65% center;
    }

    .intro-grid,
    .process-panel,
    .coverage,
    .contact {
        grid-template-columns: 1fr;
    }

    .process-panel,
    .contact {
        gap: 34px;
    }

    .coverage-map {
        min-height: 320px;
    }

}

@media (max-width: 620px) {
    .brand {
        width: 178px;
        min-width: 178px;
    }

    h1 {
        font-size: clamp(2.55rem, 15vw, 4.7rem);
    }

    .hero-stats,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats div {
        padding-top: 16px;
    }

    .service-card {
        min-height: 0;
    }

    .card-icon {
        margin-bottom: 28px;
    }

    .steps li {
        padding-left: 82px;
    }

    .contact-form {
        padding: 20px;
    }
}
