*, *::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; --orange: #f97316; --green: #10b981; --blue: #1e88e5;
            --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, 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%; }
        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; }

        /* 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); }

        /* 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(--red), var(--gold)); }
        .hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px; position: relative; z-index: 1; }
        .hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
        .hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(200,37,29,0.15); border: 1px solid rgba(200,37,29,0.35); border-radius: 4px; padding: 5px 12px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fca5a5; }
        .hero-badge.gold-badge { background: rgba(232,146,10,0.15); border-color: rgba(232,146,10,0.35); color: #fcd34d; }
        .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 24px; max-width: 600px; }
        .hero-trust { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 12px; }
        .trust-item { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.45); }

        /* CONTACT FORM */
        .contact-form-panel { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 32px 28px; backdrop-filter: blur(4px); }
        .contact-form-panel h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 5px; }
        .cfp-sub { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 22px; }
        .form-row { display: flex; flex-direction: column; gap: 14px; }
        .form-group { display: flex; flex-direction: column; gap: 5px; }
        .form-group label { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.45); }
        .form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: 6px; padding: 12px 14px; color: var(--white); font-family: 'Poppins', sans-serif; font-size: 0.9rem; transition: border-color 0.2s; width: 100%; }
        .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.1); }
        .form-group select { appearance: none; cursor: pointer; }
        .form-group select option { background: var(--dark-bg); color: var(--white); }
        .form-group textarea { min-height: 100px; resize: vertical; }
        .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
        .form-submit { background: var(--red); color: var(--white); border: none; border-radius: 6px; padding: 15px 20px; font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; width: 100%; transition: background 0.2s; margin-top: 4px; }
        .form-submit:hover { background: var(--red-dark); }
        .cfp-divider { display: flex; align-items: center; gap: 10px; margin: 18px 0 16px; }
        .cfp-divider::before, .cfp-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
        .cfp-divider span { font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.25); letter-spacing: 0.08em; }
        .cfp-phone { display: flex; align-items: center; gap: 10px; background: rgba(200,37,29,0.15); border: 1px solid rgba(200,37,29,0.3); border-radius: 6px; padding: 13px 16px; color: var(--white); font-size: 1.1rem; font-weight: 800; justify-content: center; transition: background 0.2s; }
        .cfp-phone:hover { background: rgba(200,37,29,0.3); color: var(--white); }

        /* CERTIFIED 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 */
        .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; }

        /* TRUST BAR */
        .trust-bar { background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 14px 20px; }
        .trust-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
        .tb-item { display: flex; align-items: center; gap: 7px; font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.55); }

        /* SECTION LABELS */
        .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(--orange); margin-bottom: 10px; }
        .section-label::before, .section-label::after { content: ''; display: inline-block; width: 22px; height: 2px; background: var(--orange); 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-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; }

        .bg-white { background: var(--white); }
        .bg-light { background: var(--light); }

        /* CONTACT INFO CARDS */
        .contact-info-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 1200px; margin: 0 auto 48px; }
        .ci-card { background: var(--white); border-radius: 12px; border: 1px solid var(--border); padding: 28px 24px; box-shadow: var(--shadow); display: flex; gap: 18px; align-items: flex-start; transition: all 0.3s; }
        .ci-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(200,37,29,0.2); }
        .ci-icon { font-size: 2rem; flex-shrink: 0; width: 52px; text-align: center; }
        .ci-card h3 { font-size: 1rem; margin-bottom: 5px; }
        .ci-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-bottom: 0; }
        .ci-card a  { color: var(--red); font-weight: 700; }

        /* SERVICE AREA STRIP */
        .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; }
        .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); flex-shrink: 0; }

        /* FAQ */
        .faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
        .faq-item { background: var(--white); border-radius: 10px; border: 1px solid var(--border); padding: 22px 24px; box-shadow: var(--shadow); }
        .faq-item h4 { font-size: 0.97rem; color: var(--heading); margin-bottom: 8px; font-weight: 700; }
        .faq-item p  { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 0; }
        .faq-item a  { color: var(--red); font-weight: 600; }

        /* 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(--red), var(--gold)); }
        .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; }

        /* SOCIAL STRIP */
        .social-strip { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.07); padding: 32px 20px; }
        .social-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
        .social-lbl { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); margin-right: 6px; }
        .social-btn { display: flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 6px; font-size: 0.82rem; font-weight: 700; transition: all 0.2s; border: 1px solid transparent; }
        .social-btn.fb { background: rgba(24,119,242,0.15); border-color: rgba(24,119,242,0.3); color: #7eb2ff; }
        .social-btn.ig { background: rgba(225,48,108,0.15); border-color: rgba(225,48,108,0.3); color: #f9a8c5; }
        .social-btn.yt { background: rgba(255,0,0,0.15); border-color: rgba(255,0,0,0.3); color: #fca5a5; }
        .social-btn.pt { background: rgba(230,0,35,0.15); border-color: rgba(230,0,35,0.3); color: #fca5a5; }
        .social-btn:hover { transform: translateY(-2px); filter: brightness(1.2); }

        /* SEO BLOCK */
        .seo-block { background: var(--light); padding: 56px 20px; }
        .seo-inner { max-width: 1200px; margin: 0 auto; }
        .seo-inner h2 { font-size: 1.3rem; color: var(--heading); margin-bottom: 14px; }
        .seo-inner p  { font-size: 0.9rem; color: var(--body-text); line-height: 1.85; margin-bottom: 14px; }
        .seo-inner a  { color: var(--red); font-weight: 600; }
        .seo-inner a:hover { text-decoration: underline; }

        /* 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; }
        .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; }

        /* RESPONSIVE */
        .hero-inner         { grid-template-columns: 1fr; }
        .contact-info-grid  { grid-template-columns: 1fr; }
        .areas-grid         { grid-template-columns: 1fr; }
        .hero       { padding: 36px 14px 44px; }
        .section    { padding: 44px 14px; }
        .cta-band   { padding: 44px 14px; }
        .seo-block  { padding: 36px 14px; }
        .btn        { width: 100%; text-align: center; }
        .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; }
        .form-row-2 { grid-template-columns: 1fr; }

        @media (min-width: 640px) {
            .hero       { padding: 60px 24px 68px; }
            .section    { padding: 64px 24px; }
            .cta-band   { padding: 64px 24px; }
            .seo-block  { padding: 52px 24px; }
            .btn        { width: auto; }
            .hero-inner { grid-template-columns: 3fr 2fr; gap: 40px; align-items: start; }
            .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
            .areas-grid { grid-template-columns: repeat(2, 1fr); }
            .stats-row  { grid-template-columns: repeat(4, 1fr); }
            .cta-row    { flex-direction: row; align-items: center; justify-content: space-between; }
            .cta-phone  { width: auto; }
            .cta-hrs    { text-align: right; width: auto; margin-top: 0; }
            .form-row-2 { grid-template-columns: 1fr 1fr; }
        }
        @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; }
            .contact-info-grid { grid-template-columns: repeat(4, 1fr); }
            .areas-grid { grid-template-columns: repeat(4, 1fr); }
        }
        @media (max-width: 480px) {
            .top-banner-text { font-size: 0.76rem; }
            .top-banner { padding: 10px 14px; }
        }