:root {
    --bg: #07111f;
    --bg-elevated: #0d1b2f;
    --bg-soft: #13233a;
    --text: #f7fafc;
    --muted: #a9b6c7;
    --line: rgba(255, 255, 255, 0.1);
    --accent: #2f80ed;
    --accent-strong: #1d64c8;
    --accent-soft: rgba(47, 128, 237, 0.14);
    --white: #ffffff;
    --max-width: 1180px;
    --radius: 22px;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f5f7fa;
    color: #0d1b2f;
}

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

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

.site-top {
    background: #ffffff;
    border-bottom: 1px solid #e8edf3;
}

.site-header,
.hero,
.trust-strip,
.section,
.business-section,
.faq-section,
.contact-section,
.cta-section,
.site-footer {
    width: min(calc(100% - 2rem), var(--max-width));
    margin-inline: auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 168px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    color: #445468;
    font-size: 0.95rem;
}

.main-nav a,
.header-phone {
    transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

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

.header-phone {
    padding: 0.75rem 1rem;
    border: 1px solid #cfe0f8;
    border-radius: 999px;
    background: #f5f9ff;
    color: var(--accent-strong);
    font-weight: 700;
}

.header-phone:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--white);
}

.hero {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 2rem;
    align-items: stretch;
    padding: 5.5rem 0 4.5rem;
    color: var(--text);
}

.hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at top left, rgba(47, 128, 237, 0.18), transparent 34rem),
        linear-gradient(180deg, #07111f 0%, #0a1524 100%);
}

.hero-content {
    max-width: 760px;
}

.eyebrow,
.card-label {
    margin: 0 0 1rem;
    color: #7fb5ff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 1.4rem;
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

h3 {
    margin-bottom: 0.7rem;
    color: #0d1b2f;
    font-size: 1.12rem;
}

.hero-lead {
    max-width: 680px;
    margin-bottom: 2rem;
    color: #c7d3e1;
    font-size: clamp(1.08rem, 2vw, 1.25rem);
    line-height: 1.75;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.9rem 1.25rem;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button.primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 16px 34px rgba(47, 128, 237, 0.26);
}

.button.primary:hover {
    background: var(--accent-strong);
}

.button.secondary {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
}

.button.secondary.dark {
    border-color: rgba(7, 17, 31, 0.14);
    color: #0d1b2f;
}

.contact-card {
    align-self: end;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    color: #0d1b2f;
    box-shadow: var(--shadow);
}

.contact-card h2 {
    margin-bottom: 0.75rem;
    font-size: 1.7rem;
    letter-spacing: -0.035em;
}

.contact-card p {
    color: #4a5a70;
    line-height: 1.65;
}

.contact-card ul {
    display: grid;
    gap: 0.8rem;
    margin: 1.4rem 0 0;
    padding: 0;
    list-style: none;
}

.contact-card li {
    display: grid;
    gap: 0.2rem;
    padding-top: 0.8rem;
    border-top: 1px solid #dbe3ee;
}

.contact-card span {
    color: #6c7a8d;
    font-size: 0.82rem;
}

.contact-card a {
    color: var(--accent-strong);
    font-weight: 800;
}

.trust-strip {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
}

.trust-strip::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: #0a1524;
}

.trust-strip div {
    padding: 1.35rem;
    background: rgba(13, 27, 47, 0.9);
}

.trust-strip strong,
.trust-strip span {
    display: block;
}

.trust-strip strong {
    margin-bottom: 0.3rem;
    color: var(--white);
}

.trust-strip span {
    color: #b9c6d7;
    line-height: 1.5;
}

.section,
.faq-section {
    padding: 5rem 0;
    color: #0d1b2f;
}

.section h2,
.faq-section h2,
.section-heading h2 {
    color: #0d1b2f;
}

.section .eyebrow,
.faq-section .eyebrow,
.contact-section .eyebrow {
    color: var(--accent-strong);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2rem;
}

.section-heading p {
    color: #526176;
    font-size: 1.08rem;
    line-height: 1.7;
}

