/* ============================================================
           RESET & BASE
        ============================================================ */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        :root {
            --navy:      #0d1f3c;
            --dark-bg:   #06111f;
            --red:       #c8251d;
            --red-dark:  #a81e17;
            --gold:      #e8920a;
            --blue:      #1e88e5;
            --green:     #10b981;
            --light:     #f4f6f9;
            --border:    #e8ecf2;
            --muted:     #8a96a8;
            --body-text: #3a4558;
            --heading:   #0d1f3c;
            --white:     #ffffff;
            --shadow:    0 4px 8px rgba(0,0,0,0.09);
            --shadow-lg: 0 12px 30px rgba(0,0,0,0.14);
        }

        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--body-text);
            font-size: 16px;
            line-height: 1.7;
            overflow-x: hidden;
            width: 100%;
        }

        main { width: 100%; overflow-x: hidden; }

        .container  { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section    { padding: 80px 20px; width: 100%; }
        .section-sm { padding: 56px 20px; width: 100%; }

        h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.12; color: var(--white); }
        h2 { font-size: clamp(1.5rem, 3.8vw, 2.4rem); font-weight: 700; line-height: 1.2; color: var(--heading); margin-bottom: 14px; }
        h3 { font-size: clamp(1.05rem, 2.4vw, 1.3rem); font-weight: 700; line-height: 1.3; color: var(--heading); margin-bottom: 10px; }
        h4 { font-size: 0.98rem; font-weight: 700; color: var(--heading); margin-bottom: 7px; }
        p  { margin-bottom: 15px; line-height: 1.8; }
        a  { text-decoration: none; color: inherit; }
        ul { list-style: none; padding: 0; }

        /* ==================== TOP BANNER ==================== */
        @keyframes bannerPulse {
            0%   { background-color: rgba(180,28,22,0.92); }
            50%  { background-color: rgba(20,80,160,0.92); }
            100% { background-color: rgba(180,28,22,0.92); }
        }
        .top-banner { width: 100%; animation: bannerPulse 8s ease-in-out infinite; background-color: rgba(180,28,22,0.92); padding: 11px 20px; text-align: center; position: relative; z-index: 100; }
        .top-banner-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
        .top-banner-text { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.93); letter-spacing: 0.02em; line-height: 1.5; font-family: 'Poppins', sans-serif; }
        .top-banner-text strong { color: #fff; font-weight: 700; }
        .top-banner-cta { font-size: 0.76rem; font-weight: 700; color: #fff; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.35); border-radius: 4px; padding: 4px 12px; white-space: nowrap; transition: background 0.2s; font-family: 'Poppins', sans-serif; }
        .top-banner-cta:hover { background: rgba(255,255,255,0.28); color: #fff; }
        @media (max-width: 480px) { .top-banner-text { font-size: 0.76rem; } .top-banner { padding: 10px 14px; } }

        /* ============================================================
           BREADCRUMB
        ============================================================ */
        .breadcrumb {
            background: var(--dark-bg);
            border-bottom: 1px solid rgba(255,255,255,0.07);
            padding: 10px 20px;
        }
        .bc-inner {
            max-width: 1200px; margin: 0 auto;
            display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
            font-size: 0.76rem; font-weight: 500; color: rgba(255,255,255,0.38);
        }
        .bc-inner a { color: rgba(255,255,255,0.5); transition: color 0.15s; }
        .bc-inner a:hover { color: var(--gold); }
        .bc-sep { color: rgba(255,255,255,0.2); }
        .bc-current { color: var(--gold); }

        /* ============================================================
           HERO
        ============================================================ */
        .hero {
            position: relative;
            background: var(--dark-bg);
            overflow: hidden;
            padding: 72px 20px 80px;
        }
        .hero::before {
            content: '';
            position: absolute; inset: 0;
            background: repeating-linear-gradient(-45deg, transparent, transparent 42px, rgba(255,255,255,0.011) 42px, rgba(255,255,255,0.011) 43px);
        }
        .hero-bar {
            position: absolute; top: 0; left: 0;
            width: 6px; height: 100%;
            background: linear-gradient(180deg, var(--blue), var(--green));
        }
        .hero-inner {
            max-width: 1200px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr;
            gap: 40px; position: relative; z-index: 1;
        }

        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(30,136,229,0.15);
            border: 1px solid rgba(30,136,229,0.35);
            border-radius: 4px; padding: 6px 14px;
            font-size: 0.75rem; font-weight: 700;
            letter-spacing: 0.09em; text-transform: uppercase;
            color: #90caf9; margin-bottom: 16px; width: fit-content;
        }
        .hero h1 span { color: var(--gold); }
        .hero-sub {
            font-size: 1.05rem; color: rgba(255,255,255,0.62);
            line-height: 1.8; margin: 16px 0 28px; max-width: 600px;
        }
        .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
        .hero-trust { display: flex; gap: 18px; flex-wrap: wrap; }
        .trust-item {
            font-size: 0.78rem; font-weight: 600;
            text-transform: uppercase; letter-spacing: 0.05em;
            color: rgba(255,255,255,0.45);
            display: flex; align-items: center; gap: 5px;
        }

        /* Hero right panel */
        .hero-panel {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px; padding: 28px 24px;
        }
        .hero-panel h3 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
        .panel-checklist { display: flex; flex-direction: column; gap: 10px; }
        .panel-item {
            display: flex; align-items: flex-start; gap: 12px;
            padding: 10px 12px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 7px;
            transition: all 0.2s;
        }
        .panel-item:hover { background: rgba(255,255,255,0.08); border-color: rgba(16,185,129,0.3); }
        .pi-check { color: var(--green); font-size: 0.95rem; flex-shrink: 0; margin-top: 1px; }
        .pi-text { font-size: 0.84rem; font-weight: 600; color: rgba(255,255,255,0.75); line-height: 1.4; }
        .panel-cta {
            margin-top: 18px;
            background: var(--red);
            color: var(--white);
            display: flex; align-items: center; gap: 9px;
            padding: 13px 18px; border-radius: 6px;
            font-size: 1.05rem; font-weight: 800;
            transition: background 0.2s;
        }
        .panel-cta:hover { background: var(--red-dark); color: var(--white); }

        /* ============================================================
           BUTTONS
        ============================================================ */
        .btn {
            display: inline-block; padding: 14px 28px;
            font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700;
            border-radius: 6px; border: none; cursor: pointer;
            transition: all 0.25s ease; text-align: center; white-space: nowrap;
        }
        .btn-red  { background: var(--red); color: var(--white); box-shadow: 0 4px 14px rgba(200,37,29,0.3); }
        .btn-red:hover { background: var(--red-dark); transform: translateY(-2px); color: var(--white); }
        .btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
        .btn-ghost:hover { background: var(--white); color: var(--navy); }
        .btn-outline-red { background: transparent; color: var(--red); border: 2px solid var(--red); }
        .btn-outline-red:hover { background: var(--red); color: var(--white); }

        /* ============================================================
           STATS STRIP
        ============================================================ */
        .certified-strip { background:#ffffff; padding:36px 20px; border-top:4px solid var(--gold); border-bottom:1px solid #e8ecf2; text-align:center; }
        .certified-strip-inner { max-width:600px; margin:0 auto; }
        .certified-strip-inner img { max-width:100%; height:auto; display:block; margin:0 auto; }

        .stats-strip { background: var(--dark-bg); border-top: 1px solid rgba(255,255,255,0.07); }
        .stats-row {
            max-width: 1200px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(2, 1fr);
        }
        .stat-cell { padding: 24px 18px; text-align: center; border-right: 1px solid rgba(255,255,255,0.07); }
        .stat-cell:last-child { border-right: none; }
        .stat-num { display: block; font-size: 2.1rem; font-weight: 800; color: var(--gold); line-height: 1; }
        .stat-lbl { display: block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.09em; color: rgba(255,255,255,0.38); margin-top: 4px; }

        /* ============================================================
           SHARED LAYOUT
        ============================================================ */
        .bg-white { background: var(--white); }
        .bg-light { background: var(--light); }
        .bg-dark  { background: var(--dark-bg); }

        .section-label {
            display: flex; align-items: center; justify-content: center; gap: 8px;
            font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
            letter-spacing: 0.15em; color: var(--blue); margin-bottom: 10px;
        }
        .section-label::before,
        .section-label::after { content: ''; display: inline-block; width: 22px; height: 2px; background: var(--blue); border-radius: 1px; }
        .section-label.red { color: var(--red); }
        .section-label.red::before, .section-label.red::after { background: var(--red); }
        .section-label.gold { color: var(--gold); }
        .section-label.gold::before, .section-label.gold::after { background: var(--gold); }
        .section-label.green { color: var(--green); }
        .section-label.green::before, .section-label.green::after { background: var(--green); }
        .section-label.left { justify-content: flex-start; }
        .section-label.left::before, .section-label.left::after { display: none; }

        .section-head { text-align: center; margin-bottom: 48px; }
        .section-intro { font-size: 1rem; color: var(--body-text); max-width: 720px; margin: 0 auto; line-height: 1.82; }

        /* ============================================================
           TUNE-UP CHECKLIST — 22-POINT
        ============================================================ */
        .checklist-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
        }
        .check-card {
            background: var(--white);
            border-radius: 8px; padding: 18px 16px;
            border: 1px solid var(--border);
            display: flex; align-items: flex-start; gap: 14px;
            box-shadow: var(--shadow);
            transition: all 0.25s;
        }
        .check-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
        .cc-num {
            width: 34px; height: 34px; border-radius: 50%;
            background: var(--dark-bg); color: var(--gold);
            font-size: 0.82rem; font-weight: 800;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .cc-text h4 { font-size: 0.92rem; color: var(--heading); margin-bottom: 3px; }
        .cc-text p  { font-size: 0.8rem; color: var(--muted); margin-bottom: 0; line-height: 1.5; }

        /* ============================================================
           TWO-COL CONTENT + SIDEBAR
        ============================================================ */
        .two-col {
            max-width: 1200px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr; gap: 48px;
        }
        .prose h2 { color: var(--heading); margin-bottom: 14px; }
        .prose h3 { margin-top: 28px; margin-bottom: 9px; font-size: 1.12rem; color: var(--heading); }
        .prose p  { font-size: 0.95rem; color: var(--body-text); line-height: 1.85; margin-bottom: 16px; }
        .prose ul { margin: 10px 0 18px; display: flex; flex-direction: column; gap: 8px; }
        .prose ul li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.92rem; color: var(--body-text); line-height: 1.65; }
        .prose ul li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
        .prose a { color: var(--red); font-weight: 600; }
        .prose a:hover { text-decoration: underline; }

        .callout {
            border-radius: 0 8px 8px 0; padding: 18px 20px; margin: 20px 0;
        }
        .callout-blue  { background: #f0f7ff; border-left: 4px solid var(--blue); }
        .callout-green { background: #f0fdf6; border-left: 4px solid var(--green); }
        .callout-gold  { background: #fff8ec; border-left: 4px solid var(--gold); }
        .callout p { font-size: 0.93rem; color: var(--heading); margin-bottom: 0; font-weight: 600; }

        /* Sidebar */
        .sidebar { display: flex; flex-direction: column; gap: 18px; }
        .sb-box {
            background: var(--white); border-radius: 10px;
            border: 1px solid var(--border); padding: 22px 20px; box-shadow: var(--shadow);
        }
        .sb-box.dark {
            background: var(--dark-bg); border: none;
            position: relative; overflow: hidden;
        }
        .sb-box.dark::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0;
            height: 4px; background: linear-gradient(90deg, var(--blue), var(--green));
        }
        .sb-box h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 14px; }
        .sb-box.dark h4 { color: rgba(255,255,255,0.4); }
        .sb-box.dark h3 { color: var(--white); margin-bottom: 8px; }
        .sb-box.dark p  { font-size: 0.84rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
        .sb-phone {
            display: flex; align-items: center; gap: 9px;
            background: var(--red); color: var(--white);
            padding: 12px 18px; border-radius: 6px;
            font-size: 1.1rem; font-weight: 800; margin-bottom: 8px;
            transition: background 0.2s;
        }
        .sb-phone:hover { background: var(--red-dark); color: var(--white); }
        .sb-hrs { font-size: 0.72rem; color: rgba(255,255,255,0.35); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
        .sb-list { display: flex; flex-direction: column; gap: 8px; }
        .sb-list li { display: flex; align-items: center; gap: 9px; font-size: 0.86rem; color: var(--body-text); font-weight: 500; }
        .sb-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
        .sb-list li a { color: var(--red); }

        /* ============================================================
           BENEFITS GRID
        ============================================================ */
        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .benefit-card {
            background: var(--white); border-radius: 10px;
            padding: 26px 22px; border: 1px solid var(--border);
            display: flex; gap: 16px; align-items: flex-start;
            box-shadow: var(--shadow); transition: all 0.3s;
        }
        .benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(30,136,229,0.25); }
        .b-icon { font-size: 2rem; flex-shrink: 0; width: 48px; text-align: center; }
        .benefit-card h3 { font-size: 1rem; margin-bottom: 5px; }
        .benefit-card p  { font-size: 0.87rem; color: var(--muted); line-height: 1.65; margin-bottom: 0; }

        /* ============================================================
           BEFORE / AFTER COMPARISON
        ============================================================ */
        .compare-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }
        .compare-col {
            border-radius: 10px; overflow: hidden;
            box-shadow: var(--shadow);
        }
        .compare-header {
            padding: 16px 20px;
            font-size: 0.88rem; font-weight: 800;
            text-transform: uppercase; letter-spacing: 0.08em;
        }
        .compare-col.no-maint .compare-header { background: #fef2f2; color: var(--red); }
        .compare-col.with-maint .compare-header { background: #f0fdf6; color: #047857; }
        .compare-items { background: var(--white); padding: 0; }
        .compare-item {
            display: flex; align-items: flex-start; gap: 12px;
            padding: 14px 18px; border-bottom: 1px solid var(--border);
            font-size: 0.88rem; color: var(--body-text);
        }
        .compare-item:last-child { border-bottom: none; }
        .ci-icon { flex-shrink: 0; font-size: 1rem; }

        /* ============================================================
           MAINTENANCE SCHEDULE TIMELINE
        ============================================================ */
        .timeline { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }
        .tl-item {
            display: flex; gap: 20px; padding: 22px 0;
            border-bottom: 1px solid var(--border);
        }
        .tl-item:last-child { border-bottom: none; }
        .tl-dot {
            width: 44px; height: 44px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.1rem; flex-shrink: 0;
        }
        .tl-dot.blue  { background: rgba(30,136,229,0.12); border: 2px solid var(--blue); }
        .tl-dot.green { background: rgba(16,185,129,0.12); border: 2px solid var(--green); }
        .tl-dot.gold  { background: rgba(232,146,10,0.12); border: 2px solid var(--gold); }
        .tl-dot.red   { background: rgba(200,37,29,0.12); border: 2px solid var(--red); }
        .tl-period { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 4px; }
        .tl-item h4 { font-size: 0.96rem; color: var(--heading); margin-bottom: 5px; }
        .tl-item p  { font-size: 0.86rem; color: var(--body-text); line-height: 1.65; margin-bottom: 0; }

        /* ============================================================
           PRICING CARD
        ============================================================ */
        .pricing-wrap {
            display: grid;
            grid-template-columns: 1fr;
            gap: 22px;
            max-width: 900px; margin: 0 auto;
        }
        .price-card {
            background: var(--white); border-radius: 12px;
            border: 2px solid var(--border);
            padding: 32px 28px; box-shadow: var(--shadow);
            position: relative; overflow: hidden;
            transition: all 0.3s;
        }
        .price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
        .price-card.featured { border-color: var(--blue); }
        .price-card.featured::before {
            content: 'Most Popular';
            position: absolute; top: 14px; right: -26px;
            background: var(--blue); color: var(--white);
            font-size: 0.68rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.08em;
            padding: 4px 36px;
            transform: rotate(35deg);
        }
        .pc-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 8px; }
        .price-card h3 { font-size: 1.3rem; color: var(--heading); margin-bottom: 6px; }
        .pc-price { font-size: 2.2rem; font-weight: 800; color: var(--red); line-height: 1; margin: 10px 0 6px; }
        .pc-note  { font-size: 0.78rem; color: var(--muted); margin-bottom: 18px; }
        .pc-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
        .pc-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.86rem; color: var(--body-text); }
        .pc-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
        .pc-btn {
            display: block; width: 100%; padding: 13px 20px;
            background: var(--dark-bg); color: var(--white);
            border-radius: 6px; font-family: 'Poppins', sans-serif;
            font-size: 0.95rem; font-weight: 700; text-align: center;
            transition: background 0.2s;
        }
        .pc-btn:hover { background: var(--navy); color: var(--white); }
        .price-card.featured .pc-btn { background: var(--blue); }
        .price-card.featured .pc-btn:hover { background: #1565c0; }

        /* ============================================================
           AREAS GRID
        ============================================================ */
        .areas-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
        }
        .area-link {
            background: var(--white); border: 1px solid var(--border);
            border-radius: 6px; padding: 12px 16px;
            display: flex; align-items: center; justify-content: space-between;
            font-size: 0.88rem; font-weight: 700; text-transform: uppercase;
            color: var(--heading); transition: all 0.2s;
            word-break: break-word;
        }
        .area-link:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(200,37,29,0.1); }
        .area-link span { font-size: 0.72rem; color: var(--muted); }
        .area-link:hover span { color: var(--red); }

        /* ============================================================
           REVIEWS
        ============================================================ */
        .reviews-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 18px;
        }
        .review-card {
            background: var(--white); border-radius: 10px;
            padding: 24px 22px; border: 1px solid var(--border);
            box-shadow: var(--shadow); position: relative; transition: all 0.3s;
        }
        .review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
        .review-card::before {
            content: '\201C'; position: absolute; top: 12px; right: 18px;
            font-size: 3.5rem; color: rgba(30,136,229,0.06);
            font-family: Georgia, serif; line-height: 1;
        }
        .r-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 10px; }
        .r-text  { font-size: 0.9rem; color: var(--body-text); font-style: italic; line-height: 1.72; margin-bottom: 14px; }
        .reviewer { display: flex; align-items: center; gap: 10px; }
        .avatar   { width: 38px; height: 38px; border-radius: 50%; background: var(--dark-bg); display: flex; align-items: center; justify-content: center; font-size: 0.82rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
        .rname  { font-size: 0.88rem; font-weight: 700; color: var(--heading); }
        .rsource{ font-size: 0.72rem; color: var(--muted); }

        /* ============================================================
           INTERNAL LINKS
        ============================================================ */
        .int-links-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
        }
        .ilc {
            background: var(--white); border: 2px solid var(--border);
            border-radius: 10px; padding: 20px 18px;
            display: flex; align-items: center; gap: 14px;
            transition: all 0.3s; box-shadow: var(--shadow);
        }
        .ilc:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
        .ilc-icon { font-size: 1.9rem; flex-shrink: 0; width: 44px; text-align: center; }
        .ilc h3   { font-size: 0.96rem; color: var(--heading); margin-bottom: 2px; }
        .ilc p    { font-size: 0.82rem; color: var(--muted); margin-bottom: 0; line-height: 1.45; }
        .ilc-arr  { margin-left: auto; color: var(--muted); font-size: 1rem; flex-shrink: 0; }
        .ilc:hover .ilc-arr { color: var(--red); }

        /* ============================================================
           FAQ
        ============================================================ */
        .faq-stack { display: flex; flex-direction: column; gap: 10px; max-width: 900px; margin: 0 auto; }
        .faq-item  { background: var(--white); border-radius: 8px; border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow); }
        .faq-btn {
            width: 100%; background: none; border: none;
            padding: 17px 22px; font-family: 'Poppins', sans-serif;
            font-size: 0.96rem; font-weight: 600; color: var(--heading);
            text-align: left; cursor: pointer;
            display: flex; align-items: center; justify-content: space-between; gap: 14px;
            transition: background 0.2s;
        }
        .faq-btn:hover { background: var(--light); }
        .faq-btn.open  { background: var(--dark-bg); color: var(--white); }
        .faq-plus { font-size: 1.2rem; flex-shrink: 0; color: var(--blue); transition: transform 0.25s; }
        .faq-btn.open .faq-plus { transform: rotate(45deg); color: var(--gold); }
        .faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s ease; padding: 0 22px; }
        .faq-body.open { max-height: 600px; padding: 16px 22px 20px; }
        .faq-body p { font-size: 0.92rem; color: var(--body-text); line-height: 1.8; margin-bottom: 0; }

        /* ============================================================
           CTA BAND
        ============================================================ */
        .cta-band {
            background: var(--dark-bg); padding: 68px 20px;
            position: relative; overflow: hidden;
        }
        .cta-band::before {
            content: ''; position: absolute; top: 0; left: 0;
            width: 7px; height: 100%;
            background: linear-gradient(180deg, var(--blue), var(--green));
        }
        .cta-row {
            max-width: 1200px; margin: 0 auto;
            display: flex; align-items: center;
            justify-content: space-between; gap: 32px; flex-wrap: wrap;
            position: relative; z-index: 1;
        }
        .cta-text h2 { color: var(--white); margin-bottom: 7px; }
        .cta-text h2 span { color: var(--gold); }
        .cta-text p  { color: rgba(255,255,255,0.5); font-size: 0.94rem; margin-bottom: 0; }
        .cta-phone {
            display: flex; align-items: center; gap: 11px;
            background: var(--red); color: var(--white);
            padding: 15px 26px; border-radius: 6px; transition: background 0.2s;
        }
        .cta-phone:hover { background: var(--red-dark); color: var(--white); }
        .cta-phone-lbl { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; opacity: 0.75; display: block; line-height: 1; margin-bottom: 2px; color: var(--white); }
        .cta-phone-num { font-size: 1.6rem; font-weight: 800; line-height: 1; color: var(--white); }
        .cta-hrs { font-size: 0.76rem; color: rgba(255,255,255,0.35); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }

        /* ============================================================
           RESPONSIVE — STRICT MOBILE-FIRST
        ============================================================ */
        .hero-inner     { grid-template-columns: 1fr; }
        .checklist-grid { grid-template-columns: 1fr; }
        .two-col        { grid-template-columns: 1fr; }
        .benefits-grid  { grid-template-columns: 1fr; }
        .compare-grid   { grid-template-columns: 1fr; }
        .pricing-wrap   { grid-template-columns: 1fr; }
        .areas-grid     { grid-template-columns: 1fr; }
        .reviews-grid   { grid-template-columns: 1fr; }
        .int-links-grid { grid-template-columns: 1fr; }

        .hero     { padding: 44px 16px 52px; }
        .section  { padding: 52px 16px; }
        .section-sm { padding: 44px 16px; }
        .cta-band { padding: 52px 16px; }

        .hero-btns { flex-direction: column; }
        .btn { width: 100%; text-align: center; padding: 14px 18px; font-size: 0.98rem; }

        .cta-row    { flex-direction: column; align-items: flex-start; }
        .cta-phone  { width: 100%; justify-content: center; }
        .cta-hrs    { text-align: center; width: 100%; margin-top: 8px; }

        @media (min-width: 640px) {
            .hero     { padding: 60px 24px 68px; }
            .section  { padding: 64px 24px; }
            .section-sm { padding: 52px 24px; }
            .cta-band { padding: 64px 24px; }

            .btn      { width: auto; }
            .hero-btns { flex-direction: row; }

            .stats-row      { grid-template-columns: repeat(4, 1fr); }
            .checklist-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
            .benefits-grid  { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .compare-grid   { grid-template-columns: repeat(2, 1fr); gap: 24px; }
            .pricing-wrap   { grid-template-columns: repeat(2, 1fr); gap: 22px; }
            .areas-grid     { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .reviews-grid   { grid-template-columns: repeat(2, 1fr); gap: 18px; }
            .int-links-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

            .cta-row    { flex-direction: row; align-items: center; justify-content: space-between; }
            .cta-phone  { width: auto; justify-content: flex-start; }
            .cta-hrs    { text-align: right; width: auto; }
        }

        @media (min-width: 1024px) {
            .hero     { padding: 88px 20px 80px; }
            .section  { padding: 80px 20px; }
            .cta-band { padding: 74px 20px; }

            .hero-inner     { grid-template-columns: 3fr 2fr; gap: 60px; align-items: center; }
            .stats-row      { grid-template-columns: repeat(4, 1fr); }
            .checklist-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
            .two-col        { grid-template-columns: 3fr 2fr; gap: 60px; align-items: start; }
            .benefits-grid  { grid-template-columns: repeat(3, 1fr); gap: 22px; }
            .pricing-wrap   { grid-template-columns: repeat(3, 1fr); gap: 24px; }
            .areas-grid     { grid-template-columns: repeat(4, 1fr); gap: 10px; }
            .reviews-grid   { grid-template-columns: repeat(3, 1fr); gap: 20px; }
            .int-links-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
        }

        @media (min-width: 1440px) {
            .hero-inner, .container, .two-col, .stats-row, .cta-row { max-width: 1360px; }
        }