:root {
    --ink: #111827;
    --muted: #5f6f7b;
    --soft: #eef7fb;
    --paper: #f8fbfd;
    --white: #ffffff;
    --line: #dce7ee;
    --blue: #0077c8;
    --blue-dark: #075985;
    --mint: #2fb8a6;
    --warning: #b45309;
    --danger: #b42318;
    --shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
    --radius: 8px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    overflow-wrap: anywhere;
}

p {
    margin: 0 0 1rem;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.08;
    font-weight: 780;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

h1 {
    font-size: clamp(2.45rem, 6vw, 5.4rem);
    max-width: 960px;
}

h2 {
    font-size: clamp(1.8rem, 3.7vw, 3rem);
}

h3 {
    font-size: 1.22rem;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: 12px;
    top: -80px;
    z-index: 100;
    padding: 10px 14px;
    background: var(--ink);
    color: var(--white);
    border-radius: var(--radius);
}

.skip-link:focus {
    top: 12px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(220, 231, 238, 0.9);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 74px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: max-content;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 0;
    background: transparent;
    overflow: visible;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1.03rem;
}

.brand small {
    color: var(--muted);
    font-size: 0.76rem;
}

.site-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 11px;
    border-radius: var(--radius);
    color: var(--muted);
    text-decoration: none;
    font-weight: 690;
    font-size: 0.94rem;
}

.site-nav a:hover,
.site-nav a.is-active {
    background: var(--soft);
    color: var(--ink);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 760;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.btn-small {
    min-height: 42px;
    padding: 0 14px;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(0, 119, 200, 0.24);
}

.btn-primary:hover {
    background: #0493f2;
}

.btn-secondary {
    background: var(--white);
    border-color: var(--line);
    color: var(--ink);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.42);
    color: var(--white);
}

.phone-links {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    vertical-align: middle;
}

.phone-links a {
    white-space: nowrap;
}

.inline-phone-links {
    margin-left: 8px;
}

.phone-buttons {
    gap: 12px;
}

.phone-buttons .btn {
    width: auto;
}

.hero {
    position: relative;
    min-height: 82vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--white);
    background: #0d1b24;
}

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

.hero-media img {
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(9, 20, 29, 0.86), rgba(9, 20, 29, 0.54) 52%, rgba(9, 20, 29, 0.12)),
        linear-gradient(180deg, rgba(9, 20, 29, 0.16), rgba(9, 20, 29, 0.86));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 120px 0 70px;
}

.hero p {
    max-width: 760px;
    font-size: clamp(1.04rem, 2vw, 1.32rem);
    color: rgba(255, 255, 255, 0.88);
}

.eyebrow {
    margin-bottom: 0.75rem;
    color: var(--blue-dark);
    font-weight: 830;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.hero .eyebrow,
.cta-band .eyebrow {
    color: #75d5ff;
}

.hero-actions,
.cta-actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-review {
    display: inline-grid;
    gap: 9px;
    max-width: min(100%, 680px);
    margin-top: 24px;
}

.hero-review-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.hero-review-avatars {
    display: flex;
    align-items: center;
    padding-left: 2px;
}

.hero-review-avatars img {
    width: 48px;
    height: 48px;
    border: 2px solid var(--white);
    border-radius: 50%;
    object-fit: cover;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-review-avatars img + img {
    margin-left: -12px;
}

.hero-review-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 850;
}

.hero-review-stars {
    color: #ffc107;
    font-size: 1.45rem;
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
    white-space: nowrap;
}

.hero-review-rating strong {
    font-size: 1.3rem;
    line-height: 1;
}

.hero .hero-review p {
    max-width: none;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1rem, 1.7vw, 1.16rem);
    line-height: 1.35;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 900px;
    margin-top: 40px;
}

.proof-item {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.proof-item strong {
    display: block;
    font-size: 1.45rem;
}

.proof-item span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.93rem;
}

.quick-strip {
    background: var(--ink);
    color: var(--white);
}

.quick-strip .container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 18px 0;
}

.quick-strip p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

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

.section {
    padding: 84px 0;
}

