        :root {
            --accent: #22c55e;
            --accent-dark: #16a34a;
            --accent-glow: rgba(34, 197, 94, 0.3);
            --accent-subtle: rgba(34, 197, 94, 0.1);
            --green-600: #22c55e;
            --green-50: rgba(34, 197, 94, 0.1);
            --blue-600: #22c55e;
            --blue-700: #16a34a;
            --blue-50: rgba(34, 197, 94, 0.1);
            --red-600: #f43f5e;
            --red-50: #fce8e6;
            --yellow-600: #f59e0b;
            --orange-600: #f59e0b;
            --gray-50: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --gray-600: #475569;
            --gray-700: #334155;
            --gray-800: #1e293b;
            --gray-900: #0f172a;
            --white: #ffffff;
            --font-display: 'Space Mono', monospace;
            --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-mono: 'Space Mono', monospace;
            --shadow-1: 0 1px 2px 0 rgba(0,0,0,0.05);
            --shadow-2: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
            --radius: 8px;
            --radius-lg: 12px;
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            background: var(--white);
            color: var(--gray-900);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Language system */
        .nl { display: block; }
        .en { display: none; }
        .de { display: none; }
        .tr { display: none; }
        .ar { display: none; }
        .es { display: none; }
        .pl { display: none; }
        .it { display: none; }
        .fr { display: none; }
        .fy { display: none; }
        .srn { display: none; }
        body.lang-en .nl { display: none; }
        body.lang-en .en { display: block; }
        body.lang-de .nl { display: none; }
        body.lang-de .de { display: block; }
        body.lang-tr .nl { display: none; }
        body.lang-tr .tr { display: block; }
        body.lang-ar .nl { display: none; }
        body.lang-ar .ar { display: block; }
        body.lang-es .nl { display: none; }
        body.lang-es .es { display: block; }
        body.lang-pl .nl { display: none; }
        body.lang-pl .pl { display: block; }
        body.lang-it .nl { display: none; }
        body.lang-it .it { display: block; }
        body.lang-fr .nl { display: none; }
        body.lang-fr .fr { display: block; }
        body.lang-fy .nl { display: none; }
        body.lang-fy .fy { display: block; }
        body.lang-srn .nl { display: none; }
        body.lang-pap .nl { display: none; }
        body.lang-srn .srn { display: block; }
        span.nl, a.nl { display: inline; }
        span.en, a.en { display: none; }
        span.de, a.de { display: none; }
        span.tr, a.tr { display: none; }
        span.ar, a.ar { display: none; }
        span.es, a.es { display: none; }
        span.pl, a.pl { display: none; }
        span.it, a.it { display: none; }
        span.fr, a.fr { display: none; }
        span.fy, a.fy { display: none; }
        span.srn, a.srn { display: none; }
        span.pap, a.pap { display: none; }
        body.lang-en span.nl, body.lang-en a.nl { display: none; }
        body.lang-en span.en, body.lang-en a.en { display: inline; }
        body.lang-de span.nl, body.lang-de a.nl { display: none; }
        body.lang-de span.de, body.lang-de a.de { display: inline; }
        body.lang-tr span.nl, body.lang-tr a.nl { display: none; }
        body.lang-tr span.tr, body.lang-tr a.tr { display: inline; }
        body.lang-ar span.nl, body.lang-ar a.nl { display: none; }
        body.lang-ar span.ar, body.lang-ar a.ar { display: inline; }
        body.lang-es span.nl, body.lang-es a.nl { display: none; }
        body.lang-es span.es, body.lang-es a.es { display: inline; }
        body.lang-pl span.nl, body.lang-pl a.nl { display: none; }
        body.lang-pl span.pl, body.lang-pl a.pl { display: inline; }
        body.lang-it span.nl, body.lang-it a.nl { display: none; }
        body.lang-it span.it, body.lang-it a.it { display: inline; }
        body.lang-fr span.nl, body.lang-fr a.nl { display: none; }
        body.lang-fr span.fr, body.lang-fr a.fr { display: inline; }
        body.lang-fy span.nl, body.lang-fy a.nl { display: none; }
        body.lang-fy span.fy, body.lang-fy a.fy { display: inline; }
        body.lang-srn span.nl, body.lang-srn a.nl { display: none; }
        body.lang-srn span.srn, body.lang-srn a.srn { display: inline; }
        body.lang-pap span.nl, body.lang-pap a.nl { display: none; }
        body.lang-pap span.pap, body.lang-pap a.pap { display: inline; }

        .topbar {
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--gray-200);
            padding: 0 24px;
            height: 64px;
            display: flex;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .topbar-inner {
            max-width: 900px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .topbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--gray-900);
        }
        .topbar-logo {
            width: 32px;
            height: 32px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 14px;
        }
        .topbar-title {
            font-family: 'Space Mono', monospace;
            font-size: 18px;
            font-weight: 700;
            color: var(--gray-900);
            letter-spacing: -0.5px;
        }
        .topbar-tag {
            font-family: 'Space Mono', monospace;
            font-size: 10px;
            color: var(--accent);
            background: var(--accent-subtle);
            padding: 2px 8px;
            border-radius: 9999px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .topbar-right { display: flex; align-items: center; gap: 8px; }
        .mobile-menu-btn { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--gray-300); border-radius: 8px; background: transparent; cursor: pointer; color: var(--gray-800); font-size: 20px; transition: all 0.2s; flex-shrink: 0; }
        .mobile-menu-btn:hover { border-color: var(--accent); color: var(--accent); }
        .mobile-menu { display: none; position: absolute; top: 56px; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--gray-300); padding: 16px 24px; flex-direction: column; gap: 12px; z-index: 99; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
        .mobile-menu.open { display: flex !important; }
        .mobile-menu a { padding: 12px 16px; border: 1px solid var(--gray-300); border-radius: 9999px; font-size: 14px; font-weight: 600; color: var(--gray-800); text-decoration: none; text-align: center; transition: all 0.2s; }
        .mobile-menu a:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-subtle); }
        .lang-selector { position: relative; }
        .lang-current {
            display: flex; align-items: center; gap: 6px;
            padding: 6px 14px; background: transparent;
            border: 1px solid var(--gray-300); border-radius: 16px;
            cursor: pointer; font-family: 'DM Sans', sans-serif;
            font-size: 13px; font-weight: 600; color: var(--gray-800);
            transition: all 0.2s;
        }
        .lang-current:hover { border-color: var(--accent); background: var(--accent-subtle); }
        .lang-current svg { width: 15px; height: 15px; color: var(--accent); }
        .lang-current .lang-arrow { font-size: 8px; color: var(--gray-500); margin-left: 4px; }
        .lang-current .lang-flag { font-size: 16px; line-height: 1; }
        .lang-dropdown {
            display: none; position: absolute; top: calc(100% + 8px); right: 0;
            background: #ffffff; border: 1px solid var(--gray-200);
            border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.04);
            padding: 6px; z-index: 200; min-width: 230px;
        }
        .lang-dropdown.open { display: flex; flex-direction: column; gap: 2px; }
        .lang-dropdown button {
            padding: 10px 14px; border: none; background: transparent;
            border-radius: 8px; font-family: 'DM Sans', sans-serif;
            font-size: 13px; font-weight: 500; color: var(--gray-600);
            cursor: pointer; transition: all 0.15s; text-align: left;
            display: flex; align-items: center; gap: 10px;
        }
        .lang-dropdown button .lang-flag { font-size: 18px; line-height: 1; flex-shrink: 0; }
        .lang-dropdown button .lang-name { flex: 1; }
        .lang-dropdown button .lang-code {
            font-family: 'Space Mono', monospace; font-size: 10px; font-weight: 700;
            color: var(--gray-500); background: var(--gray-100); padding: 2px 6px; border-radius: 4px;
        }
        .lang-dropdown button:hover { background: var(--accent-subtle); color: var(--accent-dark); }
        .lang-dropdown button:hover .lang-code { color: var(--accent-dark); background: rgba(34,197,94,0.15); }
        .lang-dropdown button.active { background: var(--accent); color: white; }
        .lang-dropdown button.active .lang-code { background: rgba(255,255,255,0.2); color: white; }

        .breadcrumb {
            max-width: 900px;
            margin: 16px auto 0;
            padding: 0 24px;
            font-size: 13px;
            color: var(--gray-600);
        }
        .breadcrumb a { color: var(--accent); text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }

        .hero {
            max-width: 900px;
            margin: 12px auto 0;
            padding: 0 24px 24px;
        }
        .hero h1 {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 4px;
        }
        .hero-sub {
            font-size: 15px;
            color: var(--gray-600);
        }
        .hero-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 12px;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 18px;
        }
        .hero-action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 44px;
            padding: 10px 18px;
            border-radius: 999px;
            border: 1px solid var(--gray-300);
            background: var(--white);
            color: var(--gray-800);
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
        }
        .hero-action-btn:hover {
            transform: translateY(-1px);
            border-color: var(--accent);
        }
        .hero-action-btn.is-primary {
            background: var(--accent);
            color: var(--white);
            border-color: var(--accent);
            box-shadow: 0 14px 24px var(--accent-glow);
        }
        .hero-action-btn.is-primary:hover {
            background: var(--accent-dark);
            border-color: var(--accent-dark);
        }
        .hero-action-note {
            margin-top: 10px;
            font-size: 13px;
            color: var(--gray-600);
            max-width: 660px;
        }
        .chip {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            border-radius: 16px;
            font-size: 13px;
            font-weight: 500;
            background: var(--gray-100);
            color: var(--gray-700);
        }
        .chip-blue { background: var(--accent-subtle); color: var(--accent-dark); }
        .chip-green { background: var(--accent-subtle); color: var(--accent-dark); }

        .hero-stats {
            display: flex;
            gap: 32px;
            margin-top: 20px;
            padding: 16px 0;
            border-top: 1px solid var(--gray-200);
        }
        .hero-stat-value {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 700;
            color: var(--gray-900);
        }
        .hero-stat-label {
            font-size: 13px;
            color: var(--gray-600);
        }

        .content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 24px 48px;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 12px;
            margin-bottom: 32px;
        }
        .info-card {
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-lg);
            padding: 16px;
            text-align: center;
        }
        .info-card-icon { font-size: 24px; margin-bottom: 6px; }
        .info-card-value { font-size: 20px; font-weight: 700; color: var(--gray-900); }
        .info-card-subtle { font-size: 11px; color: var(--gray-500); margin-top: 2px; }
        .info-card-label { font-size: 12px; color: var(--gray-600); margin-top: 2px; }

        .card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-lg);
            overflow: hidden;
            margin-bottom: 16px;
        }

        .data-table { width: 100%; border-collapse: collapse; }
        .data-table tr { border-bottom: 1px solid var(--gray-100); }
        .data-table tr:last-child { border-bottom: none; }
        .data-table td { padding: 10px 20px; font-size: 14px; vertical-align: top; }
        .label-col { color: var(--gray-600); width: 40%; font-weight: 500; }
        .value-col { color: var(--gray-900); }
        .value-col.mono-value { font-family: var(--font-mono); font-size: 13px; }

        /* Grid layouts */
        .grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        @media (max-width: 768px) { .grid-2col { grid-template-columns: 1fr; } }

        /* Form elements in mortgage calculator */
        .form-group { margin-bottom: 12px; }
        .form-label { font-size: 13px; color: var(--gray-600); display: block; margin-bottom: 4px; }
        .form-input { padding: 8px 12px; border: 1px solid var(--gray-300); border-radius: var(--radius); font-size: 14px; width: 100%; font-family: var(--font-body); }
        .form-input-small { padding: 8px 12px; border: 1px solid var(--gray-300); border-radius: var(--radius); font-size: 14px; width: 80px; font-family: var(--font-body); }

        /* Cost summary table */
        .cost-table { width: 100%; border-collapse: collapse; }
        .cost-table tr { border-bottom: 1px solid var(--gray-100); }
        .cost-table tr:last-child { border-bottom: none; }
        .cost-table tr.subtotal { background: var(--gray-50); }
        .cost-table td { padding: 10px 20px; font-size: 14px; }

        /* Mortgage calculator result box */
        .calc-result { padding: 12px; background: var(--gray-50); border-radius: var(--radius); text-align: center; }
        .calc-result-label { font-size: 12px; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.5px; }
        .calc-result-value { font-size: 28px; font-weight: 700; color: var(--accent); }

        /* Hint text */
        .hint-text { margin-top: 12px; font-size: 12px; color: var(--gray-600); }

        /* Energy label badge */
        .energy-label-badge { display: inline-block; padding: 4px 12px; border-radius: 6px; color: white; font-weight: 700; font-size: 18px; }

        /* Accent text utility */
        .text-accent-dark { font-weight: 600; color: var(--accent-dark); }

        /* Section headings with inline style overrides */
        .section-subtitle { font-size: 16px; font-weight: 500; margin: 24px 0 12px; color: var(--gray-800); }
        .section-table-header { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
        .section-table-th { padding: 10px 16px; text-align: left; font-size: 13px; font-weight: 600; color: var(--gray-700); }
        .section-table-td { padding: 10px 16px; font-size: 14px; }

        .badge {
            display: inline-block;
            padding: 2px 10px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
        }
        .badge-green { background: var(--accent-subtle); color: var(--accent-dark); }
        .badge-blue { background: var(--accent-subtle); color: var(--accent-dark); }

        .section-title {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .section-title .icon { font-size: 22px; }
        .section-divider { border: none; border-top: 1px solid var(--gray-200); margin: 32px 0; }

        .woz-topline {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px 12px;
            padding: 14px 16px;
            font-size: 14px;
            color: var(--gray-700);
            background: linear-gradient(135deg, #f8fafc 0%, #ecfdf5 100%);
            border-bottom: 1px solid var(--gray-200);
        }
        .woz-growth {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 999px;
            font-weight: 700;
            color: #065f46;
            background: #d1fae5;
        }
        .woz-yoy-note {
            font-size: 12px;
            color: var(--gray-500);
        }
        .woz-detail {
            margin: 12px 16px 0;
            padding: 14px 16px;
            border: 1px solid #dbeafe;
            border-radius: 14px;
            background: linear-gradient(145deg, #eff6ff 0%, #f8fafc 100%);
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            align-items: baseline;
        }
        .woz-detail-year {
            font-size: 12px;
            letter-spacing: .04em;
            text-transform: uppercase;
            color: var(--gray-500);
            font-family: var(--font-mono);
        }
        .woz-detail-value {
            font-size: 22px;
            font-weight: 800;
            color: #0f172a;
            line-height: 1.1;
        }
        .woz-detail-delta {
            font-size: 13px;
            font-weight: 700;
            padding: 5px 10px;
            border-radius: 999px;
            background: #eef2ff;
            color: #3730a3;
        }
        .woz-detail-delta.up { background: #dcfce7; color: #166534; }
        .woz-detail-delta.down { background: #fee2e2; color: #991b1b; }
        .woz-detail-delta.flat { background: #f1f5f9; color: #475569; }

        .woz-bars {
            display: flex;
            align-items: flex-end;
            gap: 10px;
            margin: 12px 16px 0;
            padding: 14px 12px 10px;
            border: 1px solid var(--gray-200);
            border-radius: 14px;
            background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
            overflow-x: auto;
            position: relative;
        }
        .woz-bars::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 35px;
            border-top: 1px dashed var(--gray-200);
            pointer-events: none;
        }
        .woz-bar-col {
            min-width: 70px;
            text-align: center;
            position: relative;
            border: 0;
            background: transparent;
            padding: 6px 6px 4px;
            border-radius: 10px;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.2s ease;
        }
        .woz-bar-col:focus {
            outline: 2px solid #60a5fa;
            outline-offset: 2px;
        }
        .woz-bar-col:hover {
            background: rgba(59, 130, 246, 0.08);
            transform: translateY(-1px);
        }
        .woz-bar-col.is-active {
            background: rgba(37, 99, 235, 0.13);
        }
        .woz-delta {
            height: 16px;
            margin-bottom: 6px;
            font-size: 10px;
            font-weight: 700;
            font-family: var(--font-mono);
        }
        .woz-delta.up { color: #15803d; }
        .woz-delta.down { color: #b91c1c; }
        .woz-delta.flat { color: var(--gray-500); }
        .woz-bar {
            width: 34px;
            margin: 0 auto;
            border-radius: 10px 10px 4px 4px;
            box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04), 0 6px 14px rgba(15, 23, 42, 0.08);
            transition: transform 0.2s ease, opacity 0.2s ease;
        }
        .woz-bar.is-up { background: linear-gradient(180deg, #34d399 0%, #16a34a 100%); }
        .woz-bar.is-down { background: linear-gradient(180deg, #fca5a5 0%, #ef4444 100%); }
        .woz-bar.is-flat { background: linear-gradient(180deg, #cbd5e1 0%, #94a3b8 100%); }
        .woz-bar-col:hover .woz-bar,
        .woz-bar-col.is-active .woz-bar { transform: translateY(-2px); opacity: 0.95; }
        .woz-bar-col.is-active .woz-year {
            color: #1d4ed8;
            font-weight: 700;
        }
        .woz-year {
            margin-top: 7px;
            font-size: 11px;
            color: var(--gray-600);
            font-family: var(--font-mono);
        }
        .woz-val {
            margin-top: 2px;
            font-size: 10px;
            color: var(--gray-500);
            font-family: var(--font-mono);
        }
        .woz-source {
            padding: 10px 16px 16px;
            font-size: 12px;
            color: var(--gray-500);
        }
        .woz-click-note {
            margin: 10px 16px 0;
            font-size: 12px;
            color: var(--gray-500);
        }
        .woz-seo-copy {
            margin: 0 0 10px;
            color: var(--gray-600);
            font-size: 13px;
            line-height: 1.45;
        }
        .woz-help-btn {
            margin-left: 8px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 1px solid var(--gray-300);
            background: #fff;
            color: var(--gray-700);
            font-weight: 700;
            font-family: var(--font-mono);
            font-size: 12px;
            cursor: pointer;
            transition: all 0.15s ease;
        }
        .woz-help-btn:hover {
            border-color: #16a34a;
            color: #166534;
            background: #ecfdf5;
        }
        .woz-help-popover {
            display: none;
            border: 1px solid #bbf7d0;
            background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
            border-radius: 12px;
            padding: 12px 14px;
            margin: 4px 0 12px;
            box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
        }
        .woz-help-popover.open {
            display: block;
        }
        .woz-help-intro {
            margin: 0 0 8px;
            font-size: 13px;
            font-weight: 700;
            color: #14532d;
        }
        .woz-help-list {
            margin: 0;
            padding-left: 16px;
            color: var(--gray-700);
            font-size: 12px;
            line-height: 1.45;
        }
        .woz-help-list li {
            margin: 0 0 6px;
        }
        .woz-help-links {
            margin: 10px 0 0;
            font-size: 12px;
            color: var(--gray-600);
        }
        .woz-help-links a {
            color: #166534;
            text-decoration: underline;
        }

        .map-container,
        .address-map-container {
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--gray-200);
            height: 350px;
            margin-bottom: 16px;
        }
        #map,
        #address-map { height: 100%; width: 100%; }

        .nearby-list { list-style: none; }
        .nearby-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 16px;
            border-bottom: 1px solid var(--gray-100);
            cursor: pointer;
            transition: background 0.15s;
        }
        .nearby-item:hover { background: var(--gray-50); }
        .nearby-item:last-child { border-bottom: none; }
        .nearby-addr { font-size: 14px; font-weight: 500; color: var(--gray-900); }
        .nearby-detail { font-size: 12px; color: var(--gray-600); }
        .nearby-distance { font-size: 12px; color: var(--accent); font-weight: 500; margin-left: auto; white-space: nowrap; }

        .footer {
            text-align: center;
            padding: 24px;
            font-size: 12px;
            color: var(--gray-500);
            border-top: 1px solid var(--gray-200);
            margin-top: 32px;
        }
        .footer a { color: var(--accent); text-decoration: none; }
        .footer a:hover { color: var(--accent-dark); }

        .go-up-btn {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--accent);
            color: var(--white);
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-2);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.2s, visibility 0.2s, background 0.15s;
            z-index: 90;
        }
        .go-up-btn.visible { opacity: 1; visibility: visible; }
        .go-up-btn:hover { background: var(--accent-dark); }

        .pdf-download-btn-large {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 14px 32px;
            background: var(--accent);
            color: var(--white);
            border: none;
            border-radius: var(--radius-lg);
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: var(--shadow-2);
        }
        .pdf-download-btn-large:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px var(--accent-glow);
        }
        .pdf-download-btn-large svg {
            width: 24px;
            height: 24px;
        }
        .compare-tray {
            position: fixed;
            left: 24px;
            right: 24px;
            bottom: 18px;
            z-index: 96;
            opacity: 0;
            pointer-events: none;
            transform: translateY(16px);
            transition: opacity 0.2s ease, transform 0.2s ease;
        }
        .compare-tray.visible {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }
        .compare-tray-inner {
            max-width: 1080px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr) auto;
            gap: 14px;
            align-items: center;
            padding: 14px 16px;
            border: 1px solid rgba(34, 197, 94, 0.28);
            border-radius: 20px;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(18px);
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
        }
        .compare-tray-kicker {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 4px;
        }
        .compare-tray-summary {
            font-size: 15px;
            font-weight: 700;
            color: var(--gray-900);
        }
        .compare-tray-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .compare-tray-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            max-width: 220px;
            padding: 8px 10px;
            border-radius: 999px;
            background: var(--gray-100);
        }
        .compare-tray-chip a {
            color: var(--gray-800);
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .compare-tray-chip button {
            width: 22px;
            height: 22px;
            border: none;
            border-radius: 50%;
            background: rgba(15, 23, 42, 0.08);
            color: var(--gray-700);
            cursor: pointer;
            font-size: 12px;
            font-weight: 700;
        }
        .compare-tray-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }
        .compare-tray-link,
        .compare-tray-clear {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 40px;
            padding: 0 16px;
            border-radius: 999px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
        }
        .compare-tray-link {
            background: var(--accent);
            color: var(--white);
            box-shadow: 0 12px 22px var(--accent-glow);
        }
        .compare-tray-link.is-disabled {
            opacity: 0.45;
            pointer-events: none;
        }
        .compare-tray-clear {
            border: 1px solid var(--gray-300);
            color: var(--gray-700);
            background: var(--white);
        }

        .lead-capture-wrap {
            max-width: 960px;
            margin: 32px auto 48px;
            padding: 0 16px;
        }
        .lead-capture-card {
            background: linear-gradient(180deg, #f7fdf9 0%, #ffffff 100%);
            border: 1px solid rgba(34, 197, 94, 0.22);
            border-radius: var(--radius-lg);
            padding: 18px 18px 14px;
            box-shadow: var(--shadow-1);
        }
        .lead-capture-copy {
            color: var(--gray-600);
            font-size: 14px;
            margin: 0 0 12px;
            line-height: 1.55;
        }
        .lead-capture-form {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px 12px;
        }
        .lead-field {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .lead-field > span {
            font-size: 12px;
            font-weight: 700;
            color: var(--gray-700);
            letter-spacing: 0.01em;
        }
        .lead-field input,
        .lead-field select,
        .lead-field textarea {
            width: 100%;
            border: 1px solid var(--gray-300);
            border-radius: 10px;
            padding: 10px 12px;
            font: inherit;
            font-size: 14px;
            color: var(--gray-900);
            background: #fff;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }
        .lead-field input:focus,
        .lead-field select:focus,
        .lead-field textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.16);
        }
        .lead-field-full {
            grid-column: 1 / -1;
        }
        .lead-checkbox {
            grid-column: 1 / -1;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 12px;
            color: var(--gray-600);
            line-height: 1.45;
        }
        .lead-checkbox input {
            margin-top: 2px;
        }
        .lead-actions {
            grid-column: 1 / -1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .lead-submit-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 0 20px;
            border-radius: 999px;
            border: none;
            background: var(--accent);
            color: var(--white);
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 12px 24px rgba(34, 197, 94, 0.24);
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }
        .lead-submit-btn:hover {
            transform: translateY(-1px);
            background: var(--accent-dark);
            box-shadow: 0 16px 28px rgba(34, 197, 94, 0.3);
        }
        .lead-submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        .lead-secondary-link {
            color: var(--accent-dark);
            font-size: 13px;
            font-weight: 700;
            text-decoration: none;
        }
        .lead-secondary-link:hover {
            text-decoration: underline;
        }
        .lead-status {
            grid-column: 1 / -1;
            min-height: 20px;
            margin: 0;
            font-size: 13px;
            font-weight: 600;
        }
        .lead-status.is-success {
            color: #15803d;
        }
        .lead-status.is-error {
            color: #b91c1c;
        }
        .lead-honeypot {
            position: absolute !important;
            left: -9999px !important;
            opacity: 0 !important;
            pointer-events: none !important;
            width: 1px !important;
            height: 1px !important;
        }
        .rent-cta {
            border: 1px solid rgba(34, 197, 94, 0.28);
            border-radius: 14px;
            background: linear-gradient(145deg, rgba(34, 197, 94, 0.09), rgba(255, 255, 255, 0.98));
            padding: 18px;
            box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
        }
        .rent-cta h2 {
            margin: 0 0 8px 0;
        }
        .rent-cta p {
            margin: 0;
            color: var(--text-secondary);
            line-height: 1.65;
            font-size: 14px;
        }
        .rent-cta-actions {
            margin-top: 14px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
        }
        .rent-cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 40px;
            padding: 0 16px;
            border-radius: 999px;
            border: 1px solid var(--accent);
            background: var(--accent);
            color: var(--white);
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
        }
        .rent-cta-btn:hover {
            transform: translateY(-1px);
            background: var(--accent-dark);
            box-shadow: 0 10px 20px rgba(34, 197, 94, 0.22);
        }
        .rent-cta-free {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 30px;
            padding: 0 10px;
            border-radius: 999px;
            border: 1px solid var(--gray-300);
            background: var(--white);
            font-size: 12px;
            font-weight: 700;
            color: var(--gray-700);
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        @media (max-width: 768px) {
            .topbar { padding: 0 16px; height: 56px; }
            .topbar-inner { gap: 8px; }
            .topbar-title { font-size: 15px; }
            .topbar-logo { width: 28px; height: 28px; font-size: 12px; }
            .lang-current { padding: 4px 10px; font-size: 12px; }
            .lang-current .lang-name { display: none; }
            .breadcrumb { padding: 0 16px; font-size: 12px; }
            .hero { padding: 0 16px 20px; }
            .hero h1 { font-size: 22px; }
            .hero-sub { font-size: 14px; }
            .hero-actions { flex-direction: column; }
            .hero-action-btn { width: 100%; justify-content: center; }
            .hero-stats { gap: 16px; flex-wrap: wrap; }
            .hero-stat-value { font-size: 24px; }
            .content { padding: 0 16px 32px; }
            .info-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
            .info-card { padding: 12px; }
            .info-card-value { font-size: 16px; }
            .section-title { font-size: 18px; }
            .card { margin-bottom: 12px; }
            .data-table td { padding: 8px 12px; font-size: 13px; }
            .map-container,
            .address-map-container { height: 250px; }
            section > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
            .compare-tray { left: 12px; right: 12px; bottom: 12px; }
            .compare-tray-inner { grid-template-columns: 1fr; gap: 10px; }
            .compare-tray-actions { justify-content: stretch; }
            .compare-tray-link,
            .compare-tray-clear { width: 100%; }
            .lead-capture-form { grid-template-columns: 1fr; }
            .lead-actions { align-items: stretch; }
            .lead-submit-btn { width: 100%; }
            .pdf-download-btn-large { width: 100%; justify-content: center; }
        }
        @media (max-width: 480px) {
            .topbar-title { font-size: 13px; letter-spacing: 0; }
            .brand-name { display: none; }
            .breadcrumb { font-size: 11px; }
            .hero h1 { font-size: 18px; }
            .hero-sub { font-size: 13px; }
            .info-grid { grid-template-columns: 1fr 1fr; }
            .info-card { padding: 10px; }
            .info-card-value { font-size: 14px; }
            .info-card-label { font-size: 10px; }
            .data-table td { padding: 6px 10px; font-size: 12px; }
            .label-col { width: 45%; }
        }

        /* New CSS classes replacing inline styles */
        .intro-text { max-width: 960px; margin: 0 auto; padding: 0 16px; position: relative; z-index: 1; }
        .intro-text p { font-size: 15px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 8px; }

        .neighborhood-link { color: var(--accent); text-decoration: none; font-weight: 600; }
        .neighborhood-link:hover { text-decoration: underline; }

        .bag-id-code { font-family: var(--font-mono); font-size: 13px; background: var(--gray-100); padding: 2px 6px; border-radius: 4px; }

        .pdok-loading { padding: 16px; color: var(--gray-500); font-size: 14px; }
        .ssr-content { /* SSR-rendered enrichment content, replaced by JS when it loads */ }

        .vve-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; }

        .streetview-link { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 40px 24px; background: linear-gradient(135deg, #e8f5e9, #f1f8e9); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); text-decoration: none; color: var(--accent-dark); font-weight: 600; font-size: 16px; transition: all 0.2s ease; }
        .streetview-link:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
        .streetview-title { font-family: var(--font-display); }
        .streetview-subtitle { font-weight: 400; font-size: 13px; color: var(--gray-500); }

        .pdf-download-card { text-align: center; padding: 32px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); }
        .pdf-download-text { margin-bottom: 20px; color: var(--text-secondary); font-size: 15px; line-height: 1.6; }
    
    .streetview-link:hover { background: linear-gradient(135deg,#d0f0d8,#e8f5e9) !important; }
