
        :root {
            --red: #C41E1E;
            --red-dark: #A01818;
            --red-light: rgba(196,30,30,0.08);
            --navy: #0A2240;
            --navy-mid: #0E2D54;
            --navy-deep: #07192E;
            --white: #FFFFFF;
            --off-white: #F7F8FA;
            --gray-200: #E3E7EC;
            --gray-300: #D1D6DD;
            --gray-500: #6B7280;
            --gray-700: #374151;
            --gray-900: #111827;
            --shadow-sm: 0 2px 8px rgba(10,34,64,0.04);
            --shadow-md: 0 8px 24px rgba(10,34,64,0.06);
            --shadow-red: 0 12px 30px rgba(196,30,30,0.25);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--gray-700);
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            background: var(--white);
        }
        img { max-width: 100%; display: block; }
        a { color: inherit; text-decoration: none; }
        .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

        /* Emergency bar */
        .emergency-bar {
            background: var(--red); color: var(--white);
            font-size: 0.85rem; font-weight: 600; padding: 10px 0;
        }
        .emergency-bar .container {
            display: flex; align-items: center; justify-content: center;
            gap: 18px; flex-wrap: wrap;
        }
        .emergency-bar .pulse {
            width: 8px; height: 8px; background: var(--white); border-radius: 50%;
            animation: pulse 1.8s infinite;
        }
        .emergency-bar a { font-weight: 700; }
        .emergency-bar a:hover { text-decoration: underline; }
        @keyframes pulse {
            0%,100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.55; transform: scale(1.35); }
        }

        /* Nav (minimal — no menu) */
        .nav { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 14px 0; }
        .nav .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
        .logo { display: flex; align-items: center; }
        .logo img { height: 46px; width: auto; display: block; }
        .nav-cta { display: flex; align-items: center; gap: 14px; }
        .nav-phone { color: var(--navy); font-weight: 800; font-size: 1rem; display: inline-flex; align-items: center; gap: 8px; }
        .nav-phone svg { width: 18px; height: 18px; color: var(--red); }

        /* Buttons */
        .btn {
            display: inline-flex; align-items: center; justify-content: center; gap: 8px;
            padding: 14px 24px; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
            border: none; cursor: pointer; transition: transform 0.15s, box-shadow 0.15s;
            white-space: nowrap; text-align: center;
        }
        .btn-primary { background: var(--red); color: var(--white); box-shadow: var(--shadow-red); }
        .btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
        .btn-ghost {
            background: transparent; color: var(--white);
            border: 1.5px solid rgba(255,255,255,0.35);
        }
        .btn-ghost:hover { background: rgba(255,255,255,0.08); }
        .btn-lg { padding: 18px 32px; font-size: 1.02rem; }

        /* Hero */
        .hero {
            background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
            color: var(--white); padding: 80px 0 90px;
            position: relative; overflow: hidden;
        }
        .hero::before {
            content: ""; position: absolute; inset: 0;
            background-image:
              linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
              linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(circle at 30% 40%, black, transparent 75%);
            opacity: 0.6;
        }
        .hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
        .hero-pill {
            display: inline-flex; align-items: center; gap: 10px;
            background: rgba(196,30,30,0.15); color: #FF8888;
            border: 1px solid rgba(196,30,30,0.35);
            padding: 7px 16px; border-radius: 999px;
            font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em;
            margin-bottom: 24px;
        }
        .hero-pill .dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; animation: pulse 1.8s infinite; }
        .hero h1 {
            font-size: clamp(2.2rem, 4.3vw, 3.5rem);
            font-weight: 900; line-height: 1.05; letter-spacing: -0.025em;
            color: var(--white); margin-bottom: 22px;
        }
        .hero h1 span { color: var(--red); }
        .hero-sub {
            font-size: 1.1rem; color: rgba(255,255,255,0.78);
            max-width: 540px; margin-bottom: 32px;
        }
        .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
        .hero-trust { display: flex; flex-wrap: wrap; gap: 22px; font-size: 0.88rem; color: rgba(255,255,255,0.7); }
        .hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
        .hero-trust svg { width: 16px; height: 16px; color: var(--red); }

        .hero-visual {
            position: relative;
            display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
        }
        .hero-visual img {
            border-radius: 14px; box-shadow: 0 20px 50px rgba(0,0,0,0.4);
            width: 100%; height: auto;
            aspect-ratio: 3/4; object-fit: cover;
        }
        .hero-visual img:first-child { margin-top: 24px; }
        .hero-rating {
            position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
            background: var(--white); color: var(--navy);
            padding: 12px 18px; border-radius: 12px; box-shadow: var(--shadow-md);
            display: flex; align-items: center; gap: 12px; white-space: nowrap;
        }
        .hero-rating .stars { color: #F5B400; font-size: 1rem; letter-spacing: 1px; }
        .hero-rating-text strong { display: block; font-weight: 800; font-size: 0.95rem; }
        .hero-rating-text small { font-size: 0.75rem; color: var(--gray-500); }

        /* Trust band */
        .trust-band { background: var(--off-white); padding: 28px 0; border-bottom: 1px solid var(--gray-200); }
        .trust-band .container {
            display: flex; flex-wrap: wrap; justify-content: center;
            gap: 36px 48px; align-items: center;
        }
        .trust-item { display: flex; align-items: center; gap: 10px; color: var(--gray-700); font-weight: 600; font-size: 0.92rem; }
        .trust-item svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; }

        /* Section base */
        section { padding: 72px 0; }
        .section-label {
            display: inline-block; background: var(--red-light); color: var(--red);
            padding: 6px 14px; border-radius: 999px; font-size: 0.75rem;
            font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
            margin-bottom: 14px;
        }
        .section-title {
            font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800;
            color: var(--navy); line-height: 1.15; letter-spacing: -0.02em;
            margin-bottom: 12px;
        }
        .section-title span { color: var(--red); }
        .section-sub { color: var(--gray-500); font-size: 1.02rem; max-width: 640px; }
        .text-center { text-align: center; }
        .text-center .section-sub { margin: 0 auto; }
        .head-block { margin-bottom: 48px; }

        /* Services */
        .services { background: var(--white); }
        .service-grid {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
        }
        .service-card {
            background: var(--white); border: 1px solid var(--gray-200);
            border-radius: 14px; padding: 28px 22px;
            transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
        }
        .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--red-light); }
        .service-icon {
            width: 48px; height: 48px; border-radius: 12px;
            background: var(--red-light); color: var(--red);
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 18px;
        }
        .service-icon svg { width: 24px; height: 24px; }
        .service-card h3 {
            font-size: 1.08rem; font-weight: 800; color: var(--navy);
            margin-bottom: 8px; letter-spacing: -0.01em;
        }
        .service-card p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.55; }

        /* How it works */
        .how {
            background: linear-gradient(135deg, var(--navy-deep), var(--navy));
            color: var(--white);
        }
        .how .section-title { color: var(--white); }
        .how .section-sub { color: rgba(255,255,255,0.6); }
        .steps {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
            margin-top: 12px;
        }
        .step {
            background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
            padding: 28px 24px; border-radius: 14px; position: relative;
        }
        .step-num {
            position: absolute; top: 22px; right: 22px;
            font-size: 0.78rem; font-weight: 800; color: var(--red);
            background: var(--white); padding: 4px 10px; border-radius: 999px;
            letter-spacing: 0.04em;
        }
        .step-icon {
            width: 44px; height: 44px; border-radius: 10px;
            background: var(--red); color: var(--white);
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 18px;
        }
        .step-icon svg { width: 22px; height: 22px; }
        .step h3 {
            font-size: 1.1rem; font-weight: 800; color: var(--white);
            margin-bottom: 8px; letter-spacing: -0.01em;
        }
        .step p { font-size: 0.93rem; color: rgba(255,255,255,0.7); }

        /* CTA section */
        .cta {
            background: var(--off-white);
        }
        .cta-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 18px;
            padding: 48px;
            display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
            align-items: start;
            box-shadow: var(--shadow-md);
        }
        .cta-card h2 { font-size: 1.85rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 12px; }
        .cta-card h2 span { color: var(--red); }
        .cta-card p.lead { color: var(--gray-500); margin-bottom: 22px; }
        .cta-points { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
        .cta-points li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--gray-700); }
        .cta-points svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; margin-top: 3px; }
        .cta-phone-block {
            background: var(--red-light); border: 1px dashed rgba(196,30,30,0.3);
            border-radius: 12px; padding: 18px; display: flex; align-items: center; gap: 14px;
        }
        .cta-phone-block svg { width: 28px; height: 28px; color: var(--red); flex-shrink: 0; }
        .cta-phone-block strong { display: block; font-size: 1.25rem; color: var(--navy); font-weight: 800; letter-spacing: -0.01em; }
        .cta-phone-block small { color: var(--gray-500); font-size: 0.85rem; }

        /* Form */
        .form { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
        .field { min-width: 0; }
        .field select { min-width: 0; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
        .field label {
            display: block; font-size: 0.82rem; font-weight: 700;
            color: var(--navy); margin-bottom: 6px; letter-spacing: 0.01em;
        }
        .field input, .field select, .field textarea {
            width: 100%; padding: 12px 14px; border-radius: 10px;
            border: 1px solid var(--gray-300); font-family: inherit; font-size: 0.95rem;
            color: var(--gray-900); background: var(--white);
            transition: border-color 0.15s, box-shadow 0.15s;
        }
        .field input:focus, .field select:focus, .field textarea:focus {
            outline: none; border-color: var(--red);
            box-shadow: 0 0 0 3px rgba(196,30,30,0.12);
        }
        .field textarea { resize: vertical; min-height: 80px; }
        .form-foot { font-size: 0.78rem; color: var(--gray-500); }

        /* Footer */
        footer {
            background: var(--navy-deep); color: rgba(255,255,255,0.7);
            padding: 32px 0; font-size: 0.88rem;
        }
        footer .container {
            display: flex; flex-wrap: wrap; justify-content: space-between;
            align-items: center; gap: 16px;
        }
        footer a { color: rgba(255,255,255,0.85); font-weight: 600; }
        footer a:hover { color: var(--white); }

        /* Responsive */
        @media (max-width: 960px) {
            .hero .container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
            .hero-sub { margin-left: auto; margin-right: auto; }
            .hero-ctas { justify-content: center; }
            .hero-trust { justify-content: center; }
            .hero-visual { max-width: 460px; margin: 0 auto; }
            .service-grid { grid-template-columns: repeat(2, 1fr); }
            .steps { grid-template-columns: 1fr; }
            .cta-card { grid-template-columns: 1fr; padding: 32px; text-align: center; }
            .cta-points { display: inline-flex; text-align: left; }
            .cta-phone-block { justify-content: center; }
            .nav-phone { display: none; }
        }
        @media (max-width: 560px) {
            section { padding: 56px 0; }
            .hero { padding: 60px 0 72px; }
            .service-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .trust-band .container { gap: 18px 28px; }
            .logo img { height: 36px; }
            .nav { padding: 10px 0; }
            .nav .container { gap: 10px; }
            .nav-cta .btn { padding: 10px 16px; font-size: 0.85rem; }
            .cta-card { padding: 24px; }
        }

        /* Floating call button */
        .float-call {
            position: fixed; right: 20px; bottom: 20px; z-index: 1000;
            display: inline-flex; align-items: center; gap: 10px;
            background: var(--red); color: var(--white);
            padding: 14px 22px 14px 18px; border-radius: 999px;
            font-weight: 800; font-size: 0.95rem; letter-spacing: 0.01em;
            text-decoration: none; box-shadow: var(--shadow-red);
            transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
        }
        .float-call:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 18px 36px rgba(196,30,30,0.32); }
        .float-call svg { width: 22px; height: 22px; flex-shrink: 0; }
        .float-call::before {
            content: ""; position: absolute; inset: 0;
            border-radius: inherit; box-shadow: 0 0 0 0 rgba(196,30,30,0.55);
            animation: ring 2.2s infinite;
            pointer-events: none;
        }
        @keyframes ring {
            0% { box-shadow: 0 0 0 0 rgba(196,30,30,0.55); }
            70% { box-shadow: 0 0 0 18px rgba(196,30,30,0); }
            100% { box-shadow: 0 0 0 0 rgba(196,30,30,0); }
        }
        @media (max-width: 560px) {
            .float-call { right: 14px; bottom: 14px; padding: 12px 16px 12px 14px; font-size: 0.9rem; }
            .float-call .label { display: none; }
        }
        @media print {
            .float-call { display: none; }
        }
    
/* ── Location-page extras ─────────────────────────────── */
.intro-section { background: var(--white); }
.intro-copy { max-width: 820px; margin: 0 auto; }
.intro-copy p { color: var(--gray-700); font-size: 1.02rem; line-height: 1.8; margin-bottom: 18px; }
.areas-section { background: var(--off-white); }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 32px; }
.area-chip {
    padding: 9px 20px; background: var(--white); border: 1px solid var(--gray-300);
    border-radius: 50px; font-size: 0.88rem; font-weight: 600; color: var(--navy);
}
.faq-section { background: var(--white); }
.faq-list { max-width: 820px; margin: 40px auto 0; }
.faq-item {
    background: var(--white); border: 1px solid var(--gray-300);
    border-radius: 14px; margin-bottom: 12px; overflow: hidden;
}
.faq-item.open { border-color: rgba(196,30,30,0.3); }
.faq-q {
    width: 100%; padding: 20px 24px; background: none; border: none;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; font-family: inherit; font-size: 0.98rem;
    font-weight: 600; color: var(--navy); text-align: left; gap: 16px;
}
.faq-q svg { flex-shrink: 0; color: var(--gray-500); transition: transform 0.3s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--red); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 20px; }
.faq-a p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.75; }
.location-footer-links { margin-top: 10px; font-size: 0.85rem; }
.location-footer-links a { color: rgba(255,255,255,0.65); }
.location-footer-links a:hover { color: var(--white); }