.section-soft {
    background: var(--paper);
}

.section-tight {
    padding: 58px 0;
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.6fr);
    gap: 44px;
    align-items: end;
    margin-bottom: 36px;
}

.section-head p {
    color: var(--muted);
    font-size: 1.05rem;
}

.section-head > *,
.split > *,
.cta-inner > *,
.card,
.stat,
.lead-form-wrap,
.lead-form,
.note-panel {
    min-width: 0;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 48px;
    align-items: center;
}

.split.align-start {
    align-items: start;
}

.rich-text > * + * {
    margin-top: 1.1rem;
}

.rich-text h2,
.rich-text h3 {
    margin-top: 2rem;
}

.rich-text ul,
.rich-text ol {
    padding-left: 1.25rem;
}

.rich-text li {
    margin-bottom: 0.55rem;
}

.lead {
    color: var(--muted);
    font-size: 1.14rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.card.pad {
    padding: 0;
    display: grid;
    align-content: start;
}

.card-photo {
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
    display: block;
    margin: 0 0 18px;
    border-bottom: 1px solid var(--line);
}

.card.pad > :not(.card-photo) {
    margin-left: 24px;
    margin-right: 24px;
}

.card.pad > :last-child:not(.card-photo) {
    margin-bottom: 24px;
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    color: var(--muted);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.testimonial-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.testimonial-profile {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 14px;
    align-items: center;
}

.testimonial-profile img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--soft);
}

.testimonial-location {
    margin: 0 0 2px;
    color: var(--ink);
    font-weight: 750;
}

.testimonial-stars {
    color: var(--warning);
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 1px;
}

.testimonial-card blockquote {
    margin: 0;
}

.testimonial-card blockquote p {
    margin: 0;
}

.testimonial-card cite {
    margin-top: auto;
    color: var(--ink);
    font-size: 0.94rem;
    font-style: normal;
    font-weight: 700;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--line);
}

.stat {
    background: var(--white);
    padding: 24px;
}

.stat strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.72rem;
    line-height: 1.1;
}

.stat span {
    color: var(--muted);
    font-size: 0.93rem;
}

.media-frame {
    position: relative;
    min-height: 420px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.media-frame img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.media-caption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
}

.steps {
    display: grid;
    gap: 14px;
    counter-reset: step;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.step::before {
    counter-increment: step;
    content: counter(step);
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: var(--ink);
    color: #75d5ff;
    font-weight: 850;
}

.step p {
    margin: 8px 0 0;
    color: var(--muted);
}

.note-panel {
    display: grid;
    gap: 16px;
    padding: 24px;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--white);
}

.note-panel h3 {
    color: var(--white);
}

.note-panel p,
.note-panel li {
    color: rgba(255, 255, 255, 0.76);
}

.note-panel ul {
    margin: 0;
    padding-left: 1.2rem;
}

.price-calculator {
    padding: 24px;
    display: grid;
    gap: 18px;
}

.price-calculator h2 {
    font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.price-calculator p {
    color: var(--muted);
}

.price-calculator form {
    display: grid;
    gap: 16px;
}

.price-result {
    display: grid;
    gap: 4px;
    padding: 18px;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--white);
}

.price-result span,
.price-result small {
    color: rgba(255, 255, 255, 0.72);
}

.price-result strong {
    font-size: clamp(1.55rem, 4vw, 2.4rem);
    line-height: 1.05;
}

.price-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.price-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    padding: 17px 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.price-table th {
    background: var(--ink);
    color: var(--white);
    font-size: 0.92rem;
}

.price-table tr:last-child td {
    border-bottom: 0;
}

.price-table td:first-child {
    font-weight: 780;
}

.lead-form label {
    display: grid;
    gap: 7px;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    font: inherit;
}

textarea {
    resize: vertical;
}

.lead-form {
    display: grid;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.lead-form-wrap {
    display: grid;
    gap: 16px;
}

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

.check {
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 10px;
    font-weight: 560;
}

.check input {
    width: 18px;
    min-height: 18px;
    margin-top: 4px;
}

.trap {
    display: none;
}

.alert {
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--soft);
}

