:root {
            --ink: #102033;
            --ink-soft: #465568;
            --navy: #17324d;
            --accent: #16796f;
            --accent-dark: #0f625a;
            --paper: #fbfaf7;
            --white: #ffffff;
            --line: #e6e8e7;
            --soft: #f3f5f3;
            --soft-green: #edf6f3;
            --shadow: 0 18px 45px rgba(20, 39, 56, 0.08);
            --radius: 18px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--ink);
            background: var(--paper);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

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

        .container {
            width: min(1120px, calc(100% - 40px));
            margin: 0 auto;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-dark);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .eyebrow::before {
            content: "";
            width: 24px;
            height: 1px;
            background: currentColor;
        }

        h1,
        h2 {
            font-family: "Newsreader", Georgia, serif;
            color: var(--navy);
            font-weight: 600;
            letter-spacing: -0.035em;
            line-height: 1.02;
        }

        h1 {
            font-size: clamp(3rem, 6vw, 5.15rem);
        }

        h2 {
            font-size: clamp(2.15rem, 4vw, 3.25rem);
        }

        p {
            color: var(--ink-soft);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            min-height: 48px;
            padding: 0 20px;
            border-radius: 10px;
            border: 1px solid transparent;
            font-size: 0.95rem;
            font-weight: 700;
            transition: .2s ease;
            cursor: pointer;
        }

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

        .btn-primary:hover {
            background: #0f2942;
            transform: translateY(-1px);
        }

        .btn-secondary {
            border-color: #ccd3d7;
            background: rgba(255, 255, 255, .72);
            color: var(--navy);
        }

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

        .btn-call {
            position: relative;
            overflow: hidden;
            isolation: isolate;
            background: var(--accent);
            color: var(--white);
            border-color: var(--accent);
            box-shadow: 0 8px 20px rgba(22, 121, 111, .22);
        }

        .btn-call:hover {
            background: var(--accent-dark);
            border-color: var(--accent-dark);
            transform: translateY(-1px);
            box-shadow: 0 10px 24px rgba(15, 98, 90, .28);
        }

        .btn-call .phone-icon {
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .btn-call > span,
        .btn-call > svg {
            position: relative;
            z-index: 1;
        }

        /* Soft light sweep across call CTAs */
        .btn-call::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                105deg,
                transparent 35%,
                rgba(255, 255, 255, .28) 48%,
                rgba(255, 255, 255, .38) 52%,
                transparent 65%
            );
            transform: translateX(-130%);
            animation: cta-shimmer 4.8s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes cta-shimmer {
            0%,
            55% {
                transform: translateX(-130%);
            }
            75%,
            100% {
                transform: translateX(130%);
            }
        }

        /* Expanding halo that pulls the eye to primary CTAs */
        .cta-halo {
            position: relative;
            display: inline-flex;
            vertical-align: middle;
            border-radius: 12px;
        }

        .cta-halo::before,
        .cta-halo::after {
            content: "";
            position: absolute;
            inset: -5px;
            border-radius: 14px;
            border: 1.5px solid rgba(22, 121, 111, .42);
            pointer-events: none;
            animation: cta-ring 3.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
        }

        .cta-halo::after {
            animation-delay: 1.6s;
            border-color: rgba(22, 121, 111, .28);
        }

        @keyframes cta-ring {
            0% {
                opacity: .65;
                transform: scale(1);
            }
            100% {
                opacity: 0;
                transform: scale(1.14);
            }
        }

        /* Bottom CTA sits on navy — lighter rings */
        .cta .cta-halo::before,
        .cta .cta-halo::after {
            border-color: rgba(255, 255, 255, .4);
        }

        .cta .btn-call::after {
            background: linear-gradient(
                105deg,
                transparent 35%,
                rgba(23, 50, 77, .08) 48%,
                rgba(23, 50, 77, .14) 52%,
                transparent 65%
            );
        }

        .hero-canvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: .9;
        }

        .hero > .container {
            position: relative;
            z-index: 1;
        }

        .nav .cta-halo::before,
        .nav .cta-halo::after {
            /* Quieter in the sticky nav so it doesn't fight the content */
            animation-duration: 4.2s;
            border-color: rgba(22, 121, 111, .28);
        }

        .mobile-call-bar .btn-call::after {
            animation-duration: 5.5s;
        }

        .call-subtext {
            margin-top: 12px;
            color: #687483;
            font-size: .88rem;
            font-weight: 600;
        }

        .call-subtext a {
            color: var(--accent-dark);
            font-weight: 700;
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .nav-cta-short {
            display: none;
        }

        .mobile-call-bar {
            display: none;
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 30;
            padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
            background: rgba(251, 250, 247, .94);
            backdrop-filter: blur(14px);
            border-top: 1px solid var(--line);
            box-shadow: 0 -8px 30px rgba(20, 39, 56, .08);
        }

        .mobile-call-bar .btn {
            width: 100%;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 20;
            background: rgba(251, 250, 247, .9);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(230, 232, 231, .9);
        }

        .nav {
            height: 74px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 11px;
            color: var(--navy);
            font-weight: 800;
            letter-spacing: -0.03em;
            font-size: 1.08rem;
        }

        .brand-mark {
            width: 33px;
            height: 33px;
            border-radius: 9px;
            display: grid;
            place-items: center;
            background: var(--navy);
            color: var(--white);
            font-family: "Newsreader", Georgia, serif;
            font-size: 1rem;
            font-weight: 600;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            color: #536170;
            font-size: .93rem;
            font-weight: 600;
        }

        .nav-links a:not(.btn):hover {
            color: var(--navy);
        }

        .hero {
            position: relative;
            padding: 92px 0 76px;
            overflow: hidden;
            border-bottom: 1px solid var(--line);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
            gap: 72px;
            align-items: center;
        }

        .hero h1 {
            margin: 22px 0 24px;
            max-width: 790px;
        }

        .hero-copy>p {
            max-width: 680px;
            font-size: 1.13rem;
            line-height: 1.72;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 32px;
        }

        .hero-note {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 24px;
            color: #687483;
            font-size: .88rem;
            font-weight: 600;
        }

        .hero-note span {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .hero-note span::before {
            content: "✓";
            color: var(--accent);
            font-weight: 800;
        }

        .summary-card {
            position: relative;
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 22px;
            padding: 28px;
            box-shadow: var(--shadow);
        }

        .summary-card::before {
            content: "";
            position: absolute;
            inset: 0 auto 0 0;
            width: 4px;
            border-radius: 22px 0 0 22px;
            background: var(--accent);
        }

        .summary-label {
            color: #6b7682;
            font-size: .78rem;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .summary-price {
            margin-top: 7px;
            color: var(--navy);
            font-family: "Newsreader", Georgia, serif;
            font-size: 3rem;
            line-height: 1;
            letter-spacing: -.04em;
        }

        .summary-price small {
            font-family: "DM Sans", sans-serif;
            font-size: .9rem;
            font-weight: 600;
            color: #75818b;
            letter-spacing: 0;
        }

        .summary-card>p {
            margin-top: 10px;
            font-size: .93rem;
        }

        .report-preview {
            margin-top: 26px;
            padding-top: 22px;
            border-top: 1px solid var(--line);
        }

        .report-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 18px;
            color: var(--navy);
            font-size: .85rem;
            font-weight: 800;
        }

        .status-pill {
            color: var(--accent-dark);
            background: var(--soft-green);
            border: 1px solid #d8ebe6;
            border-radius: 100px;
            padding: 5px 9px;
            font-size: .7rem;
            letter-spacing: .02em;
        }

        .mini-row {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 14px;
            padding: 12px 0;
            border-bottom: 1px solid #eff0ef;
            font-size: .84rem;
        }

        .mini-row:last-child {
            border-bottom: 0;
        }

        .mini-row span:first-child {
            color: #6c7883;
        }

        .mini-row strong {
            color: var(--navy);
        }

        .trust-strip {
            padding: 30px 0;
            background: var(--white);
            border-bottom: 1px solid var(--line);
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
        }

        .trust-item {
            padding: 4px 24px;
            border-right: 1px solid var(--line);
        }

        .trust-item:first-child {
            padding-left: 0;
        }

        .trust-item:last-child {
            border-right: 0;
        }

        .trust-item strong {
            display: block;
            color: var(--navy);
            font-size: .98rem;
            margin-bottom: 3px;
        }

        .trust-item span {
            color: #71808b;
            font-size: .84rem;
        }

        section {
            padding: 88px 0;
        }

        .section-head {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: end;
            margin-bottom: 42px;
        }

        .section-head h2 {
            margin-top: 14px;
            max-width: 610px;
        }

        .section-head p {
            max-width: 520px;
            justify-self: end;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .service {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 26px;
        }

        .service-number {
            display: inline-flex;
            width: 34px;
            height: 34px;
            align-items: center;
            justify-content: center;
            border-radius: 9px;
            background: var(--soft-green);
            color: var(--accent-dark);
            font-size: .8rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .service h3 {
            color: var(--navy);
            font-size: 1.03rem;
            margin-bottom: 8px;
            letter-spacing: -.01em;
        }

        .service p {
            font-size: .91rem;
            line-height: 1.65;
        }

        .pricing {
            background: #f4f4f0;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }

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

        .price-card {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 18px;
            padding: 28px;
            display: flex;
            flex-direction: column;
            min-height: 100%;
        }

        .price-card.featured {
            border-color: #9fcac4;
            box-shadow: 0 12px 30px rgba(15, 98, 90, .08);
        }

        .popular {
            display: inline-flex;
            align-self: flex-start;
            margin-bottom: 13px;
            color: var(--accent-dark);
            background: var(--soft-green);
            border-radius: 999px;
            padding: 5px 9px;
            font-size: .7rem;
            font-weight: 800;
            letter-spacing: .03em;
            text-transform: uppercase;
        }

        .price-card h3 {
            color: var(--navy);
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .price {
            color: var(--navy);
            font-family: "Newsreader", Georgia, serif;
            font-size: 2.7rem;
            line-height: 1;
            letter-spacing: -.04em;
            margin-bottom: 12px;
        }

        .price small {
            color: #7c8790;
            font-family: "DM Sans", sans-serif;
            font-size: .82rem;
            font-weight: 600;
            letter-spacing: 0;
        }

        .price-card>p {
            font-size: .9rem;
            min-height: 48px;
        }

        .features {
            list-style: none;
            margin: 22px 0 26px;
            padding-top: 20px;
            border-top: 1px solid var(--line);
            flex: 1;
        }

        .features li {
            position: relative;
            padding: 7px 0 7px 24px;
            color: #4e5b69;
            font-size: .89rem;
        }

        .features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 800;
        }

        .price-card .btn {
            width: 100%;
        }

        .pricing-note {
            margin-top: 22px;
            text-align: center;
            color: #77828c;
            font-size: .86rem;
        }

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

        .process-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .process-step {
            padding: 8px 10px 8px 0;
        }

        .process-step .line {
            width: 100%;
            height: 2px;
            background: #dfe4e4;
            position: relative;
            margin-bottom: 24px;
        }

        .process-step .line::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent);
        }

        .process-step strong {
            display: block;
            color: var(--navy);
            margin-bottom: 7px;
            font-size: 1rem;
        }

        .process-step p {
            font-size: .9rem;
        }

        .cta {
            padding: 72px 0;
        }

        .cta-box {
            display: grid;
            grid-template-columns: 1.25fr .75fr;
            gap: 40px;
            align-items: center;
            background: var(--navy);
            color: var(--white);
            border-radius: 24px;
            padding: 48px;
            overflow: hidden;
            position: relative;
        }

        .cta-box::after {
            content: "";
            position: absolute;
            width: 220px;
            height: 220px;
            border: 1px solid rgba(255, 255, 255, .13);
            border-radius: 50%;
            right: -80px;
            top: -90px;
        }

        .cta-box h2 {
            color: var(--white);
            font-size: clamp(2.1rem, 4vw, 3.3rem);
        }

        .cta-box p {
            color: #c8d3dc;
            margin-top: 12px;
            max-width: 620px;
        }

        .cta-box p a {
            color: #e8f0f4;
            font-weight: 700;
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .est-side-cta {
            width: 100%;
            margin-bottom: 12px;
        }

        .cta-actions {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 12px;
            position: relative;
            z-index: 2;
        }

        .cta-actions .btn {
            min-width: min(100%, 280px);
        }

        .cta .btn-call {
            background: var(--white);
            color: var(--navy);
            border-color: var(--white);
            box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
        }

        .cta .btn-call:hover {
            background: #f0f2f2;
            border-color: #f0f2f2;
            color: var(--navy);
        }

        .cta .btn-secondary {
            border-color: rgba(255, 255, 255, .35);
            background: transparent;
            color: var(--white);
        }

        .cta .btn-secondary:hover {
            border-color: rgba(255, 255, 255, .7);
            background: rgba(255, 255, 255, .08);
            color: var(--white);
        }

        .cta-actions .call-subtext {
            color: #a8b6c2;
            text-align: right;
            margin-top: 0;
        }

        .cta-actions .call-subtext a {
            color: #e8f0f4;
        }

        .pricing-callout {
            margin-top: 28px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding: 22px 24px;
            background: var(--white);
            border: 1px solid #9fcac4;
            border-radius: 16px;
            box-shadow: 0 10px 28px rgba(15, 98, 90, .06);
        }

        .pricing-callout strong {
            display: block;
            color: var(--navy);
            font-size: 1.02rem;
            margin-bottom: 4px;
        }

        .pricing-callout p {
            font-size: .9rem;
            max-width: 520px;
        }

        .pricing-callout .btn,
        .pricing-callout .cta-halo {
            flex-shrink: 0;
        }

        .pricing-callout .cta-halo {
            align-self: center;
        }

        footer {
            border-top: 1px solid var(--line);
            padding: 34px 0 42px;
        }

        .footer-row {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
        }

        .footer-left p {
            margin-top: 10px;
            font-size: .82rem;
            max-width: 520px;
        }

        .footer-contact {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            color: #5d6b78;
            font-size: .84rem;
            font-weight: 600;
        }

        .copyright {
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid var(--line);
            color: #8a949d;
            font-size: .78rem;
        }

        @media (max-width: 900px) {

            .hero-grid,
            .section-head,
            .cta-box {
                grid-template-columns: 1fr;
            }

            .hero-grid {
                gap: 42px;
            }

            .section-head p {
                justify-self: start;
            }

            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 22px 0;
            }

            .trust-item:nth-child(2) {
                border-right: 0;
            }

            .trust-item:nth-child(3) {
                padding-left: 0;
            }

            .services-grid,
            .pricing-grid,
            .process-grid {
                grid-template-columns: 1fr;
            }

            .cta-actions {
                justify-content: flex-start;
            }
        }

        @media (max-width: 720px) {
            .container {
                width: min(100% - 28px, 1120px);
            }

            .nav {
                height: 66px;
            }

            .nav-links a:not(.btn) {
                display: none;
            }

            .nav-links {
                gap: 10px;
            }

            .nav-cta-full {
                display: none;
            }

            .nav-cta-short {
                display: inline;
            }

            .hero {
                padding: 64px 0 54px;
            }

            body {
                padding-bottom: 84px;
            }

            .mobile-call-bar {
                display: block;
            }

            .cta-actions {
                align-items: stretch;
                width: 100%;
            }

            .cta-actions .btn {
                min-width: 0;
                width: 100%;
            }

            .cta-actions .call-subtext {
                text-align: left;
            }

            .pricing-callout {
                flex-direction: column;
                align-items: stretch;
            }

            .pricing-callout .btn {
                width: 100%;
            }

            .hero h1 {
                font-size: clamp(2.75rem, 15vw, 4.3rem);
            }

            section {
                padding: 68px 0;
            }

            .trust-strip {
                padding: 26px 0;
            }

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

            .trust-item,
            .trust-item:nth-child(3) {
                border-right: 0;
                border-bottom: 1px solid var(--line);
                padding: 0 0 16px;
            }

            .trust-item:last-child {
                border-bottom: 0;
                padding-bottom: 0;
            }

            .section-head {
                margin-bottom: 30px;
                gap: 18px;
            }

            .summary-card {
                padding: 24px;
            }

            .cta-box {
                padding: 34px 26px;
            }

            .footer-row {
                align-items: flex-start;
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .brand span:last-child {
                display: none;
            }

            .hero-actions {
                flex-direction: column;
            }

            .hero-actions .btn,
            .hero-actions .cta-halo {
                width: 100%;
            }

            .hero-actions .cta-halo .btn {
                width: 100%;
            }

            .hero-note {
                gap: 10px 18px;
            }
        }

        /* Motion: initial states (only when JS enables motion) */
        html.motion-on .hero-animate,
        html.motion-on .reveal {
            opacity: 0;
            transform: translateY(18px);
            will-change: opacity, transform;
        }

        html.motion-on .hero-card-animate {
            opacity: 0;
            transform: translateY(22px) scale(0.985);
            will-change: opacity, transform;
        }

        @media (prefers-reduced-motion: reduce) {
            html.motion-on .hero-animate,
            html.motion-on .reveal,
            html.motion-on .hero-card-animate {
                opacity: 1;
                transform: none;
                will-change: auto;
            }

            .btn-call::after,
            .cta-halo::before,
            .cta-halo::after {
                animation: none;
            }

            .btn-call::after {
                display: none;
            }

            .cta-halo::before,
            .cta-halo::after {
                display: none;
            }

            .hero-canvas {
                display: none;
            }
        }

/* ——— Inner pages / SEO content ——— */
h3 {
    font-family: "Newsreader", Georgia, serif;
    color: var(--navy);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.page-hero {
    position: relative;
    padding: 72px 0 56px;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(22, 121, 111, 0.08), transparent 55%),
        radial-gradient(ellipse 50% 40% at 0% 100%, rgba(23, 50, 77, 0.05), transparent 50%),
        var(--paper);
}

.page-hero .eyebrow {
    margin-bottom: 0;
}

.page-hero h1 {
    margin: 18px 0 20px;
    max-width: 820px;
    font-size: clamp(2.4rem, 5vw, 3.75rem);
}

.page-hero .lede {
    max-width: 680px;
    font-size: 1.12rem;
    line-height: 1.72;
}

.page-hero .hero-actions {
    margin-top: 28px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 22px;
    color: #7a8794;
    font-size: 0.82rem;
    font-weight: 600;
}

.breadcrumb a:hover {
    color: var(--navy);
}

.breadcrumb span[aria-hidden="true"] {
    color: #b0b8c0;
}

.content-wrap {
    padding: 64px 0 40px;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 48px;
    align-items: start;
}

.prose {
    max-width: 720px;
}

.prose > * + * {
    margin-top: 1.15em;
}

.prose h2 {
    margin-top: 2.1em;
    margin-bottom: 0.55em;
    font-size: clamp(1.55rem, 2.8vw, 2rem);
    line-height: 1.15;
}

.prose h3 {
    margin-top: 1.6em;
    margin-bottom: 0.4em;
    font-size: 1.15rem;
}

.prose p,
.prose li {
    color: var(--ink-soft);
    font-size: 1.02rem;
    line-height: 1.72;
}

.prose ul,
.prose ol {
    padding-left: 1.25em;
}

.prose li + li {
    margin-top: 0.4em;
}

.prose strong {
    color: var(--ink);
    font-weight: 700;
}

.prose a:not(.btn) {
    color: var(--accent-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prose a:not(.btn):hover {
    color: var(--navy);
}

.prose .inline-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin: 1.5em 0;
}

.prose .soft-cta {
    margin: 1.75em 0;
    padding: 18px 20px;
    background: var(--soft-green);
    border: 1px solid #d8ebe6;
    border-radius: 14px;
    color: var(--ink-soft);
    font-size: 0.98rem;
}

.prose .soft-cta a {
    font-weight: 700;
}

.city-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
}

.city-list li {
    position: relative;
    padding-left: 22px;
    font-weight: 600;
    color: var(--navy) !important;
}

.city-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
}

.data-table-wrap {
    overflow-x: auto;
    margin: 1.4em 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.94rem;
}

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

.data-table th {
    background: var(--soft);
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

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

.data-table td {
    color: var(--ink-soft);
}

.data-table td strong {
    color: var(--navy);
}

.steps-list {
    counter-reset: step;
    list-style: none;
    padding-left: 0;
}

.steps-list li {
    counter-increment: step;
    position: relative;
    padding: 16px 0 16px 52px;
    border-bottom: 1px solid var(--line);
}

.steps-list li:last-child {
    border-bottom: 0;
}

.steps-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 16px;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    background: var(--soft-green);
    color: var(--accent-dark);
    font-size: 0.8rem;
    font-weight: 800;
}

.side-card {
    position: sticky;
    top: 96px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.side-card h2 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.side-card p {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.side-card .btn {
    width: 100%;
}

.side-card .side-links {
    list-style: none;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.side-card .side-links li + li {
    margin-top: 10px;
}

.side-card .side-links a {
    color: var(--accent-dark);
    font-size: 0.9rem;
    font-weight: 700;
}

.side-card .side-links a:hover {
    color: var(--navy);
}

.faq-section {
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.faq-list {
    max-width: 780px;
}

.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 68ch;
}

.blog-list {
    display: grid;
    gap: 18px;
}

.blog-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 28px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.blog-card:hover {
    border-color: #9fcac4;
    transform: translateY(-2px);
}

.blog-card .meta {
    color: #71808b;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-card h2 {
    font-size: 1.45rem;
    margin-bottom: 8px;
}

.blog-card p {
    font-size: 0.95rem;
}

.related-links {
    margin-top: 2em;
    padding-top: 1.4em;
    border-top: 1px solid var(--line);
}

.related-links h2 {
    font-size: 1.25rem !important;
    margin-top: 0 !important;
}

.related-links ul {
    list-style: none;
    padding-left: 0;
}

.related-links li + li {
    margin-top: 8px;
}

.article-meta {
    color: #71808b;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    margin-top: 14px;
}

.footer-nav a {
    color: #5d6b78;
    font-size: 0.84rem;
    font-weight: 600;
}

.footer-nav a:hover {
    color: var(--navy);
}

@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .side-card {
        position: static;
    }
}

@media (max-width: 720px) {
    .page-hero {
        padding: 52px 0 40px;
    }

    .content-wrap {
        padding: 44px 0 24px;
    }

    .city-list {
        grid-template-columns: 1fr;
    }
}

.hero-note a {
    color: var(--accent-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hero-note a:hover {
    color: var(--navy);
}

.service h3 a {
    color: inherit;
}

.service h3 a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.section-head p a {
    color: var(--accent-dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.section-head:not(:has(> :nth-child(2))) {
    grid-template-columns: 1fr;
}

.side-card .cta-halo {
    display: flex;
    width: 100%;
}

.side-card .cta-halo .btn {
    width: 100%;
}

.page-hero .hero-actions .cta-halo {
    display: inline-flex;
}

/* ——— Catch-up estimator ——— */
.estimator-hero {
    position: relative;
    padding: 56px 0 64px;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(ellipse 70% 55% at 0% 0%, rgba(22, 121, 111, 0.09), transparent 55%),
        radial-gradient(ellipse 45% 40% at 100% 20%, rgba(23, 50, 77, 0.06), transparent 50%),
        var(--paper);
}

.estimator-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 56px;
    align-items: start;
}

.estimator-copy h1 {
    margin: 18px 0 18px;
    font-size: clamp(2.35rem, 4.6vw, 3.6rem);
    max-width: 16ch;
}

.estimator-copy .lede {
    max-width: 42ch;
    font-size: 1.08rem;
    line-height: 1.7;
}

.estimator-trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 22px;
    list-style: none;
    color: var(--navy);
    font-size: 0.92rem;
    font-weight: 600;
}

.estimator-trust li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.estimator-trust li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 800;
}

.estimator-proof {
    margin-top: 22px;
    max-width: 42ch;
    font-size: 0.9rem;
}

.estimator-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 26px 26px 28px;
    box-shadow: var(--shadow);
    scroll-margin-top: 90px;
}

.estimator-panel h2 {
    font-size: clamp(1.55rem, 2.4vw, 1.85rem);
    margin-bottom: 6px;
}

.estimator-panel h2:focus {
    outline: none;
}

.estimator-panel h2:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

.est-progress-wrap {
    margin-bottom: 22px;
}

.est-progress-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #6b7682;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.est-progress-track {
    height: 4px;
    border-radius: 99px;
    background: #e7eceb;
    overflow: hidden;
}

.est-progress-fill {
    display: block;
    height: 100%;
    width: 0;
    background: var(--accent);
    transition: width 0.35s ease;
}

.est-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    list-style: none;
    margin-top: 10px;
    color: #8a949d;
    font-size: 0.75rem;
    font-weight: 700;
}

.est-dots li.is-active {
    color: var(--navy);
}

.est-dots li.is-done {
    color: var(--accent-dark);
}

.est-help,
.est-group-label {
    color: var(--ink-soft);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.est-group-label {
    margin-top: 18px;
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.est-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.est-chip {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-height: 72px;
    padding: 12px 14px;
    border: 1px solid #d5dbde;
    border-radius: 12px;
    background: var(--paper);
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.est-chip:hover {
    border-color: var(--navy);
    background: var(--white);
}

.est-chip:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(22, 121, 111, 0.18);
}

.est-chip:has(input:checked) {
    border-color: var(--accent-dark);
    background: var(--soft-green);
    box-shadow: inset 0 0 0 1px var(--accent);
}

.est-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.est-chip-label {
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
}

.est-chip-hint {
    color: #6b7682;
    font-size: 0.78rem;
    font-weight: 500;
}

.est-chips-compact {
    grid-template-columns: 1fr;
}

.est-chips-compact .est-chip {
    min-height: 0;
    flex-direction: row;
    align-items: center;
    padding: 10px 14px;
}

.est-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.est-kicker {
    color: var(--accent-dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.est-range {
    font-family: "Newsreader", Georgia, serif;
    color: var(--navy);
    font-size: clamp(2.4rem, 5vw, 3.3rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin: 4px 0 8px;
}

.est-summary {
    font-weight: 600;
    color: var(--navy);
}

.est-custom {
    margin-top: 10px;
    padding: 10px 12px;
    background: #fff7ea;
    border: 1px solid #ead8b4;
    border-radius: 10px;
    color: #6a5428;
    font-size: 0.88rem;
}

.est-result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.est-result-grid span {
    display: block;
    color: #6b7682;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.est-result-grid strong {
    display: block;
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 4px;
}

.est-result-grid p {
    font-size: 0.82rem;
}

.est-includes {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
    margin: 14px 0;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--navy);
}

.est-includes li::before {
    content: "✓ ";
    color: var(--accent);
}

.est-disclaimer {
    font-size: 0.82rem;
    margin-bottom: 8px;
}

.est-lead {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.est-lead h3,
.est-thanks h3 {
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.est-lead > p,
.est-thanks p {
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.est-field {
    display: block;
    margin: 12px 0 6px;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 700;
}

.est-field span {
    color: #7a8794;
    font-weight: 500;
}

.est-lead input[type="text"],
.est-lead input[type="email"],
.est-lead input[type="tel"] {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid #d5dbde;
    border-radius: 10px;
    background: var(--paper);
    color: var(--ink);
    font: inherit;
}

.est-lead input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(22, 121, 111, 0.16);
    background: var(--white);
}

.est-lead input[aria-invalid="true"] {
    border-color: #b42318;
    box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.12);
}

.est-error {
    color: #b42318;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 6px;
}

.est-hint {
    font-size: 0.82rem;
    margin-top: 6px;
}

.est-text-btn {
    border: 0;
    background: none;
    padding: 0;
    color: var(--accent-dark);
    font: inherit;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}

.est-submit {
    width: 100%;
    margin-top: 18px;
    min-height: 52px;
}

.est-privacy {
    margin-top: 10px;
    font-size: 0.78rem;
}

.est-privacy a {
    color: var(--accent-dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.est-honeypot {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

.est-thanks {
    margin-top: 18px;
    padding: 18px;
    background: var(--soft-green);
    border: 1px solid #c5ddd6;
    border-radius: 14px;
}

.est-thanks:focus {
    outline: none;
}

.est-noscript {
    padding: 12px 14px;
    background: #fff7ea;
    border-radius: 10px;
    margin-bottom: 16px;
}

.estimator-why {
    padding: 64px 0;
}

.estimator-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.estimator-why h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin-bottom: 12px;
}

.estimator-why a {
    color: var(--accent-dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.est-start {
    margin-top: 8px;
}

.est-start-label {
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.est-start-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.est-start-chips a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 8px 10px;
    border: 1px solid #d5dbde;
    border-radius: 10px;
    background: var(--paper);
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 700;
    text-align: center;
}

.est-start-chips a:hover {
    border-color: var(--accent-dark);
    background: var(--soft-green);
}

@media (max-width: 900px) {
    .estimator-hero-grid,
    .estimator-why-grid,
    .est-result-grid {
        grid-template-columns: 1fr;
    }

    .estimator-copy h1 {
        max-width: none;
    }
}

@media (max-width: 720px) {
    .estimator-hero {
        padding: 36px 0 40px;
    }

    .estimator-panel {
        padding: 20px 16px 22px;
    }

    .est-chips {
        grid-template-columns: 1fr;
    }

    .est-includes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .est-start-chips {
        grid-template-columns: 1fr;
    }
}

/* ——— 404 ——— */
.missing-hero {
    padding: 72px 0 56px;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(ellipse 70% 55% at 0% 0%, rgba(22, 121, 111, 0.09), transparent 55%),
        radial-gradient(ellipse 45% 40% at 100% 20%, rgba(23, 50, 77, 0.06), transparent 50%),
        var(--paper);
}

.missing-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.7fr);
    gap: 48px;
    align-items: center;
}

.missing-hero h1 {
    margin: 16px 0 18px;
    max-width: 14ch;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
}

.missing-hero .lede {
    max-width: 42ch;
    font-size: 1.08rem;
    line-height: 1.7;
}

.missing-note {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 26px;
    box-shadow: var(--shadow);
}

.missing-kicker {
    color: var(--accent-dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.missing-note p + p {
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.missing-note .btn {
    width: 100%;
}

.missing-links {
    padding: 64px 0 72px;
}

.missing-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.missing-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 100%;
    padding: 22px 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.missing-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.missing-card span {
    color: var(--accent-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.missing-card strong {
    color: var(--navy);
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.missing-card p {
    font-size: 0.88rem;
}

@media (max-width: 900px) {
    .missing-grid,
    .missing-card-grid {
        grid-template-columns: 1fr 1fr;
    }

    .missing-hero h1 {
        max-width: none;
    }
}

@media (max-width: 720px) {
    .missing-hero {
        padding: 44px 0 36px;
    }

    .missing-grid,
    .missing-card-grid {
        grid-template-columns: 1fr;
    }
}