.service-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.service-card,
.faq-grid article,
.steps article {
    padding: 1.6rem;
    border: 1px solid #dce4ee;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 18px 50px rgba(13, 27, 47, 0.06);
}

.service-card p,
.faq-grid p,
.steps p,
.business-section p,
.business-section li,
.cta-section p {
    color: #526176;
    line-height: 1.7;
}

.process {
    padding-top: 1rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.steps span {
    display: inline-flex;
    margin-bottom: 1.6rem;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.business-section {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 2rem;
    align-items: start;
    padding: 3rem;
    border-radius: calc(var(--radius) + 8px);
    background: #0d1b2f;
    color: var(--white);
    box-shadow: var(--shadow);
}

.business-section h2 {
    max-width: 640px;
}

.business-section p,
.business-section li {
    color: #c9d5e5;
}

.business-list {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
}

.business-list ul {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
}

.business-list li + li {
    margin-top: 0.65rem;
}

.faq-section {
    padding-bottom: 3rem;
}

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

.cta-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    border: 1px solid #dce4ee;
    border-radius: var(--radius);
    background: var(--white);
    color: #0d1b2f;
    box-shadow: 0 18px 50px rgba(13, 27, 47, 0.07);
}

.cta-section h2 {
    margin-bottom: 0.55rem;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.cta-section p {
    margin-bottom: 0;
}

.site-footer {
    padding: 0 0 2rem;
    color: #657386;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-top: 2rem;
    text-align: left;
}

.footer-grid strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #0d1b2f;
}

.footer-grid p {
    margin: 0 0 0.35rem;
    line-height: 1.6;
}

.footer-grid a {
    color: var(--accent-strong);
    font-weight: 700;
}

.footer-copy {
    margin: 0;
    text-align: center;
}

.page-section {
    width: min(calc(100% - 2rem), var(--max-width));
    margin-inline: auto;
    padding-top: 2rem;
}

.location-hero {
    position: relative;
    isolation: isolate;
    color: var(--text);
    padding-bottom: 2.5rem;
}

.location-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at top left, rgba(47, 128, 237, 0.18), transparent 34rem),
        linear-gradient(180deg, #07111f 0%, #0a1524 100%);
}

.location-hero h1 {
    max-width: 900px;
}

.location-lead,
.location-description {
    max-width: 760px;
    color: #c7d3e1;
    line-height: 1.75;
}

.location-description {
    margin-bottom: 1.5rem;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
    color: #9fb0c4;
    font-size: 0.92rem;
}

.breadcrumbs li:not(:last-child)::after {
    margin-left: 0.5rem;
    color: #6f8198;
    content: "/";
}

.breadcrumbs a {
    color: #d9e7f7;
    font-weight: 600;
}

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

.coverage-section {
    padding-top: 1rem;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
}

.coverage-grid--compact {
    grid-template-columns: repeat(2, 1fr);
}

.location-card {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1rem 1.1rem;
    border: 1px solid #dce4ee;
    border-radius: 16px;
    background: var(--white);
    color: #0d1b2f;
    box-shadow: 0 12px 30px rgba(13, 27, 47, 0.05);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.location-card:hover {
    border-color: #b9d4fb;
    box-shadow: 0 16px 36px rgba(47, 128, 237, 0.12);
    transform: translateY(-1px);
}

.location-card--primary {
    border-color: #9ec5f7;
    background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
}

.location-name {
    font-weight: 800;
}

.location-link {
    color: var(--accent-strong);
    font-size: 0.92rem;
    font-weight: 700;
}

.coverage-note {
    margin: 1.25rem 0 0;
    color: #526176;
}

.coverage-note a {
    color: var(--accent-strong);
    font-weight: 700;
}

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

.nearby-section {
    padding-top: 1rem;
}

.legal-page {
    padding-bottom: 4rem;
    color: #0d1b2f;
}

.legal-page h1 {
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #0d1b2f;
}

.legal-content h2 {
    margin: 2rem 0 1rem;
    font-size: 1.35rem;
    color: #0d1b2f;
}

.legal-content p,
.legal-content li {
    color: #445468;
    line-height: 1.75;
}

.legal-content ol {
    padding-left: 1.25rem;
}

.legal-content ol ol {
    margin-top: 0.5rem;
}

.legal-content a {
    color: var(--accent-strong);
    font-weight: 600;
}

.legal-meta {
    color: #657386;
    font-weight: 600;
}

.legal-page .breadcrumbs ol {
    color: #657386;
}

.legal-page .breadcrumbs a {
    color: var(--accent-strong);
}

.legal-page .breadcrumbs a:hover {
    color: var(--accent);
}

.contact-section {
    padding-bottom: 5rem;
}

.contact-section-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 2rem;
    align-items: start;
}

