:root{--legacy-008080:#008080;--legacy-1a2634:#1a2634;--legacy-263238:#263238;--legacy-5f6f73:#5f6f73;--legacy-b8f2e6:#b8f2e6;--legacy-dcedea:#dcedea;--legacy-f6b44b:#f6b44b}
:root {
            --teal: var(--legacy-008080, #008080);
            --mint: var(--legacy-b8f2e6, #B8F2E6);
            --navy: var(--legacy-1a2634, #1A2634);
            --white: var(--color-background, #FFFFFF);
            --soft: var(--color-surface-alt, #F5FBFA);
            --text: var(--legacy-263238, #263238);
            --muted: var(--legacy-5f6f73, #5f6f73);
            --line: var(--legacy-dcedea, #DCEDEA);
            --gold: var(--legacy-f6b44b, #F6B44B);
        }

        * {
            box-sizing: border-box;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            line-height: 1.65;
            color: var(--text);
            margin: 0;
            padding: 0;
            background: var(--white);
            scroll-behavior: smooth;
        }

        .container {
            width: 92%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 18px;
        }

        h1, h2, h3, h4, h5 {
            color: var(--navy);
            line-height: 1.2;
            margin-top: 0;
        }

        p {
            margin-top: 0;
            color: var(--muted);
        }

        a {
            color: var(--teal);
        }

        .btn {
            background: var(--teal);
            color: var(--white);
            padding: 15px 34px;
            text-decoration: none;
            border-radius:var(--radius-pill, 999px);
            font-weight: 700;
            display: inline-block;
            transition: 0.3s ease;
            border: 2px solid var(--teal);
            cursor: pointer;
            box-shadow: 0 12px 28px rgba(0,128,128,0.22);
        }

        .btn:hover {
            background: var(--navy);
            border-color: var(--navy);
            transform: translateY(-2px);
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(184,242,230,0.9);
            color: var(--navy);
            padding: 8px 14px;
            border-radius:var(--radius-pill, 999px);
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 18px;
        }

        .hero {
            background:
                linear-gradient(135deg, rgba(26,38,52,0.95), rgba(0,128,128,0.82)),
                url("/media/2025/12/Move-out-cleaning-services-by-hellocleaners.us_-1.png") center/cover no-repeat;
            padding: 92px 0;
            position: relative;
            overflow: hidden;
        }

        .hero:after {
            content: "";
            position: absolute;
            right: -120px;
            top: -120px;
            width: 320px;
            height: 320px;
            background: rgba(184,242,230,0.18);
            border-radius: 50%;
        }

        .hero-flex {
            display: flex;
            align-items: center;
            gap: 42px;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .hero-left {
            flex: 1;
            min-width: 300px;
        }

        .hero-right {
            flex: 1;
            min-width: 300px;
        }

        .hero h1 {
            font-size: clamp(2.35rem, 5vw, 4.25rem);
            color: var(--white);
            margin-bottom: 20px;
            max-width: 820px;
        }

        .hero p {
            color: rgba(255,255,255,0.92);
            font-size: 19px;
            max-width: 720px;
            margin-bottom: 28px;
        }

        .hero-right img {
            width: 100%;
            border-radius:var(--radius-xl, 24px);
            box-shadow: 0 24px 55px rgba(0,0,0,0.28);
            border: 6px solid rgba(255,255,255,0.22);
        }

        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 28px;
        }

        .hero-badges span {
            color: var(--white);
            background: rgba(255,255,255,0.14);
            border: 1px solid rgba(255,255,255,0.2);
            padding: 9px 13px;
            border-radius:var(--radius-pill, 999px);
            font-size: 14px;
            font-weight: 700;
        }

        .section-padding {
            padding: 78px 0;
        }

        .grey-bg {
            background: var(--soft);
        }

        .center {
            max-width: 920px;
            margin: 0 auto;
            text-align: center;
        }

        .center p {
            font-size: 18px;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
            gap: 24px;
            margin-top: 38px;
        }

        .card {
            background: var(--white);
            padding: 30px;
            border-radius:var(--radius-xl, 22px);
            box-shadow: 0 12px 32px rgba(26,38,52,0.08);
            border: 1px solid var(--line);
            border-top: 5px solid var(--teal);
        }

        .card h3,
        .card h4,
        .card h5 {
            margin-bottom: 12px;
        }

        .card p {
            margin-bottom: 0;
        }

        .split {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 46px;
            align-items: center;
        }

        .split img {
            width: 100%;
            border-radius:var(--radius-xl, 24px);
            box-shadow: 0 20px 48px rgba(26,38,52,0.12);
        }

        .check-list {
            list-style: none;
            padding: 0;
            margin: 24px 0 30px;
        }

        .check-list li {
            margin-bottom: 14px;
            padding-left: 34px;
            position: relative;
            color: var(--text);
        }

        .check-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            width: 23px;
            height: 23px;
            border-radius: 50%;
            background: var(--mint);
            color: var(--teal);
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .services-grid,
        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
            margin-top: 28px;
        }

        .service-item,
        .location-item {
            background: var(--white);
            padding: 18px;
            border: 1px solid var(--line);
            border-radius:var(--radius-lg, 16px);
            text-align: center;
            font-weight: 700;
            box-shadow: 0 8px 22px rgba(26,38,52,0.06);
        }

        .service-item a {
            text-decoration: none;
            color: var(--navy);
        }

        .service-item:hover,
        .location-item:hover {
            border-color: var(--teal);
            transform: translateY(-2px);
            transition: 0.25s ease;
        }

        .local-stats {
            background: linear-gradient(135deg, var(--navy), var(--teal));
            color: var(--white);
            border-radius: 28px;
            padding: 42px;
            box-shadow: 0 20px 50px rgba(26,38,52,0.18);
        }

        .local-stats h2,
        .local-stats h3,
        .local-stats p {
            color: var(--white);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin-top: 28px;
        }

        .stat-box {
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius:var(--radius-lg, 18px);
            padding: 20px;
        }

        .stat-box strong {
            display: block;
            font-size: 26px;
            color: var(--mint);
            margin-bottom: 6px;
        }

        .apply-box {
            background: var(--white);
            border-radius:var(--radius-xl, 26px);
            padding: 34px;
            box-shadow: 0 18px 45px rgba(26,38,52,0.1);
            border: 1px solid var(--line);
        }

        .faq-item {
            margin-bottom: 18px;
            border: 1px solid var(--line);
            padding: 22px;
            border-radius:var(--radius-lg, 18px);
            background: var(--white);
        }

        .faq-item h4 {
            margin-bottom: 8px;
            color: var(--navy);
        }

        .faq-item p {
            margin-bottom: 0;
        }

        footer {
            background: var(--navy);
            color: var(--white);
            padding: 42px 0;
            text-align: center;
        }

        footer p {
            color: rgba(255,255,255,0.88);
            margin: 0;
        }

        .sticky-apply {
            position: fixed;
            right: 18px;
            bottom: 18px;
            z-index: 30;
        }

        @media (max-width: 860px) {
            .hero {
                padding: 68px 0;
            }

            .hero-flex {
                flex-direction: column-reverse;
                text-align: center;
            }

            .hero-badges {
                justify-content: center;
            }

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

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

            .local-stats {
                padding: 28px;
            }

            .sticky-apply {
                left: 14px;
                right: 14px;
                bottom: 14px;
            }

            .sticky-apply .btn {
                width: 100%;
                text-align: center;
            }
        }