/* --- block 1 --- */
/* ===== MINIMALIST HERO (from landing.htm) ===== */
        .hero-min .hero-min-inner {
            max-width: 820px;
            margin: 0 auto;
            text-align: center;
        }
        .hero-min .hero-eyebrow {
            margin-left: auto;
            margin-right: auto;
        }
        .hero-min h1 {
            text-align: center;
            font-size: clamp(2.2rem, 1.2rem + 4.2vw, 4.2rem);
            max-width: 820px;
            margin-left: auto;
            margin-right: auto;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }
        .hero-min .hero-sub {
            text-align: center;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 500;
            color: rgba(255,255,255,0.75);
        }
        .hero-min .hero-min-cta {
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: clamp(36px, 6vh, 60px);
            opacity: 0;
            animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.85s forwards;
        }
        .hero-trust {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 14px;
            font-size: 0.88rem;
            font-weight: 500;
            color: rgba(255,255,255,0.55);
            letter-spacing: 0.02em;
            flex-wrap: wrap;
            opacity: 0;
            animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 1.1s forwards;
        }
        .hero-trust strong {
            color: rgba(255,255,255,0.92);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.5rem;
            letter-spacing: -0.02em;
            margin-right: 6px;
        }
        .hero-trust-sep {
            color: rgba(255,255,255,0.22);
            font-size: 1rem;
        }
        @media (max-width: 480px) {
            .hero-trust { gap: 10px; font-size: 0.82rem; }
            .hero-trust-sep { display: none; }
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-min .hero-min-cta,
            .hero-trust { opacity: 1 !important; animation: none !important; }
        }

        .service-detail { background: var(--white); }
        .service-detail .container { max-width: 860px; }
        .service-detail h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--black); margin-bottom: 18px; line-height: 1.2; }
        .service-detail h3 { font-size: 1.15rem; font-weight: 600; color: var(--black); margin-top: 28px; margin-bottom: 10px; }
        .service-detail p { color: var(--section-text); font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; }
        .service-detail ul { margin: 0 0 20px 0; padding-left: 20px; }
        .service-detail li { color: var(--section-text); font-size: 0.95rem; line-height: 1.7; margin-bottom: 8px; }
        .service-detail li strong { color: var(--black); }

        .loc-why { background: var(--off-white); }
        .loc-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
        .loc-why-content h2 { font-family: var(--font-display); font-size: 2.25rem; color: var(--black); margin-bottom: 18px; line-height: 1; }
        .loc-why-content > p { color: var(--section-text); font-size: 1rem; line-height: 1.6; margin-bottom: 30px; }
        .loc-why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
        .why-list { display: flex; flex-direction: column; gap: 20px; }
        .why-item { display: flex; gap: 16px; align-items: flex-start; }
        .why-bullet { width: 28px; height: 28px; border-radius: 6px; background: var(--red-glow); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
        .why-bullet svg { width: 14px; height: 14px; color: var(--red); }
        .why-item h4 { font-size: 1rem; font-weight: 600; color: var(--black); margin-bottom: 3px; }
        .why-item p { font-size: 0.88rem; color: var(--section-text); line-height: 1.5; }

        .seo-section { background: var(--white); border-top: 1px solid var(--gray-100); }
        .seo-content { max-width: 1100px; }

        .related-services { background: var(--off-white); padding: 60px 0; border-top: 1px solid var(--gray-100); }
        .related-services-inner { text-align: center; }
        .related-services-inner h2 { font-family: var(--font-display); font-size: 1.5rem; color: var(--black); margin-bottom: 12px; }
        .related-services-inner p { font-size: 1rem; color: var(--section-text); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
        .related-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 24px; }
        .related-link { font-size: 0.88rem; font-weight: 500; color: var(--section-text); background: var(--white); border: 1px solid var(--gray-200); padding: 10px 20px; border-radius: 6px; transition: all 0.25s; }
        .related-link:hover { border-color: var(--red); color: var(--red); background: var(--red-glow); }
        .loc-all { font-size: 0.88rem; font-weight: 600; color: var(--red); }
        .loc-all:hover { text-decoration: underline; }

        @media (max-width: 1024px) { .loc-why-grid { grid-template-columns: 1fr; gap: 40px; } }
        @media (max-width: 480px) { .loc-why-stats { grid-template-columns: 1fr; } }