.alert.error {
    color: var(--danger);
    border-color: #f4c7c3;
    background: #fff4f2;
}

.error-list {
    margin: 0;
    padding-left: 1.2rem;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.faq-list summary {
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 780;
}

.faq-list details p {
    padding: 0 20px 18px;
    color: var(--muted);
}

.article-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.article-card div {
    padding: 20px;
}

.article-card h3 a {
    text-decoration: none;
}

.meta {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.text-link {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    color: var(--blue-dark);
    font-weight: 760;
    text-decoration: none;
}

.text-link svg {
    width: 16px;
    height: 16px;
}

.page-hero {
    padding: 78px 0 44px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.page-hero h1 {
    color: var(--ink);
}

.page-hero p {
    max-width: 840px;
    color: var(--muted);
    font-size: 1.16rem;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 18px;
    color: var(--muted);
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--blue-dark);
    text-decoration: none;
}

.cta-band {
    padding: 54px 0;
    background: var(--ink);
    color: var(--white);
}

.cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.76);
}

.area-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.area-cloud a,
.tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: var(--radius);
    background: var(--soft);
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.91rem;
}

.source-list {
    display: grid;
    gap: 16px;
}

.source-item {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.source-item p {
    color: var(--muted);
}

.site-footer {
    padding: 54px 0 24px;
    background: #0e1820;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 34px;
}

.site-footer h2 {
    margin-bottom: 14px;
    font-size: 1rem;
}

.site-footer a,
.site-footer span {
    display: block;
    margin-bottom: 9px;
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
}

.site-footer a:hover {
    color: #75d5ff;
}

.site-footer .footer-phone-links {
    display: flex;
    margin-bottom: 9px;
}

.site-footer .footer-phone-links a {
    display: inline-flex;
    margin-bottom: 0;
}

.site-footer p,
.site-footer small {
    color: rgba(255, 255, 255, 0.68);
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}

@media (max-width: 980px) {
    .header-inner {
        grid-template-columns: auto auto auto;
        justify-content: space-between;
    }

    .nav-toggle {
        display: grid;
        place-items: center;
        order: 3;
    }

    .header-cta {
        order: 2;
    }

    .site-nav {
        position: fixed;
        inset: 74px 0 auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        max-height: calc(100vh - 74px);
        overflow-y: auto;
        padding: 14px 16px 22px;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        justify-content: center;
        min-height: 48px;
    }

    .section-head,
    .split,
    .cta-inner {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .testimonial-grid,
    .stats-row,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(var(--container), calc(100% - 24px));
    }

    h1 {
        font-size: 2.35rem;
    }

    h2 {
        font-size: 1.72rem;
    }

    .header-inner {
        min-height: 68px;
        gap: 10px;
    }

    .brand small {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .site-nav {
        inset: 68px 0 auto;
        max-height: calc(100vh - 68px);
    }

    .hero {
        min-height: 86vh;
    }

    .hero-content {
        padding: 96px 0 44px;
    }

    .hero-review {
        width: 100%;
    }

    .hero-review-row {
        gap: 12px;
    }

    .hero-review-avatars img {
        width: 44px;
        height: 44px;
    }

    .hero-review-stars {
        font-size: 1.18rem;
        letter-spacing: 1px;
    }

    .hero-review-rating strong {
        font-size: 1.16rem;
    }

    .quick-strip .container,
    .card-grid,
    .testimonial-grid,
    .stats-row,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .quick-strip .btn {
        width: 100%;
    }

    .section {
        padding: 62px 0;
    }

    .media-frame {
        min-height: 300px;
    }

    .media-caption {
        position: static;
        border-radius: 0;
        background: var(--white);
    }

    .footer-bottom {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .phone-buttons .btn {
        width: auto;
        flex: 1 1 220px;
    }

    .inline-phone-links {
        display: flex;
        margin-top: 8px;
        margin-left: 0;
    }

    .cta-actions,
    .hero-actions,
    .button-row {
        width: 100%;
    }
}
