        :root {
            color-scheme: dark;
            --bg: #0f172a;
            --surface-1: rgba(15, 23, 42, 0.82);
            --surface-2: rgba(30, 41, 59, 0.72);
            --surface-3: rgba(2, 6, 23, 0.45);
            --text-main: #f1f5f9;
            --text-muted: #94a3b8;
            --text-soft: #cbd5e1;
            --border-soft: rgba(148, 163, 184, 0.28);
            --border-strong: rgba(148, 163, 184, 0.45);
            --glass-border: var(--border-soft);
            --accent: #38bdf8;
            --accent-2: #a855f7;
            --link: #38bdf8;
            --accent-call-text: #082f49;
            --success: #22c55e;
            --success-soft: #bbf7d0;
            --shadow-lg: 0 16px 36px rgba(2, 6, 23, 0.45);
            --glass: rgba(15, 23, 42, 0.58);
            --footer-bg: rgba(2, 6, 23, 0.65);
            --cookie-bg: rgba(15, 23, 42, 0.94);
            --cookie-text: #e2e8f0;
            --btn-muted-bg: rgba(148, 163, 184, 0.12);
            --btn-muted-text: #f8fafc;
        }

        html[data-theme="light"] {
            color-scheme: light;
            --bg: #f6f9fc;
            --surface-1: #ffffff;
            --surface-2: #f0f5fb;
            --surface-3: #e8f0fa;
            --text-main: #0f172a;
            --text-muted: #475569;
            --text-soft: #334155;
            --border-soft: #d9e3ef;
            --border-strong: #c7d6e7;
            --glass-border: var(--border-soft);
            --accent: #0284c7;
            --accent-2: #7c3aed;
            --link: #0369a1;
            --accent-call-text: #f8fafc;
            --success: #16a34a;
            --success-soft: #166534;
            --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.12);
            --glass: rgba(255, 255, 255, 0.9);
            --footer-bg: #eef4fb;
            --cookie-bg: #ffffff;
            --cookie-text: #0f172a;
            --btn-muted-bg: #eaf2fb;
            --btn-muted-text: #0f172a;
        }

        body {
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg);
            color: var(--text-main);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        a {
            color: var(--link);
        }

        .theme-switcher {
            position: fixed;
            top: 14px;
            right: 14px;
            z-index: 980;
        }

        .theme-toggle {
            border: 1px solid var(--border-soft);
            background: var(--surface-1);
            color: var(--text-main);
            border-radius: 999px;
            padding: 8px 12px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            font-size: 0.8rem;
            font-weight: 700;
            line-height: 1;
            box-shadow: var(--shadow-lg);
            transition: border-color 0.2s ease, transform 0.2s ease;
        }

        .theme-toggle:hover {
            border-color: var(--accent);
            transform: translateY(-1px);
        }

        .theme-toggle:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        .theme-toggle-icon {
            width: 16px;
            height: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
        }

        .theme-toggle-icon svg {
            width: 16px;
            height: 16px;
            display: block;
        }

        .theme-toggle-label {
            letter-spacing: 0.2px;
            color: var(--text-soft);
        }

        footer {
            text-align: center;
            padding: 40px 20px;
            margin-top: auto;
            border-top: 1px solid var(--border-soft);
            font-size: 0.85rem;
            color: var(--text-muted);
            background: var(--footer-bg);
        }

        .footer-legal {
            margin-top: 15px;
            font-size: 0.75rem;
            opacity: 0.85;
            line-height: 1.5;
        }

        .footer-legal span {
            display: block;
        }

        .footer-links {
            margin-top: 15px;
        }

        .footer-link {
            color: var(--accent);
            font-weight: 700;
            text-decoration: none;
            margin-right: 15px;
        }

        .footer-link:last-child {
            margin-right: 0;
        }

        .footer-link-muted {
            color: var(--text-muted);
            text-decoration: underline;
            font-weight: 500;
        }

        .footer-sitelinks {
            margin-top: 12px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
        }

        .footer-sitelinks a {
            display: inline-flex;
            border: 1px solid var(--border-soft);
            border-radius: 999px;
            padding: 6px 11px;
            text-decoration: none;
            font-size: 0.75rem;
            color: var(--text-soft);
            background: var(--surface-1);
        }

        .footer-sitelinks a:hover {
            border-color: var(--accent);
            color: var(--text-main);
        }

        .snippet-anchor {
            margin: 12px 0 0;
            padding: 11px 12px;
            border-radius: 12px;
            border: 1px solid var(--border-soft);
            background: var(--surface-2);
        }

        .snippet-anchor p {
            margin: 0;
            color: var(--text-soft);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .snippet-anchor strong {
            color: var(--text-main);
        }

        .price-overview {
            margin-top: 24px;
            border-radius: 18px;
            border: 1px solid var(--border-soft);
            background: var(--surface-2);
            padding: 20px;
        }

        .price-overview h2 {
            margin: 0;
            font-size: 1.15rem;
            color: var(--text-main);
        }

        .price-overview p {
            margin: 8px 0 0;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .price-overview-grid {
            margin-top: 14px;
            display: grid;
            gap: 10px;
        }

        @media (min-width: 740px) {
            .price-overview-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        .price-overview-item {
            border-radius: 12px;
            border: 1px solid var(--border-soft);
            background: var(--surface-1);
            padding: 10px 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            text-decoration: none;
            color: var(--text-soft);
        }

        .price-overview-item:hover {
            border-color: var(--accent);
            color: var(--text-main);
            transform: translateY(-1px);
        }

        .price-overview-item span {
            font-size: 0.88rem;
        }

        .price-overview-item strong {
            color: var(--text-main);
            font-size: 0.93rem;
            white-space: nowrap;
        }

        .review-cta {
            margin-top: 20px;
            border-radius: 18px;
            border: 1px solid var(--border-soft);
            background: var(--surface-2);
            padding: 18px;
        }

        .review-cta h2 {
            margin: 0;
            color: var(--text-main);
            font-size: 1.08rem;
        }

        .review-cta p {
            margin: 8px 0 0;
            color: var(--text-soft);
            font-size: 0.9rem;
            line-height: 1.45;
        }

        .review-cta-action {
            margin-top: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: 12px;
            border: 1px solid rgba(248, 204, 57, 0.55);
            background: rgba(248, 204, 57, 0.15);
            color: var(--text-main);
            font-weight: 800;
            font-size: 0.9rem;
            text-decoration: none;
            padding: 10px 14px;
        }

        .review-cta-action:hover {
            background: #f8cc39;
            color: #1f2937;
            border-color: transparent;
        }

        .review-cta-template {
            margin-top: 10px;
            padding: 10px 12px;
            border-radius: 12px;
            border: 1px dashed var(--border-strong);
            color: var(--text-muted);
            font-size: 0.84rem;
            background: var(--surface-1);
        }

        .related-services {
            margin-top: 22px;
            border-radius: 18px;
            border: 1px solid var(--border-soft);
            background: var(--surface-2);
            padding: 20px;
        }

        .related-services h2 {
            margin: 0;
            color: var(--text-main);
            font-size: 1.12rem;
        }

        .related-services p {
            margin: 8px 0 0;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .related-services-grid {
            margin-top: 13px;
            display: grid;
            gap: 10px;
        }

        @media (min-width: 760px) {
            .related-services-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        .related-service-item {
            border-radius: 12px;
            border: 1px solid var(--border-soft);
            background: var(--surface-1);
            padding: 10px 12px;
            text-decoration: none;
            display: block;
        }

        .related-service-item:hover {
            border-color: var(--accent);
            transform: translateY(-1px);
        }

        .related-service-item strong {
            display: block;
            color: var(--text-main);
            font-size: 0.9rem;
            margin-bottom: 3px;
        }

        .related-service-item span {
            display: block;
            color: var(--text-muted);
            font-size: 0.82rem;
        }

        .recent-cases {
            margin-top: 22px;
            border-radius: 18px;
            border: 1px solid var(--border-soft);
            background: var(--surface-2);
            padding: 20px;
        }

        .recent-cases h2 {
            margin: 0;
            color: var(--text-main);
            font-size: 1.12rem;
        }

        .recent-cases p {
            margin: 8px 0 0;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .recent-cases-grid {
            margin-top: 12px;
            display: grid;
            gap: 10px;
        }

        @media (min-width: 760px) {
            .recent-cases-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        .recent-case-item {
            border-radius: 12px;
            border: 1px solid var(--border-soft);
            background: var(--surface-1);
            padding: 12px;
        }

        .recent-case-date {
            display: inline-block;
            font-size: 0.74rem;
            color: var(--link);
            margin-bottom: 5px;
        }

        .recent-case-item h3 {
            margin: 0 0 6px;
            color: var(--text-main);
            font-size: 0.95rem;
        }

        .recent-case-item p {
            margin: 0;
            color: var(--text-soft);
            font-size: 0.84rem;
            line-height: 1.42;
        }

        .recent-case-item a {
            margin-top: 8px;
            display: inline-flex;
            color: var(--link);
            font-size: 0.82rem;
            text-decoration: none;
            border-bottom: 1px solid transparent;
        }

        .recent-case-item a:hover {
            border-bottom-color: var(--link);
        }

        @media (min-width: 600px) {
            .footer-legal span { display: inline; margin: 0 5px; }
            .footer-legal span::after { content: "|"; margin-left: 10px; opacity: 0.3; }
            .footer-legal span:last-child::after { content: ""; }
        }

        #cookie-banner {
            display: none;
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            max-width: 520px;
            margin: 0 auto;
            background: var(--cookie-bg);
            color: var(--cookie-text);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-soft);
            padding: 20px;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            z-index: 9999;
            font-size: 0.9rem;
            line-height: 1.5;
            animation: slideUp 0.5s ease-out;
        }

        .cookie-buttons {
            margin-top: 15px;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
        }

        .btn-cookie {
            background: var(--accent);
            color: var(--accent-call-text);
            border: none;
            padding: 8px 20px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            font-size: 0.9rem;
        }

        .btn-cookie:hover { opacity: 0.92; }

        .cookie-more {
            color: var(--text-muted);
            text-decoration: underline;
        }

        .nav-back {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 600;
            margin-bottom: 25px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 10px 20px;
            border-radius: 30px;
            background: var(--surface-1);
            border: 1px solid var(--border-soft);
            backdrop-filter: blur(5px);
        }

        .nav-back:hover {
            color: var(--text-main);
            background: var(--surface-2);
            border-color: var(--accent);
            box-shadow: var(--shadow-lg);
            transform: translateX(-5px);
        }

        .nav-back svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s;
        }

        .nav-back:hover svg {
            transform: translateX(-3px);
        }

        .htmx-indicator { display: none; }
        .htmx-request .htmx-indicator { display: block; }
        .htmx-request.btn-hide { display: none; }

        @media (max-width: 680px) {
            .theme-switcher {
                top: 10px;
                right: 10px;
            }

            .theme-toggle {
                padding: 7px 10px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        @keyframes slideDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes slideUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7); } 70% { box-shadow: 0 0 0 10px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
