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

        :root {
            --primary: #1B3A5C;
            --primary-dark: #142d47;
            --primary-light: #e8eef4;
            --accent: #E8703A;
            --accent-dark: #d15f2d;
            --dark: #1a1a2e;
            --text: #4a4a5a;
            --text-light: #757575;
            --heading: #1a1a2e;
            --bg: #ffffff;
            --bg-light: #f8f9fb;
            --white: #ffffff;
            --green: #1f9d55;
            --gold: #f4c430;
            --cta-red: #D8232A;
            --cta-red-dark: #B11C22;
            --shadow: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
            --radius: 12px;
            --radius-sm: 8px;
        }

        html { scroll-behavior: smooth; width: 100%; max-width: 100vw; overflow-x: clip; }
        body { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); line-height: 1.6; background: var(--bg); width: 100%; max-width: 100vw; overflow-x: clip; font-size: 17px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        /* TOP STACK — wraps urgency strip + call bar; becomes sticky on mobile */
        .top-stack { position: relative; z-index: 50; }

        /* URGENCY STRIP (gold) */
        .urgency-strip { background: var(--cta-red); color: var(--white); text-align: center; font-size: 21px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; padding: 15px 20px; line-height: 1.3; }
        .urgency-strip .deadline { color: var(--white); font-weight: 900; text-decoration: underline; }
        @media (max-width: 600px) { .urgency-strip { font-size: 15px; padding: 10px 12px; letter-spacing: 0.02em; line-height: 1.25; } }
        @media (max-width: 400px) { .urgency-strip { font-size: 13.5px; padding: 9px 10px; } }

        /* TOP CALL BAR */
        .top-call-bar { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--primary); color: var(--white); padding: 10px 20px; font-weight: 600; font-size: 15px; }
        .top-call-bar i { color: var(--cta-red); }
        .top-call-bar span { letter-spacing: 0.3px; }

        /* HERO */
        .hero { position: relative; padding: 32px 0 60px; background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%); }
        .hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
        .hero-content { max-width: 600px; text-align: center; margin-left: auto; margin-right: auto; }
        h1 { font-family: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif; font-size: clamp(34px, 4.5vw, 52px); line-height: 1.05; font-weight: 800; color: var(--cta-red); margin-bottom: 18px; letter-spacing: -0.5px; font-variation-settings: 'opsz' 48; }
        h1 .accent { color: var(--cta-red); font-style: italic; }
        h2 { font-family: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif; letter-spacing: -0.02em; font-variation-settings: 'opsz' 32, 'wght' 800; }
        h2 .accent { font-style: italic; }
        h3 { font-family: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif; letter-spacing: -0.025em; }
        .hero-sub { font-size: 18px; line-height: 1.55; color: var(--text); margin-bottom: 24px; }
        .hero-photo-card { position: relative; border-radius: 16px; overflow: hidden; margin: 0 auto 22px; box-shadow: 0 12px 32px rgba(20,33,61,0.20), 0 2px 8px rgba(20,33,61,0.08); aspect-ratio: 4/3; max-width: 360px; width: 100%; }
        .hero-photo-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
        .hero-photo-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 14px; background: linear-gradient(180deg, transparent 0%, rgba(20,33,61,0.92) 100%); color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: 0.2px; }
        .hero-photo-caption strong { font-weight: 800; }
        .btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 18px 32px; border-radius: var(--radius); font-weight: 700; font-size: 16px; cursor: pointer; border: none; transition: transform 0.15s, box-shadow 0.15s; min-height: 56px; }
        .btn-accent { background: var(--cta-red); color: var(--white); box-shadow: 0 6px 18px rgba(216,35,42,0.35); }
        .btn-accent:hover { background: var(--cta-red-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(216,35,42,0.4); }

        /* HERO FORM */
        .hero-form-card { background: var(--white); border-radius: 18px; padding: 28px; box-shadow: var(--shadow-lg); border: 1px solid #EDE6DE; }
        .hero-form-card h2 { font-size: 22px; font-weight: 800; color: var(--heading); margin-bottom: 6px; }
        .hero-form-card .form-sub { font-size: 16px; color: var(--text-light); margin-bottom: 18px; line-height: 1.5; }
        .form-group { margin-bottom: 12px; }
        .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 5px; }
        .form-group input, .form-group select { width: 100%; padding: 14px 16px; border: 1.5px solid #d9dde4; border-radius: var(--radius-sm); font-size: 16px; font-family: inherit; transition: border-color 0.15s, box-shadow 0.15s; background: #fafbfc; min-height: 48px; }
        .form-group input:focus, .form-group select:focus { outline: none; border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 3px rgba(27,58,92,0.1); }
        .form-tiny { font-size: 12px; color: var(--text-light); margin-top: 10px; line-height: 1.5; }
        .form-tiny a { color: var(--primary); text-decoration: underline; }
        .form-error { color: #c0392b; font-size: 14px; padding: 10px 12px; background: #fef2ef; border-radius: 8px; margin-top: 10px; display: none; }
        .form-honeypot { position: absolute; left: -9999px; }

        /* SECTION BASICS */
        section { padding: 64px 0; }
        section.alt { background: var(--bg-light); }
        h2.section-title { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; color: var(--heading); margin-bottom: 14px; letter-spacing: -0.4px; text-align: center; line-height: 1.15; }
        h2.section-title .accent { color: var(--accent); }
        .section-sub { font-size: 17px; color: var(--text); text-align: center; max-width: 640px; margin: 0 auto 44px; }

        /* HOW IT WORKS */
        .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
        .step { text-align: center; padding: 28px 22px; background: var(--white); border-radius: var(--radius); border: 1px solid #ecf0f5; }
        .step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: var(--white); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; margin-bottom: 16px; }
        .step h3 { font-size: 19px; color: var(--heading); margin-bottom: 8px; font-weight: 700; }
        .step p { font-size: 15px; color: var(--text); }

        /* MEET VJ */
        .meet-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: center; }
        .meet-photo { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
        .meet-photo img { width: 100%; height: 100%; object-fit: cover; }
        .meet-text h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: var(--heading); margin-bottom: 16px; letter-spacing: -0.4px; line-height: 1.15; text-align: center; }
        .meet-text h2 .accent { color: var(--accent); }
        .meet-text p { font-size: 16px; line-height: 1.7; color: var(--text); margin-bottom: 14px; }
        .meet-sign { font-style: italic; color: var(--primary); font-weight: 600; margin-top: 16px; }

        /* OFFER BLOCK */
        .offer-card { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); border-radius: 18px; padding: 44px 36px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: center; }
        .offer-card h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 800; line-height: 1.15; margin-bottom: 14px; letter-spacing: -0.3px; }
        .offer-card h2 .accent { color: #ffb37a; }
        .offer-card .offer-list { list-style: none; padding: 0; margin: 16px 0 0; }
        .offer-card .offer-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 16px; line-height: 1.5; }
        .offer-card .offer-list i { color: var(--gold); margin-top: 4px; }
        .offer-cta { background: var(--white); color: var(--primary); border-radius: 14px; padding: 28px; text-align: center; }
        .offer-cta .big-price { font-size: 36px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 4px; }
        .offer-cta .price-sub { font-size: 14px; color: var(--text-light); margin-bottom: 18px; }
        .offer-cta .btn { width: 100%; }

        /* REVIEWS MARQUEE */
        .review-marquee { overflow: hidden; position: relative; padding: 8px 0; mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%); }
        .review-track { display: flex; gap: 22px; width: max-content; animation: review-scroll 60s linear infinite; }
        .review-track { animation-duration: 90s !important; }
        @media (max-width: 768px) { .review { flex: 0 0 280px !important; } }
        .review-marquee:hover .review-track { animation-play-state: paused; }
        @keyframes review-scroll { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 11px)); } }
        .review { flex: 0 0 360px; background: var(--white); border-radius: 16px; border: 1px solid #ecf0f5; box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; }
        .review-photo { aspect-ratio: 4/3; overflow: hidden; background: #e8e8e8; }
        .review-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .review-body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
        .review-stars { color: var(--gold); margin-bottom: 10px; font-size: 16px; }
        .review-text { font-size: 15px; line-height: 1.6; color: var(--text); margin-bottom: 16px; flex: 1; }
        .review-attrib { display: flex; flex-direction: column; gap: 2px; border-top: 1px solid #ecf0f5; padding-top: 14px; }
        .review-name { font-weight: 800; font-size: 15px; color: var(--heading); }
        .review-place { font-size: 13px; color: var(--text-light); }

        /* CTA BAND */
        .cta-band { background: var(--accent); color: var(--white); padding: 56px 0; text-align: center; }
        @media (max-width: 600px) { .cta-band { padding: 40px 0; } .cta-band h2 { font-size: 26px; } .cta-band p { font-size: 15px; margin-bottom: 22px; } }
        .cta-band h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; margin-bottom: 12px; line-height: 1.15; }
        .cta-band p { font-size: 17px; margin-bottom: 28px; opacity: 0.95; max-width: 580px; margin-left: auto; margin-right: auto; }
        .cta-band .btn { background: var(--cta-red); color: var(--white); font-size: 17px; padding: 18px 36px; box-shadow: 0 6px 18px rgba(0,0,0,0.18); }
        .cta-band .btn:hover { background: var(--cta-red-dark); }

        /* HANDOVER */
        .handover-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
        .handover-photo { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
        .handover-photo img { width: 100%; height: 100%; object-fit: cover; }
        .handover-text h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: var(--heading); margin-bottom: 18px; letter-spacing: -0.3px; line-height: 1.15; text-align: center; }
        .handover-list { list-style: none; padding: 0; }
        .handover-list li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; font-size: 16px; line-height: 1.55; color: var(--text); }
        .handover-list i { color: var(--green); font-size: 18px; margin-top: 4px; flex-shrink: 0; }

        /* SERVICE AREA */
        .area-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 760px; margin: 0 auto; }
        .area-chip { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; background: var(--white); border: 1.5px solid #ecf0f5; border-radius: 999px; font-weight: 700; color: var(--primary); font-size: 15px; box-shadow: 0 2px 6px rgba(0,0,0,0.04); }
        .area-chip i { color: var(--accent); font-size: 14px; }
        .area-note { text-align: center; font-size: 14px; color: var(--text-light); margin-top: 24px; }
        .area-note strong { color: var(--primary); }

        /* FAQ */
        .faq-list { max-width: 780px; margin: 0 auto; }
        .faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 12px; border: 1px solid #ecf0f5; overflow: hidden; }
        .faq-item summary { padding: 20px 24px; cursor: pointer; font-weight: 700; color: var(--heading); font-size: 16px; list-style: none; position: relative; padding-right: 56px; }
        .faq-item summary::-webkit-details-marker { display: none; }
        .faq-item summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 24px; color: var(--accent); font-weight: 400; transition: transform 0.2s; }
        .faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
        .faq-item p { padding: 0 24px 22px; font-size: 15px; line-height: 1.65; color: var(--text); }

        /* FOOTER */
        footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 40px 0 24px; font-size: 14px; }
        footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; }
        footer a { color: rgba(255,255,255,0.9); }
        footer a:hover { color: var(--white); }
        .footer-phone { font-weight: 700; color: var(--white); }

        /* FLOATING CALL BUTTON — desktop only (mobile uses bottom sticky bar) */
        .float-call-btn { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; border-radius: 50%; background: var(--cta-red); color: var(--white); display: none; align-items: center; justify-content: center; font-size: 24px; box-shadow: 0 6px 24px rgba(0,0,0,0.25); z-index: 100; }
        .float-call-btn.visible { display: flex; }
        @media (max-width: 920px) { .float-call-btn { display: none !important; } }

        /* MOBILE STICKY BOTTOM BAR — Call + Get Quote */
        .mobile-bottom-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99; background: var(--white); box-shadow: 0 -4px 18px rgba(0,0,0,0.12); padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 10px; border-top: 1px solid #ecf0f5; }
        .mobile-bottom-bar a, .mobile-bottom-bar button { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 10px; min-height: 56px; border-radius: 12px; font-weight: 800; font-size: 16px; letter-spacing: 0.02em; text-decoration: none; border: 0; cursor: pointer; font-family: inherit; }
        .mobile-bottom-bar .mbb-call { background: var(--cta-red); color: var(--white); }
        .mobile-bottom-bar .mbb-quote { background: var(--cta-red); color: var(--white); }
        .mobile-bottom-bar i { font-size: 16px; }
        @media (max-width: 920px) {
            .mobile-bottom-bar { display: flex; }
            /* Add bottom padding so the bar doesn't cover the footer */
            body { padding-bottom: 76px; }
        }

        /* RESPONSIVE */
        @media (max-width: 920px) {
            /* Sticky top stack on mobile (urgency strip + call bar stay at top during scroll) */
            .top-stack { position: sticky; top: 0; }
            .hero { padding: 24px 0 40px; }
            .hero-grid { grid-template-columns: 1fr; gap: 32px; }
            .hero-form-card { padding: 22px; }
            .steps-grid { grid-template-columns: 1fr; gap: 16px; }
            .meet-grid { grid-template-columns: 1fr; gap: 28px; }
            .meet-photo { aspect-ratio: 4/3; max-width: 420px; margin: 0 auto; }
            .offer-card { grid-template-columns: 1fr; padding: 32px 24px; }
            .handover-grid { grid-template-columns: 1fr; gap: 28px; }
            .handover-photo { aspect-ratio: 4/3; max-width: 520px; margin: 0 auto; }
            section { padding: 48px 0; }
        }
        @media (max-width: 520px) {
            h1 { font-size: clamp(28px, 7.4vw, 34px); }
            .top-call-bar { font-size: 13px; padding: 8px 14px; }
            .top-call-bar span { font-size: 13px; }
        }

        /* SERVICES WE FIT */
        .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .service-card { padding: 28px 24px; background: var(--white); border-radius: var(--radius); border: 1px solid #ecf0f5; text-align: left; transition: transform 0.15s, box-shadow 0.15s; }
        .service-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
        .service-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(216,35,42,0.08); color: var(--cta-red); display: inline-flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
        .service-card h3 { font-size: 19px; color: var(--heading); margin-bottom: 8px; font-weight: 800; letter-spacing: -0.2px; }
        .service-card p { font-size: 15px; color: var(--text); line-height: 1.55; }
        @media (max-width: 920px) { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
        @media (max-width: 520px) { .services-grid { grid-template-columns: 1fr; } }

        /* FINANCE */
        .finance-card { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); border-radius: 18px; padding: 44px 36px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center; }
        .finance-eyebrow { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
        .finance-card h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 800; line-height: 1.15; margin-bottom: 14px; letter-spacing: -0.3px; }
        .finance-card h2 .accent { color: var(--gold); }
        .finance-left p { font-size: 17px; opacity: 0.92; line-height: 1.55; margin-bottom: 18px; }
        .finance-list { list-style: none; padding: 0; }
        .finance-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 8px; font-size: 15px; }
        .finance-list i { color: var(--gold); margin-top: 4px; }
        .finance-example { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.18); border-radius: 14px; padding: 22px; }
        .finance-example-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; margin-bottom: 14px; }
        .finance-example-row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
        .finance-example-row:last-of-type { border-bottom: none; }
        .finance-example-key { font-size: 15px; opacity: 0.88; }
        .finance-example-val { font-size: 24px; font-weight: 800; }
        .finance-example-tiny { font-size: 11px; opacity: 0.7; line-height: 1.5; margin-top: 12px; }
        @media (max-width: 720px) { .finance-card { grid-template-columns: 1fr; padding: 32px 24px; } }

        /* INTER-CTA strips (Tradeall pattern) */
        .inter-cta { background: var(--white); padding: 48px 0; text-align: center; border-top: 1px solid rgba(20,33,61,0.06); border-bottom: 1px solid rgba(20,33,61,0.06); }
        .inter-cta__inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
        .inter-cta__phone { font-size: 15px; color: var(--text-light); }
        .inter-cta__phone a { color: var(--cta-red); font-weight: 700; text-decoration: none; }
        .inter-cta__phone a:hover { text-decoration: underline; }
        @media (max-width: 600px) { .inter-cta { padding: 36px 0; } }

        /* VS-SECTION (Tradeall table pattern) */
        .vs-section { background: var(--bg-light); padding: 56px 0 48px; }
        .vs-header { text-align: center; max-width: 720px; margin: 0 auto 28px; padding: 0 20px; }
        .vs-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--primary-dark); border: 1.5px solid rgba(20,33,61,0.22); font-weight: 700; font-size: 12px; padding: 5px 14px; border-radius: 999px; letter-spacing: 0.6px; text-transform: uppercase; margin-bottom: 14px; }
        .vs-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(24px, 3vw, 32px); font-weight: 800; color: var(--primary-dark); margin: 0 0 10px; letter-spacing: -0.02em; line-height: 1.15; }
        .vs-table { max-width: 920px; margin: 0 auto; background: var(--white); border-radius: 14px; box-shadow: 0 6px 20px rgba(20,33,61,0.08); overflow: hidden; }
        .vs-headers { display: grid; grid-template-columns: 1fr 1fr; background: var(--primary-dark); color: var(--white); }
        .vs-header-cell { padding: 14px 22px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px; }
        .vs-header-cell--them { color: rgba(255,255,255,0.6); border-right: 1px solid rgba(255,255,255,0.1); }
        .vs-header-cell--us { color: var(--accent); }
        .vs-row { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid rgba(20,33,61,0.08); }
        .vs-row:last-child { border-bottom: none; }
        .vs-cell { padding: 14px 20px; font-size: 15px; line-height: 1.45; display: flex; align-items: flex-start; gap: 10px; }
        .vs-cell--them { color: var(--cta-red); border-right: 1px solid rgba(20,33,61,0.08); background: rgba(216,35,42,0.04); }
        .vs-cell--us { color: var(--text); font-weight: 600; }
        .vs-icon { flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; }
        .vs-icon--x { color: var(--cta-red); }
        .vs-icon--check { color: #10A47A; }
        .vs-text { flex: 1; }
        @media (max-width: 720px) { .vs-table { margin: 0 16px; } .vs-headers { display: none; } .vs-row { grid-template-columns: 1fr; padding: 10px 0; } .vs-cell { padding: 8px 16px; font-size: 14.5px; border-right: 0 !important; } .vs-cell--them { background: transparent; } }

        /* Steps grid 4-up (Tradeall process pattern, was 3-up) */
        .steps-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .steps-grid-4 .step h3 small { display: block; font-size: 13px; font-weight: 600; color: var(--text-light); margin-top: 4px; }
        @media (max-width: 920px) { .steps-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
        @media (max-width: 520px) { .steps-grid-4 { grid-template-columns: 1fr; } }

        /* OUR PROMISE TRUST BAND (Tradeall pattern) */
        .promise-section { background: var(--white); padding: 40px 0 32px; }
        .cred-section { text-align: center; max-width: 600px; margin: 0 auto 20px; }
        .cred-section__eyebrow { display: inline-block; background: transparent; color: var(--primary-dark); border: 1.5px solid rgba(20,33,61,0.22); font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; margin-bottom: 10px; }
        .cred-section__title { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; color: var(--primary-dark); margin: 0 0 4px; letter-spacing: -0.02em; }
        .cred-section__sub { font-size: 13.5px; color: var(--text-light); margin: 0; line-height: 1.5; }
        .promise-band { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); color: #fff; border-radius: 14px; padding: 20px 22px; box-shadow: 0 6px 20px rgba(20,33,61,0.15); margin-top: 18px; }
        .promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
        .credential { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: #ffffff; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.18); border: 1px solid rgba(255,255,255,0.2); position: relative; }
        .credential__seal { width: 46px; height: 46px; flex-shrink: 0; background: linear-gradient(135deg, var(--gold) 0%, #d99e1e 100%); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(244,196,48,0.35); border: 2px solid #fff; outline: 1px solid var(--gold); }
        .credential__seal svg { width: 22px; height: 22px; }
        .credential__body { flex: 1; min-width: 0; }
        .credential__eyebrow { font-size: 9.5px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-light); margin-bottom: 2px; line-height: 1; }
        .credential__title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; font-weight: 800; color: var(--primary-dark); line-height: 1; letter-spacing: -0.01em; margin-bottom: 4px; }
        .credential__meta { font-size: 11px; color: var(--text-light); font-weight: 600; line-height: 1.3; }
        @media (max-width: 720px) { .promise-grid { grid-template-columns: 1fr; gap: 10px; } }

        /* BRAND CARDS (boiler brand grid — FHC pattern) */
        .brand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
        .brand-card { background: var(--white); border-radius: 14px; border: 1px solid #EDE6DE; padding: 28px; }
        .brand-chip { display: inline-block; background: var(--primary-dark); color: var(--white); padding: 5px 12px; border-radius: 8px; font-size: 11px; font-weight: 800; letter-spacing: 0.6px; margin-bottom: 14px; }
        .brand-heading { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; font-weight: 800; color: var(--primary-dark); margin-bottom: 18px; line-height: 1.3; letter-spacing: -0.01em; }
        .brand-image-card { background: linear-gradient(180deg, #e9ecf2 0%, #d8dde6 100%); border: 1px solid #d0d5de; border-radius: 12px; padding: 32px; display: flex; align-items: center; justify-content: center; min-height: 220px; margin-bottom: 18px; }
        .brand-image-card img { max-height: 200px; max-width: 100%; object-fit: contain; display: block; }
        .brand-benefits { list-style: none; padding: 0; }
        .brand-benefits li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.5; color: var(--text); margin-bottom: 10px; }
        .brand-benefits i { color: var(--green); margin-top: 4px; font-size: 13px; flex-shrink: 0; }
        @media (max-width: 540px) { .brand-grid { grid-template-columns: 1fr; gap: 16px; } .brand-card { padding: 22px; } .brand-image-card { min-height: 180px; padding: 24px; } }

        /* INTER-CTA BUTTON (large prominent — Tradeall pattern) */
        .inter-cta__btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--cta-red); color: var(--white); font-size: 17px; font-weight: 800; padding: 18px 32px; border-radius: 12px; text-decoration: none; box-shadow: 0 6px 18px rgba(216,35,42,0.35), 0 0 0 6px rgba(216,35,42,0.08); transition: transform 0.15s, box-shadow 0.15s, background 0.15s; font-family: 'Bricolage Grotesque', sans-serif; letter-spacing: -0.01em; width: 100%; max-width: 420px; }
        .inter-cta__btn:hover { background: var(--cta-red-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(216,35,42,0.45), 0 0 0 8px rgba(216,35,42,0.10); }
        @media (max-width: 600px) { .inter-cta__btn { font-size: 16px; padding: 16px 24px; } }

        /* RECENT INSTALLS SWIPE GALLERY */
        .install-section { padding: 56px 0 48px; background: var(--bg-light); }
        .install-swipe-wrap { max-width: 100%; }
        .install-swipe { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 8px 24px 18px; scrollbar-width: thin; scrollbar-color: #d8dce6 transparent; }
        .install-swipe::-webkit-scrollbar { height: 8px; }
        .install-swipe::-webkit-scrollbar-track { background: transparent; }
        .install-swipe::-webkit-scrollbar-thumb { background: #d8dce6; border-radius: 8px; }
        .install-card { flex: 0 0 340px; scroll-snap-align: start; border-radius: 14px; overflow: hidden; box-shadow: 0 6px 20px rgba(20,33,61,0.10); background: var(--white); border: 1px solid #EDE6DE; display: flex; flex-direction: column; }
        .install-card-photo { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
        .install-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .install-card-body { padding: 14px 18px 16px; }
        .install-card-brand { display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase; color: var(--cta-red); margin-bottom: 4px; }
        .install-card-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 15px; font-weight: 800; color: var(--primary-dark); line-height: 1.3; margin-bottom: 4px; }
        .install-card-meta { font-size: 12.5px; color: var(--text-light); font-weight: 600; }
        .install-swipe-hint { text-align: center; font-size: 12px; color: var(--text-light); margin-top: 8px; letter-spacing: 0.4px; }
        @media (max-width: 720px) { .install-card { flex: 0 0 280px; } .install-swipe { padding: 8px 16px 18px; } }

        /* FOOTER (Tradeall 4-column pattern) */
        footer { background: #0A1428; color: rgba(255,255,255,0.65); padding: 48px 0 24px; font-size: 14px; }
        .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); }
        .footer-brand h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 12px; letter-spacing: -0.01em; }
        .footer-brand p { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.6); margin-bottom: 18px; max-width: 340px; }
        .footer-phone-big { display: inline-flex; align-items: center; gap: 8px; color: var(--white); font-weight: 800; font-size: 20px; text-decoration: none; font-family: 'Bricolage Grotesque', sans-serif; }
        .footer-phone-big svg { width: 18px; height: 18px; color: var(--cta-red); }
        .footer-hours { color: rgba(255,255,255,0.55); font-size: 13px; margin-top: 6px; }
        .footer-col h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 14px; font-weight: 800; color: var(--white); margin-bottom: 14px; letter-spacing: 0.4px; text-transform: uppercase; }
        .footer-col ul { list-style: none; padding: 0; margin: 0; }
        .footer-col li { font-size: 13.5px; line-height: 1.4; margin-bottom: 8px; color: rgba(255,255,255,0.65); }
        .footer-col li a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.15s; }
        .footer-col li a:hover { color: var(--white); }
        .footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 12px; color: rgba(255,255,255,0.45); }
        .footer-bottom a { color: rgba(255,255,255,0.9); text-decoration: none; }
        .footer-bottom a:hover { color: var(--white); }
        .footer-phone { font-weight: 700; color: var(--white); }
        .footer-fca { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 11px; line-height: 1.6; color: rgba(255,255,255,0.45); text-align: center; max-width: 900px; margin-left: auto; margin-right: auto; }
        @media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } .footer-brand { grid-column: 1 / -1; } }
        @media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; padding-bottom: 24px; } .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; text-align: left; } }

        /* M13 — hero photo tighter on tiny screens */
        @media (max-width: 400px) { .hero-photo-card { max-width: 280px; } }

        /* M14 — respect users who request reduced motion */
        @media (prefers-reduced-motion: reduce) {
            .review-track { animation: none !important; }
            html { scroll-behavior: auto; }
            .install-swipe { scroll-snap-type: none; }
            * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
        }

        /* Reusable utilities — replace inline styles */
        .btn-accent__submit { width: 100%; margin-top: 8px; }
        .btn--full { width: 100%; }
        .mt-8 { margin-top: 8px; }
        .mt-14 { margin-top: 14px; }
        .mt-18 { margin-top: 18px; }
        .mt-22 { margin-top: 22px; }
        .offer-card-lede { font-size: 17px; opacity: 0.95; line-height: 1.55; }
        .offer-cta__big-price { font-size: 54px; line-height: 1; font-weight: 900; }
        .offer-cta__big-price-suffix { font-size: 32px; font-weight: 800; }
        .offer-cta__or-call { font-size: 13px; color: var(--text-light); margin-top: 14px; }
        .offer-cta__or-call a { color: var(--primary); font-weight: 700; }
        .cta-band__or-call { margin-top: 18px; font-size: 15px; }
        .cta-band__or-call a { color: var(--white); font-weight: 800; text-decoration: underline; }
        .text-link-red { color: var(--cta-red); }

        /* .btn--call — white bg with red border for phone CTAs (re-added 2026-06-07 for IPE trigger card) */
        .btn--call { background: var(--white); color: var(--cta-red); border: 2px solid var(--cta-red); box-shadow: none; }
        .btn--call:hover { background: var(--cta-red); color: var(--white); }

        /* Footer service links that open the IPE modal */
        .footer-svc-link { background: none; border: 0; padding: 0; margin: 0; font: inherit; color: rgba(255,255,255,0.65); text-align: left; cursor: pointer; transition: color 0.15s; }
        .footer-svc-link:hover { color: var(--white); }

        /* WOLVERHAMPTON GEO PAGE — hero eyebrow + split-payments chip */
        .hero-eyebrow { display: inline-block; background: rgba(244,196,48,0.18); color: #8a6800; font-size: 11.5px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 14px; border: 1px solid rgba(244,196,48,0.5); }
        .hero-split-pay { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: var(--primary-dark); background: var(--primary-light); border: 1px solid rgba(27,58,92,0.18); padding: 9px 16px; border-radius: 10px; margin: 0 auto 22px; }
        .hero-split-pay i { color: var(--cta-red); }
        .hero-split-pay span { opacity: 0.35; }
        @media (max-width: 520px) { .hero-eyebrow { font-size: 10.5px; letter-spacing: 1.1px; padding: 5px 11px; } .hero-split-pay { font-size: 12.5px; padding: 8px 13px; } }

        /* SERVICES HUB (3-card showcase replacing brand cards on /wolverhampton) */
        .services-hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
        .services-hub-card { position: relative; padding: 34px 28px 28px; background: var(--white); border-radius: 16px; border: 1px solid #EDE6DE; box-shadow: 0 4px 16px rgba(20,33,61,0.06); display: flex; flex-direction: column; transition: transform 0.15s, box-shadow 0.15s; }
        .services-hub-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(20,33,61,0.10); }
        .services-hub-card--feature { border: 2px solid var(--cta-red); box-shadow: 0 8px 28px rgba(216,35,42,0.18); }
        .services-hub-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(216,35,42,0.10); color: var(--cta-red); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
        .services-hub-icon svg { width: 28px; height: 28px; }
        .services-hub-chip { position: absolute; top: 22px; right: 22px; display: inline-block; background: var(--primary-dark); color: var(--white); font-size: 10.5px; font-weight: 800; letter-spacing: 0.6px; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
        .services-hub-chip--gold { background: var(--gold); color: var(--dark); }
        .services-hub-chip--save { background: var(--cta-red); color: var(--white); box-shadow: 0 2px 8px rgba(216,35,42,0.35); }
        .services-hub-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 800; color: var(--primary-dark); margin-bottom: 8px; letter-spacing: -0.02em; line-height: 1.2; }
        .services-hub-lede { font-size: 15px; line-height: 1.55; color: var(--text); margin-bottom: 18px; }
        .services-hub-list { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
        .services-hub-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.5; color: var(--text); margin-bottom: 10px; }
        .services-hub-list i { color: var(--green); margin-top: 4px; font-size: 13px; flex-shrink: 0; }
        @media (max-width: 920px) { .services-hub-grid { grid-template-columns: 1fr; gap: 16px; } .services-hub-card { padding: 0 24px 24px; } }

        /* Services Hub card photos — bleed full-width to card edges */
        .services-hub-card { padding-top: 0; }
        .services-hub-photo { width: calc(100% + 56px); margin: 0 -28px 22px; aspect-ratio: 4/3; overflow: hidden; border-radius: 14px 14px 0 0; background: #e8eaed; }
        .services-hub-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .services-hub-card--feature .services-hub-photo { width: calc(100% + 56px); margin: -2px -28px 22px; border-radius: 12px 12px 0 0; }
        .services-hub-card .services-hub-inner { padding-top: 28px; }
        @media (max-width: 920px) { .services-hub-photo { width: calc(100% + 48px); margin: 0 -24px 20px; } .services-hub-card--feature .services-hub-photo { margin: -2px -24px 20px; } }
        /* DUAL CTA — two side-by-side buttons (price estimate + call VJ) */
        .inter-cta-dual { background: var(--white); padding: 44px 0; border-top: 1px solid rgba(20,33,61,0.06); border-bottom: 1px solid rgba(20,33,61,0.06); }
        .inter-cta-dual__inner { max-width: 760px; margin: 0 auto; padding: 0 20px; text-align: center; }
        .inter-cta-dual__heading { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; color: var(--primary-dark); margin: 0 0 22px; letter-spacing: -0.02em; line-height: 1.2; }
        .inter-cta-dual__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
        .inter-cta-dual__btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 18px 28px; border-radius: 12px; font-weight: 800; font-size: 16.5px; letter-spacing: -0.01em; text-decoration: none; border: 0; cursor: pointer; font-family: 'Bricolage Grotesque', inherit; min-height: 56px; flex: 1 1 280px; max-width: 360px; transition: transform 0.15s, box-shadow 0.15s, background 0.15s; }
        .inter-cta-dual__btn--primary { background: var(--cta-red); color: var(--white); box-shadow: 0 6px 18px rgba(216,35,42,0.35); }
        .inter-cta-dual__btn--primary:hover { background: var(--cta-red-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(216,35,42,0.45); }
        .inter-cta-dual__btn--call { background: var(--white); color: var(--cta-red); border: 2px solid var(--cta-red); }
        .inter-cta-dual__btn--call:hover { background: var(--cta-red); color: var(--white); }
        @media (max-width: 600px) { .inter-cta-dual { padding: 32px 0; } .inter-cta-dual__btns { flex-direction: column; align-items: stretch; } .inter-cta-dual__btn { max-width: none; flex: 1 1 auto; } }