.contact-section-intro h2 {
    color: #0d1b2f;
}

.contact-section-intro p {
    color: #526176;
    line-height: 1.7;
}

.contact-quick-list {
    display: grid;
    gap: 0.85rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.contact-quick-list li {
    display: grid;
    gap: 0.2rem;
    padding-top: 0.85rem;
    border-top: 1px solid #dce4ee;
}

.contact-quick-list span {
    color: #6c7a8d;
    font-size: 0.82rem;
}

.contact-quick-list a {
    color: var(--accent-strong);
    font-weight: 800;
}

.contact-form-card {
    padding: 1.75rem;
    border: 1px solid #dce4ee;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 18px 50px rgba(13, 27, 47, 0.07);
}

.contact-form-card h3 {
    margin-bottom: 1.25rem;
    color: #0d1b2f;
    font-size: 1.35rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-field {
    display: grid;
    gap: 0.45rem;
}

.form-field label {
    color: #0d1b2f;
    font-size: 0.92rem;
    font-weight: 700;
}

.form-field input:not([type="checkbox"]),
.form-field textarea {
    width: 100%;
    padding: 0.85rem 0.95rem;
    border: 1px solid #cfd9e6;
    border-radius: 14px;
    background: #fff;
    color: #0d1b2f;
    font: inherit;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input:not([type="checkbox"]):focus,
.form-field textarea:focus {
    border-color: #8eb8f3;
    box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.12);
    outline: none;
}

.form-field--invalid input:not([type="checkbox"]),
.form-field--invalid textarea {
    border-color: #d64545;
}

.form-field--invalid input:not([type="checkbox"]):focus,
.form-field--invalid textarea:focus {
    border-color: #d64545;
    box-shadow: 0 0 0 4px rgba(214, 69, 69, 0.12);
}

.form-field-error {
    margin: 0;
    color: #9b1c1c;
    font-size: 0.85rem;
    line-height: 1.45;
}

.form-alert--js {
    margin-bottom: 1rem;
}

.contact-form [type="submit"]:disabled {
    cursor: wait;
    opacity: 0.75;
}

.form-field textarea {
    resize: vertical;
    min-height: 140px;
}

.form-field--checkbox {
    margin-top: 0.25rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: #526176;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.55;
}

.checkbox-label input {
    width: 1rem;
    height: 1rem;
    margin-top: 0.2rem;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.checkbox-label span {
    display: block;
}

.checkbox-label a {
    color: var(--accent-strong);
    font-weight: 700;
}

.form-field--honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-alert {
    margin: 0 0 1rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    font-size: 0.95rem;
    line-height: 1.55;
}

.form-alert--success {
    border: 1px solid #b7e4c7;
    background: #edf9f1;
    color: #17653a;
}

.form-alert--error {
    border: 1px solid #f3c0c0;
    background: #fff1f1;
    color: #9b1c1c;
}

@media (max-width: 980px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .main-nav {
        flex-wrap: wrap;
    }

    .hero,
    .business-section,
    .contact-section-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        align-self: stretch;
    }

    .trust-strip,
    .service-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-grid,
    .coverage-grid,
    .coverage-grid--compact,
    .service-grid--compact,
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .brand img {
        width: 148px;
    }

    .site-top {
        border-bottom-color: #e8edf3;
    }

    .main-nav {
        gap: 0.9rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .contact-card,
    .service-card,
    .faq-grid article,
    .steps article,
    .business-section,
    .cta-section,
    .contact-form-card {
        padding: 1.25rem;
    }
}
