/* =========================================================
   SyndicData Design System — Premium Light Mode
   ========================================================= */

/* ── Fonts ──────────────────────────────────────────────── */
:root {
    /* Color tokens */
    --bg-base:        #fdfdfd;
    --bg-surface:     #ffffff;
    --bg-card:        #ffffff;
    --bg-card-hover:  #f8fafc;
    --bg-input:       #f8fafc;

    --border:         #e2e8f0;
    --border-focus:   rgba(79, 70, 229, 0.5);

    --primary:        #4f46e5;
    --primary-light:  #6366f1;
    --primary-glow:   rgba(79, 70, 229, 0.15);

    --accent:         #059669;
    --accent-light:   #10b981;
    --accent-glow:    rgba(5, 150, 105, 0.15);

    --amber:          #d97706;
    --red:            #dc2626;

    --text-primary:   #0f172a;
    --text-secondary: #475569;
    --text-muted:     #64748b;

    /* Region colors */
    --region-flanders: #4f46e5;
    --region-brussels: #d97706;
    --region-wallonia: #059669;

    /* Spacing */
    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  18px;
    --radius-xl:  24px;

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Elevation */
    --shadow-xs: 0 1px 2px rgba(15,23,42,0.04);
    --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
    --shadow-md: 0 4px 16px rgba(15,23,42,0.08), 0 2px 4px rgba(15,23,42,0.04);
    --shadow-lg: 0 12px 40px rgba(15,23,42,0.10), 0 4px 12px rgba(15,23,42,0.06);
    --shadow-xl: 0 24px 64px rgba(15,23,42,0.12), 0 8px 20px rgba(15,23,42,0.08);
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

[hidden] {
    display: none !important;
}

a { color: var(--primary-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary); }

h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

h1:focus, h2:focus, h3:focus, h1:focus-visible, h2:focus-visible, h3:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* ── Layout ─────────────────────────────────────────────── */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    padding: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

/* ── Navigation ─────────────────────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 2000;
    background: rgba(253, 253, 253, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 64px;
    gap: 24px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-logo {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.navbar-name {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary) 40%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 13px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 650;
    line-height: 1;
    color: var(--text-secondary);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(15, 23, 42, 0.045);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(79, 70, 229, 0.09);
    box-shadow: inset 0 0 0 1px rgba(79, 70, 229, 0.08);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px var(--primary-glow);
}
.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 24px var(--primary-glow);
    color: white;
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1px solid var(--border);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn-secondary:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 8px 12px;
}
.btn-ghost:hover {
    background: rgba(15, 23, 42, 0.04);
    color: var(--text-primary);
}

.btn-accent {
    background: var(--accent);
    color: white;
    box-shadow: 0 0 20px var(--accent-glow);
}
.btn-accent:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 24px var(--accent-glow);
    color: white;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
    border-radius: var(--radius-md);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

/* ── Cards ───────────────────────────────────────────────── */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.25s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(79, 70, 229, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}

/* ── Stat Cards ──────────────────────────────────────────── */
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.stat-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.stat-icon.indigo { background: rgba(99, 102, 241, 0.15); color: var(--primary-light); }
.stat-icon.emerald { background: rgba(16, 185, 129, 0.15); color: var(--accent-light); }
.stat-icon.amber { background: rgba(245, 158, 11, 0.15); color: var(--amber); }

.stat-value {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(135deg, var(--text-primary) 60%, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 100px 24px 80px;
    text-align: center;
    overflow: hidden;
    background-image: radial-gradient(circle at 1px 1px, rgba(79,70,229,0.07) 1px, transparent 0);
    background-size: 32px 32px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
    animation: fadeInUp 0.5s ease both;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--text-primary);
    outline: none !important;
    box-shadow: none !important;
    animation: fadeInUp 0.55s ease 0.1s both;
}

.hero-title-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 400;
    animation: fadeInUp 0.55s ease 0.2s both;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 0.55s ease 0.4s both;
}

/* ── Search Bar ──────────────────────────────────────────── */
.search-bar-wrapper {
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    animation: fadeInUp 0.55s ease 0.3s both;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 6px 6px 6px 20px;
    transition: all 0.3s;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.search-bar:focus-within {
    border-color: var(--border-focus);
    background: var(--bg-surface);
    box-shadow: 0 0 0 4px var(--primary-glow), 0 4px 24px rgba(0, 0, 0, 0.08);
}

.search-icon {
    color: var(--text-muted);
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font);
    font-size: 16px;
    color: var(--text-primary);
    padding: 10px 0;
}

.search-input::placeholder { color: var(--text-muted); }

.search-select {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px 12px;
    font-family: var(--font);
    font-size: 14px;
    color: var(--text-secondary);
    outline: none;
    cursor: pointer;
    margin-right: 6px;
}

.search-select:focus { border-color: var(--border-focus); }
.search-select option { background: var(--bg-surface); color: var(--text-primary); }

/* ── Result Grid ─────────────────────────────────────────── */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 16px;
}

.location-filter-panel {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
    gap: 24px;
    align-items: end;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.location-filter-copy h2 {
    margin: 0 0 8px;
    font-size: 20px;
    color: var(--text-primary);
}

.location-filter-copy p {
    margin: 0 0 14px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.location-filter-count {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}

.location-filter-controls {
    display: grid;
    grid-template-columns: minmax(160px, 0.8fr) minmax(220px, 1.2fr);
    gap: 14px;
}

.location-filter-controls label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 650;
}

.location-filter-controls .search-select,
.location-filter-controls .search-input {
    width: 100%;
    margin-right: 0;
}

.location-typeahead {
    position: relative;
}

.location-typeahead-menu {
    position: absolute;
    z-index: 40;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    max-height: 320px;
    overflow-y: auto;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16);
    padding: 6px;
}

.location-typeahead-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    text-decoration: none;
}

.location-typeahead-option:hover,
.location-typeahead-option.is-active {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.location-typeahead-main {
    min-width: 0;
    font-size: 14px;
    font-weight: 700;
}

.location-typeahead-main small {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
}

.location-typeahead-meta {
    flex: 0 0 auto;
    color: var(--text-muted);
    font-size: 12px;
    text-align: right;
}

.location-filter-empty {
    margin-top: 20px;
}

.result-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all 0.25s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.result-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.result-card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.result-card-nr {
    font-size: 12px;
    font-family: 'Courier New', monospace;
    color: var(--text-muted);
}

.result-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.result-card-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.result-card-row svg, .result-card-row .icon {
    color: var(--text-muted);
    width: 14px;
    flex-shrink: 0;
}

.result-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

/* ── Badges ──────────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.badge-region-flanders { background: rgba(79, 70, 229, 0.1); color: var(--primary); }
.badge-region-brussels { background: rgba(217, 119, 6, 0.1); color: var(--amber); }
.badge-region-wallonia { background: rgba(5, 150, 105, 0.1); color: var(--accent); }
.badge-region-unknown  { background: rgba(100, 116, 139, 0.1); color: var(--text-muted); }
.badge-cib { background: rgba(5, 150, 105, 0.1); color: var(--accent); border: 1px solid rgba(5,150,105,0.2); }
.badge-personal { background: rgba(217, 119, 6, 0.1); color: var(--amber); }
.badge-syndic { background: rgba(79, 70, 229, 0.1); color: var(--primary); }
.badge-vme { background: rgba(5, 150, 105, 0.1); color: var(--accent); }
.badge-warning { background: rgba(217, 119, 6, 0.12); color: var(--amber); border: 1px solid rgba(217, 119, 6, 0.2); }
.badge-info { background: rgba(79, 70, 229, 0.1); color: var(--primary); border: 1px solid rgba(79, 70, 229, 0.18); }
.badge-success { background: rgba(5, 150, 105, 0.1); color: var(--accent); border: 1px solid rgba(5, 150, 105, 0.18); }

.detail-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.detail-hero-main {
    flex: 1 1 auto;
    min-width: 0;
}

.detail-hero-identity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    min-width: 0;
}

.detail-hero-copy {
    min-width: 0;
    flex: 1 1 auto;
}

.detail-hero-title {
    overflow-wrap: anywhere;
}

.detail-hero-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    min-width: 0;
}

.detail-address {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.detail-address-region {
    flex-shrink: 0;
}

.detail-hero-actions {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

/* ── Stats Grid ──────────────────────────────────────────── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.stats-grid .stat-card:nth-child(1) { animation: fadeInUp 0.55s ease 0.05s both; }
.stats-grid .stat-card:nth-child(2) { animation: fadeInUp 0.55s ease 0.15s both; }
.stats-grid .stat-card:nth-child(3) { animation: fadeInUp 0.55s ease 0.25s both; }
.stats-grid .stat-card:nth-child(4) { animation: fadeInUp 0.55s ease 0.35s both; }
.stats-grid .stat-card:nth-child(5) { animation: fadeInUp 0.55s ease 0.45s both; }
.stats-grid .stat-card:nth-child(6) { animation: fadeInUp 0.55s ease 0.55s both; }
.stats-grid .stat-card:nth-child(7) { animation: fadeInUp 0.55s ease 0.65s both; }
.stats-grid .stat-card:nth-child(8) { animation: fadeInUp 0.55s ease 0.75s both; }

.live-impact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "header action"
        "metrics metrics";
    column-gap: 24px;
    row-gap: 18px;
    align-items: center;
    padding: 22px 26px;
    margin-bottom: 24px;
    color: var(--text-primary);
    background:
        radial-gradient(circle at 0% 0%, rgba(220, 38, 38, 0.05) 0%, transparent 38%),
        radial-gradient(circle at 100% 100%, rgba(5, 150, 105, 0.06) 0%, transparent 42%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    animation: fadeInUp 0.5s ease 0.05s both;
}

.live-impact-panel--compact {
    padding: 12px 16px;
    column-gap: 16px;
    row-gap: 10px;
    box-shadow: var(--shadow-sm);
    background:
        radial-gradient(circle at 100% 100%, rgba(5, 150, 105, 0.04) 0%, transparent 42%),
        linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

.live-impact-panel--compact::before {
    display: none;
}

.live-impact-panel--compact .live-impact-grid {
    gap: 8px;
}

.live-impact-panel--compact .live-impact-metric {
    padding: 8px 12px;
    gap: 10px;
}

.live-impact-panel--compact .live-impact-metric-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
}

.live-impact-panel--compact .live-impact-metric-value {
    font-size: 20px;
}

.live-impact-panel--compact .live-impact-metric-unit {
    font-size: 11px;
}

.live-impact-panel--compact .live-impact-metric-label {
    font-size: 11.5px;
}

.live-impact-panel--compact .live-impact-action {
    padding: 7px 14px;
    font-size: 12px;
}

.live-impact-panel--compact .live-impact-eyebrow {
    font-size: 11px;
    letter-spacing: 0.1em;
}

.live-impact-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transform: skewX(-18deg);
    pointer-events: none;
    animation: liveImpactSheen 7s ease-in-out infinite;
}


.live-impact-header {
    grid-area: header;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.live-impact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--red);
    text-transform: uppercase;
}

.live-impact-pulse-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.16);
    flex-shrink: 0;
}

.live-impact-pulse-dot::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(220, 38, 38, 0.45);
    border-radius: inherit;
    animation: livePulse 1.8s ease-out infinite;
}

.live-impact-meta {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.45;
}

.live-impact-grid {
    grid-area: metrics;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.live-impact-metric {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    min-width: 0;
    color: inherit;
    text-decoration: none;
    position: relative;
}

.live-impact-metric:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: inherit;
}

.live-impact-metric--alert { border-left-color: var(--red); }
.live-impact-metric--info  { border-left-color: var(--primary); }
.live-impact-metric--ok    { border-left-color: var(--accent); }
.live-impact-metric--warn  { border-left-color: var(--amber); }

.live-impact-metric-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 18px;
    line-height: 1;
}

.live-impact-metric--alert .live-impact-metric-icon { background: rgba(220, 38, 38, 0.10); }
.live-impact-metric--info  .live-impact-metric-icon { background: rgba(79, 70, 229, 0.10); }
.live-impact-metric--ok    .live-impact-metric-icon { background: rgba(5, 150, 105, 0.10); }
.live-impact-metric--warn  .live-impact-metric-icon { background: rgba(217, 119, 6, 0.10); }

.live-impact-metric-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.live-impact-metric-num {
    display: flex;
    align-items: baseline;
    gap: 6px;
    line-height: 1;
}

.live-impact-metric-value {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.live-impact-metric--alert .live-impact-metric-value {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.live-impact-metric-arrow {
    flex-shrink: 0;
    margin-left: 4px;
    color: var(--text-muted);
    font-size: 16px;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.live-impact-metric:hover .live-impact-metric-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary);
}

.live-impact-metric-unit {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0;
}

.live-impact-metric-label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.005em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-impact-action {
    grid-area: action;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--text-primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
    align-self: start;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.live-impact-action:hover {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.28);
}

.live-impact-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.live-impact-action:hover .live-impact-arrow {
    transform: translateX(3px);
}

/* Standalone variant: panel without CTA, used on dedicated pages */
.live-impact-panel--standalone .live-impact-stamp {
    grid-area: action;
    align-self: start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.live-impact-stamp-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent-light);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
    flex-shrink: 0;
}

/* Active filter state on tile (page-only) */
.live-impact-metric.is-active {
    background: rgba(79, 70, 229, 0.04);
    border-color: rgba(79, 70, 229, 0.25);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.10), var(--shadow-xs);
}

@keyframes livePulse {
    0% { opacity: 0.75; transform: scale(0.45); }
    70% { opacity: 0; transform: scale(1); }
    100% { opacity: 0; transform: scale(1); }
}

@keyframes liveImpactSheen {
    0%, 55% { left: -40%; }
    75%, 100% { left: 110%; }
}

@media (prefers-reduced-motion: reduce) {
    .live-impact-panel::before,
    .live-impact-pulse-dot::after {
        animation: none;
    }
}

/* ── Page header helpers (re-usable) ──────────────────────── */
.page-eyebrow {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.page-h1 {
    font-size: clamp(28px, 4vw, 44px);
    margin: 0 0 12px;
    letter-spacing: -0.025em;
}

.page-lead {
    max-width: 760px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* ── Top cities (horizontal bar viz) ──────────────────────── */
.top-cities-card {
    padding: 22px 24px;
}

.top-cities-head {
    margin-bottom: 16px;
}

.top-cities-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 4px;
}

.top-cities-sub {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.top-cities-list {
    display: grid;
    gap: 10px;
}

.top-cities-row {
    display: grid;
    grid-template-columns: minmax(120px, 200px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
}

.top-cities-row-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-cities-row-bar {
    position: relative;
    height: 8px;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 999px;
    overflow: hidden;
}

.top-cities-row-fill {
    height: 100%;
    background: linear-gradient(90deg, #dc2626 0%, #f97316 100%);
    border-radius: 999px;
    transition: width 0.6s ease;
    animation: topCitiesGrow 0.7s ease both;
    transform-origin: left center;
}

@keyframes topCitiesGrow {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

.top-cities-row-count {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.top-cities-row-unit {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 4px;
}

@media (max-width: 640px) {
    .top-cities-row {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas: "name count" "bar bar";
        gap: 6px 10px;
    }
    .top-cities-row-name  { grid-area: name; }
    .top-cities-row-count { grid-area: count; }
    .top-cities-row-bar   { grid-area: bar; }
}

/* ── Power outages list page ──────────────────────────────── */
.po-list-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.po-list-title {
    font-size: 18px;
    margin: 0;
    letter-spacing: -0.01em;
}

.po-list-count {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

.po-vme-link {
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.po-vme-link:hover {
    text-decoration: underline;
}

.po-vme-num {
    font-size: 11px;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    margin-top: 2px;
}

.po-cell-muted {
    font-size: 13px;
    color: var(--text-secondary);
}

.po-cell-dso {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 12px;
    font-weight: 700;
}

.po-pagination {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
}

.insight-info-card {
    padding: 24px 28px;
    margin-bottom: 24px;
    min-width: 0;
}

.insight-info-card h2,
.insight-info-card h3,
.insight-info-card p,
.insight-info-card div {
    overflow-wrap: anywhere;
}

.mandate-info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 24px;
    margin-bottom: 32px;
}

.insight-note {
    margin-top: 14px;
    padding: 12px 14px;
    border-left: 4px solid var(--primary);
    background: rgba(79, 70, 229, 0.08);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-wrap: anywhere;
}

/* ── Tables ──────────────────────────────────────────────── */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.data-table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 2px solid var(--border);
    background: rgba(15, 23, 42, 0.02);
}

.data-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    transition: background 0.15s;
}

.data-table tr:hover td {
    background: rgba(15, 23, 42, 0.02);
}

.data-table tr:last-child td { border-bottom: none; }

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    background: rgba(15,23,42,0.06);
    color: var(--text-muted);
}

.rank-badge.top-3 {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(5, 150, 105, 0.1));
    color: var(--text-primary);
    border: 1px solid rgba(79, 70, 229, 0.2);
}

/* ── Portfolio Bar ───────────────────────────────────────── */
.portfolio-bar-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.portfolio-bar {
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    min-width: 4px;
    max-width: 200px;
}

/* ── Forms & Inputs ──────────────────────────────────────── */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-input {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-family: var(--font);
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
    transition: all 0.2s;
    width: 100%;
}

.form-input:focus {
    border-color: var(--border-focus);
    background: var(--bg-surface);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-input::placeholder { color: var(--text-muted); }

/* ── Pagination ──────────────────────────────────────────── */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 32px;
}

.page-btn {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font);
    text-decoration: none;
}

.page-btn:hover:not(:disabled) {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.page-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 0 12px var(--primary-glow);
}

.page-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.search-pagination {
    margin-bottom: 72px;
}

/* ── Filters Row ─────────────────────────────────────────── */
.filters-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.filter-chip:hover { border-color: rgba(79, 70, 229, 0.4); color: var(--text-primary); }
.filter-chip.active { background: rgba(79, 70, 229, 0.1); border-color: rgba(79, 70, 229, 0.4); color: var(--primary); }

.filter-tab {
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.2s;
    text-decoration: none;
}

.filter-tab:hover {
    color: var(--text-primary);
    background: rgba(15, 23, 42, 0.04);
}

.filter-tab.active {
    color: var(--primary);
    background: var(--bg-surface);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
    border-top: 1px solid var(--border);
    padding: 48px 24px 32px;
    background: var(--bg-surface);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 280px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-brand-name {
    font-size: 17px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary) 40%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-nav-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 100px;
}

.footer-nav-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.footer-nav-link {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav-link:hover { color: var(--text-primary); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2600;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.cookie-banner__card {
    width: min(920px, 100%);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(18px);
    padding: 18px 20px;
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    pointer-events: auto;
}

.cookie-banner__content {
    min-width: 0;
}

.cookie-banner__title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.cookie-banner__text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-banner__link {
    padding-left: 0;
    padding-right: 0;
}


/* ── Insight Charts Placeholder ──────────────────────────── */
.chart-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.chart-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.chart-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* ── Region Distribution Bar ─────────────────────────────── */
.region-bar {
    display: flex;
    height: 8px;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 16px;
    gap: 2px;
}

.region-bar-segment {
    height: 100%;
    transition: all 0.5s;
}

.region-legend {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.region-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.region-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    flex-shrink: 0;
}

/* ── Page Headers ────────────────────────────────────────── */
.page-header {
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 48px;
}

.page-header-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.page-header h1 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 10px;
    outline: none;
}

.page-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Legal pages */
.legal-page {
    background:
        linear-gradient(180deg, rgba(79, 70, 229, 0.04), rgba(255, 255, 255, 0) 320px),
        var(--bg-body);
}

.legal-shell {
    max-width: 1120px;
    padding-top: 48px;
    padding-bottom: 88px;
}

.legal-header {
    max-width: 820px;
    padding: 28px 0 34px;
    margin-bottom: 32px;
}

.legal-header h1 {
    font-size: clamp(30px, 4vw, 46px);
}

.legal-header p {
    max-width: 760px;
    line-height: 1.7;
}

.legal-meta {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    padding: 7px 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
}

.legal-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: start;
    gap: 32px;
}

.legal-nav {
    position: sticky;
    top: 88px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
}

.legal-nav a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.legal-nav a:hover,
.legal-nav a.active {
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
}

.legal-document {
    padding: 34px 42px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-card);
    box-shadow: var(--shadow-md);
}

.legal-document h3 {
    margin: 34px 0 10px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 18px;
    line-height: 1.35;
}

.legal-document h3:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.legal-document p {
    margin: 0 0 14px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.78;
}

.legal-document a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.legal-document a:hover {
    text-decoration: underline;
}

/* ── Empty State ─────────────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 80px 24px;
    color: var(--text-muted);
}

.empty-state-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.5; }
.empty-state h3 { font-size: 18px; color: var(--text-secondary); margin-bottom: 8px; }
.empty-state p { font-size: 14px; }

/* ── Loading ─────────────────────────────────────────────── */
.loading-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 40px;
}

.loading-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: bounce 1.2s infinite ease-in-out;
}

.loading-dot:nth-child(2) { animation-delay: 0.15s; }
.loading-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0.7); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* ── Counter Animation ───────────────────────────────────── */
.counter-value {
    font-variant-numeric: tabular-nums;
    transition: all 0.3s;
}

/* ── Admin Badge ─────────────────────────────────────────── */
.admin-panel h2 { font-size: 20px; margin-bottom: 16px; }
.job-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
}
.job-name { font-weight: 600; font-size: 14px; }
.job-desc { font-size: 13px; color: var(--text-secondary); margin-top: 2px; }

/* ── 404 ─────────────────────────────────────────────────── */
.not-found-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.not-found-code {
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

/* ── Authentication ─────────────────────────────────────── */
.auth-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 40%);
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.auth-card-wide {
    max-width: 520px;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.auth-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-page-shell {
    padding-top: 48px;
    padding-bottom: 80px;
    max-width: 1120px;
}

.contact-page-header {
    padding-top: 0;
    margin-bottom: 32px;
    border-bottom: none;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.contact-side-card,
.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.contact-side-card {
    padding: 28px;
    position: sticky;
    top: 96px;
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.05), rgba(16, 185, 129, 0.04));
}

.contact-side-eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 12px;
}

.contact-side-card h2 {
    font-size: 22px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.contact-side-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

.contact-side-points {
    margin-top: 22px;
    display: grid;
    gap: 14px;
}

.contact-side-point {
    padding: 14px 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.contact-side-point-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-side-point-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-form-card {
    padding: 28px;
}

.contact-success-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 18px;
}

.contact-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.12);
    color: var(--accent);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-success-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.contact-success-text {
    max-width: 560px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.contact-success-button {
    min-width: 220px;
    justify-content: center;
}

.contact-validation-summary {
    margin-bottom: 18px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.contact-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.contact-input,
.contact-textarea {
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--bg-input);
    padding: 14px 16px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.contact-input {
    min-height: 52px;
}

.contact-textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-input:focus,
.contact-textarea:focus {
    background: #fff;
    border-color: rgba(79, 70, 229, 0.5);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.08);
    outline: none;
}

.contact-captcha {
    margin-top: 8px;
    margin-bottom: 20px;
}

.contact-captcha-error {
    font-size: 13px;
    margin-top: 8px;
}

.contact-form-actions {
    display: flex;
    justify-content: flex-start;
    padding-top: 6px;
}

.contact-submit-button {
    min-width: 180px;
    min-height: 48px;
    justify-content: center;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Identity Form Overrides */
.form-floating > label {
    padding-left: 14px;
    color: var(--text-muted);
    font-size: 14px;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary);
    transform: scale(0.85) translateY(-0.75rem) translateX(0.15rem);
}

.form-control {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-family: var(--font);
    font-size: 14px;
    color: var(--text-primary);
    transition: all 0.2s;
}

.form-control:focus {
    background: var(--bg-surface);
    border-color: var(--border-focus);
    box-shadow: 0 0 0 4px var(--primary-glow);
    outline: none;
}

.auth-links {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.auth-links a {
    font-size: 13px;
    font-weight: 500;
}

.auth-links-inline {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.auth-register-promo {
    margin-top: 24px;
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.2);
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.08), rgba(79, 70, 229, 0.04));
    text-align: center;
}

.auth-register-promo-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 8px;
}

.auth-register-promo-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.auth-register-promo-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.auth-register-promo-button {
    justify-content: center;
}

.vme-basemap-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
}

.vme-basemap-toggle__button {
    border: none;
    border-radius: 999px;
    padding: 8px 14px;
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.vme-basemap-toggle__button:hover {
    background: rgba(79, 70, 229, 0.08);
    color: var(--text-primary);
}

.vme-basemap-toggle__button.is-active {
    background: linear-gradient(135deg, var(--text-primary), #1e293b);
    color: white;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.22);
}

.vme-basemap-toggle__button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

/* ── Section Headings ────────────────────────────────────── */
.section-heading {
    text-align: center;
    margin-bottom: 48px;
}

.section-heading h2 {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 12px;
}

.section-heading p {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Feature Grid ────────────────────────────────────────── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(79,70,229,0.08), rgba(16,185,129,0.05));
    border: 1px solid rgba(79,70,229,0.1);
    flex-shrink: 0;
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-body {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ── Home CTA Panel ──────────────────────────────────────── */
.home-cta-panel {
    background: linear-gradient(135deg, rgba(99,102,241,0.10), rgba(16,185,129,0.07));
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: var(--radius-xl);
    padding: 64px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.home-cta-panel::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.home-cta-panel::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(16,185,129,0.10) 0%, transparent 65%);
    pointer-events: none;
}

.home-cta-title {
    font-size: clamp(22px, 3vw, 36px);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.home-cta-text {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.home-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.home-region-links {
    margin-top: 18px;
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.home-region-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.home-region-link:hover {
    opacity: 0.75;
    color: var(--primary);
}

/* ── Filter Tab Group ────────────────────────────────────── */
.filter-tab-group {
    display: flex;
    background: var(--bg-base);
    padding: 4px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

/* ── Filter Divider ──────────────────────────────────────── */
.filter-divider {
    width: 1px;
    height: 20px;
    background: var(--border);
    margin: 0 8px;
    flex-shrink: 0;
    align-self: center;
}

/* ── Search Page Form ────────────────────────────────────── */
.search-page-form {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    align-items: center;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .navbar { padding: 0 16px; }
    .hero { padding: 64px 16px 48px; }
    .hero-title { font-size: clamp(32px, 8vw, 40px); }
    .hero-subtitle { font-size: 16px; margin-bottom: 28px; }
    .hero-badge { font-size: 12px; padding: 8px 14px; }
    .search-bar { flex-wrap: wrap; border-radius: var(--radius-lg); padding: 10px 12px; gap: 10px; }
    .search-icon { order: 1; }
    .search-input { order: 2; min-width: 0; flex: 1 1 0; width: calc(100% - 32px); padding: 10px 4px; }
    .search-select { order: 3; width: 100%; border-left: 0; border-top: 1px solid var(--border); padding: 12px 4px 4px; }
    .search-bar .btn { order: 4; width: 100%; justify-content: center; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .results-grid { grid-template-columns: 1fr; }
    .live-impact-panel {
        grid-template-columns: 1fr;
        grid-template-areas: "header" "metrics" "action";
        padding: 18px;
        row-gap: 16px;
    }
    .live-impact-grid { grid-template-columns: 1fr; gap: 10px; }
    .live-impact-metric { padding: 12px 14px; }
    .live-impact-metric-value { font-size: 22px; }
    .live-impact-action { justify-self: flex-start; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .section { padding: 48px 0; }
    .stat-card { padding: 20px; }
    .card { padding: 20px; }
    .insight-info-card {
        padding: 20px;
        margin-bottom: 18px;
    }
    .mandate-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }
    .insight-note {
        padding: 11px 12px;
    }
    .page-header { padding: 36px 0 28px; margin-bottom: 28px; }
    .page-header p { font-size: 15px; }
    .legal-shell { padding-top: 28px; padding-bottom: 56px; }
    .legal-header { padding-bottom: 24px; margin-bottom: 22px; }
    .legal-layout { grid-template-columns: 1fr; gap: 18px; }
    .legal-nav { position: static; flex-direction: row; overflow-x: auto; }
    .legal-nav a { white-space: nowrap; }
    .legal-document { padding: 24px 20px; }
    .legal-document h3 { font-size: 17px; margin-top: 28px; padding-top: 20px; }
    .legal-document p { font-size: 14px; line-height: 1.72; }
    .result-card { padding: 16px; }
    .result-card-footer { flex-direction: column; align-items: flex-start; gap: 8px; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-side-card { position: static; }
    .contact-form-grid { grid-template-columns: 1fr; }
    .contact-form-card,
    .contact-side-card { padding: 22px; }
    .search-page-form > * { width: 100% !important; min-width: 0 !important; }
    .search-results-toolbar { flex-direction: column; align-items: flex-start !important; gap: 12px; }
    .search-results-toolbar .btn { width: 100%; justify-content: center; }
    .search-filters-row { align-items: stretch; }
    .filter-tab-group { width: 100%; overflow-x: auto; }
    .filter-tab { white-space: nowrap; }
    .location-filter-panel {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 18px;
    }
    .location-filter-controls {
        grid-template-columns: 1fr;
    }
    .location-typeahead-option {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
    .location-typeahead-meta {
        text-align: left;
    }
    .pagination { flex-wrap: wrap; justify-content: flex-start; }
    .page-btn { min-width: 40px; }
    .footer { padding: 32px 16px 24px; }
    .footer-top { gap: 28px; }
    .footer-brand { max-width: 100%; }
    .footer-nav { gap: 24px 36px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
    .cookie-banner__card {
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-banner__actions {
        justify-content: stretch;
    }
    .cookie-banner__actions .btn,
    .cookie-banner__actions a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .vme-basemap-toggle__button { padding: 7px 12px; }
}

@media (max-width: 480px) {
    .contact-page-shell { padding-top: 32px; padding-bottom: 56px; }
    .contact-submit-button { width: 100%; }
    .hero::before { width: 520px; height: 520px; }
    .hero::after { width: 320px; height: 180px; }
    .hero-title { font-size: 30px; }
    .home-cta-panel { padding: 36px 24px; }
    .home-cta-actions .btn { width: 100%; justify-content: center; }
    .home-region-links { flex-direction: column; gap: 10px; }
    .home-region-link { width: 100%; display: block; text-align: center; }
    .footer-top { flex-direction: column; }
    .footer-nav { flex-direction: row; gap: 20px 36px; }
    .section-heading { margin-bottom: 32px; }
    .stats-grid { grid-template-columns: 1fr; }
    .insight-info-card {
        padding: 18px 16px;
    }
    .insight-info-card h2 {
        font-size: 19px !important;
        line-height: 1.25;
    }
    .insight-info-card h3 {
        line-height: 1.3;
    }
    .insight-info-card p,
    .insight-note {
        font-size: 14px;
        line-height: 1.65;
    }
    .search-select { font-size: 14px; }
    .table-responsive { margin: 0 -16px; width: calc(100% + 32px); border-radius: 0 !important; }
    .data-table th, .data-table td { padding: 12px 10px; }
    .detail-hero { flex-wrap: wrap; }
    .detail-hero-actions { width: 100%; align-items: flex-start; }
}

.location-search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px 12px;
    transition: all 0.2s;
}

.location-search-bar:focus-within {
    border-color: var(--border-focus);
    background: var(--bg-surface);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.location-search-bar .search-icon {
    color: var(--text-muted);
    flex-shrink: 0;
}

.location-search-bar .search-input {
    width: 100%;
    padding: 6px 0;
    font-size: 14px;
}

.typeahead-menu {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.typeahead-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 12px;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    color: inherit;
}

.typeahead-item:last-child { border-bottom: none; }
.typeahead-item:hover { background: rgba(79, 70, 229, 0.06); }

.typeahead-kind {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
}

.typeahead-main {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.typeahead-sub {
    font-size: 11px;
    color: var(--text-muted);
}

.typeahead-loading,
.typeahead-empty {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    font-size: 13px;
    color: var(--text-muted);
}

.typeahead-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(79, 70, 229, 0.18);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: typeahead-spin 0.8s linear infinite;
    flex-shrink: 0;
}

@keyframes typeahead-spin {
    to { transform: rotate(360deg); }
}

/* ── Financials view (syndic detail) ─────────────────────── */
.financials-section {
    --financials-up: #059669;
    --financials-down: #dc2626;
}

.financials-kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.financials-kpi {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.financials-kpi:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.financials-kpi-value {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 4px;
}

.financials-kpi-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.financials-kpi-trend {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 999px;
}

.financials-kpi-trend.up {
    color: var(--financials-up);
    background: rgba(5, 150, 105, 0.1);
}

.financials-kpi-trend.down {
    color: var(--financials-down);
    background: rgba(220, 38, 38, 0.1);
}

.financials-kpi-trend-note {
    font-weight: 400;
    color: var(--text-muted);
}

.financials-sparkline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.financials-spark {
    padding: 18px 20px 20px;
}

.financials-spark-svg {
    width: 100%;
    height: 56px;
    display: block;
    margin: 4px 0 12px;
}

.financials-spark-axis {
    display: flex;
    justify-content: space-between;
    gap: 6px;
}

.financials-spark-axis > div {
    text-align: center;
    flex: 1 1 0;
    min-width: 0;
}

.financials-spark-axis-year {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}

.financials-spark-axis-value {
    font-size: 12px;
    color: var(--text-primary);
    font-weight: 700;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.financials-table th,
.financials-table td {
    font-size: 13px;
    padding-left: 10px;
    padding-right: 10px;
}

.financials-table .financials-col-num {
    text-align: right;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    /* Reserve enough width for "€12.345.678" so columns never collide,
       even when 8+ years are visible. */
    min-width: 110px;
    padding-left: 14px;
    padding-right: 14px;
}

.financials-table thead .financials-col-num {
    font-weight: 700;
    color: var(--text-primary);
    background: var(--bg-input);
}

.financials-table tbody td:first-child {
    /* Line-item label column — keep readable but not greedy. */
    min-width: 200px;
    font-size: 13px;
}

.financials-table .financials-col-num.negative {
    color: var(--financials-down);
}

.financials-table .financials-group-row td {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    background: var(--bg-input);
    border-top: 1px solid var(--border);
    padding-top: 10px;
    padding-bottom: 10px;
}

.financials-table .financials-total-row td {
    font-weight: 700;
    color: var(--text-primary);
    background: rgba(79, 70, 229, 0.03);
}

.financials-filings {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.financials-filings > li {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    background: var(--bg-input);
}

.financials-filings-head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
}

.financials-filings-head strong {
    font-size: 16px;
    letter-spacing: -0.01em;
}

.financials-filings-meta {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.financials-attachments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.financials-attachment {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.financials-attachment:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.financials-attachment-icon { font-size: 14px; }
.financials-attachment-name { font-weight: 600; max-width: 240px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.financials-attachment-size { font-size: 11px; color: var(--text-muted); }

/* ===== Syndic profile claim — marketing page ===== */
.claim-marketing { padding-top: 48px; padding-bottom: 80px; }

.claim-hero {
    text-align: center;
    padding: 56px 24px 64px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(79, 70, 229, 0.04));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl, 24px);
    margin-bottom: 56px;
}

.claim-hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 14px;
    margin-bottom: 18px;
}

.claim-hero-title {
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.15;
    margin: 0 auto 16px;
    max-width: 760px;
    letter-spacing: -0.02em;
}

.claim-hero-sub {
    max-width: 640px;
    margin: 0 auto 28px;
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.55;
}

.claim-hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.claim-hero-meta {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 13px;
}

.claim-section { margin-bottom: 56px; }

.claim-section-header { text-align: center; margin-bottom: 32px; }

.claim-section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.claim-section-header h2 { font-size: clamp(22px, 3vw, 30px); margin: 0; }

.claim-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.claim-step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.claim-step-num {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.claim-step-body h3 { font-size: 16px; margin: 0 0 8px; }
.claim-step-body p { font-size: 14px; color: var(--text-secondary); margin: 0; line-height: 1.55; }

.claim-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.claim-benefit {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
}

.claim-benefit-icon { font-size: 28px; margin-bottom: 12px; }
.claim-benefit h3 { font-size: 16px; margin: 0 0 8px; }
.claim-benefit p { font-size: 14px; color: var(--text-secondary); margin: 0; line-height: 1.55; }

.claim-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
}

.claim-faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
}

.claim-faq-item h4 { font-size: 15px; margin: 0 0 10px; }
.claim-faq-item p { font-size: 14px; color: var(--text-secondary); margin: 0; line-height: 1.55; }

.claim-cta {
    text-align: center;
    padding: 48px 24px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl, 24px);
}

.claim-cta h2 { font-size: clamp(22px, 3vw, 28px); margin: 0 0 12px; }
.claim-cta p { color: var(--text-secondary); max-width: 520px; margin: 0 auto 24px; line-height: 1.55; }

/* ===== Syndic profile claim — wizard ===== */
.claim-wizard { padding-top: 32px; padding-bottom: 64px; max-width: 720px; }

.claim-wizard-back {
    display: inline-block;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 18px;
}

.claim-wizard-back:hover { color: var(--primary); }

.claim-wizard-header { margin-bottom: 24px; }

.claim-wizard-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

.claim-wizard-header h1 { font-size: clamp(22px, 3vw, 30px); margin: 0 0 8px; letter-spacing: -0.01em; }

.claim-wizard-meta { font-size: 13px; color: var(--text-muted); display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.claim-wizard-meta code { font-family: monospace; font-size: 12px; background: var(--bg-input); padding: 2px 8px; border-radius: 4px; }

.claim-wizard-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.claim-wizard-card h2 { font-size: 18px; margin: 0 0 8px; }
.claim-wizard-help { font-size: 14px; color: var(--text-secondary); margin: 0 0 20px; line-height: 1.5; }

.claim-wizard-form { display: flex; flex-direction: column; gap: 20px; }

.claim-email-options { display: flex; flex-direction: column; gap: 8px; }

.claim-email-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.claim-email-option:hover { border-color: var(--primary); }
.claim-email-option input[type="radio"] { accent-color: var(--primary); }
.claim-email-option-text { font-family: monospace; font-size: 14px; color: var(--text-primary); }

.claim-code-input-wrap { display: flex; flex-direction: column; gap: 8px; }
.claim-code-input-wrap label { font-size: 13px; font-weight: 600; color: var(--text-secondary); }

.claim-code-input {
    font-family: monospace;
    font-size: 28px;
    letter-spacing: 12px;
    text-align: center;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-input);
    color: var(--text-primary);
    width: 100%;
}

.claim-wizard-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.claim-wizard-success, .claim-wizard-error, .claim-wizard-warn {
    text-align: center;
    padding: 36px 28px;
}

.claim-wizard-success-icon, .claim-wizard-error-icon, .claim-wizard-warn-icon {
    font-size: 44px;
    margin-bottom: 12px;
}

/* ===== Syndic profile claim — CTA on SyndicDetail ===== */
.syndic-claim-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(79, 70, 229, 0.04));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.syndic-claim-cta-text { font-size: 14px; color: var(--text-secondary); flex: 1 1 320px; }
.syndic-claim-cta-text strong { color: var(--text-primary); }

.syndic-claim-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #6ee7b7;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

/* ===== Pricing page ===== */
.pricing-page { padding-top: 48px; padding-bottom: 80px; }

.pricing-hero { text-align: center; margin-bottom: 48px; }

.pricing-hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 14px;
    margin-bottom: 16px;
}

.pricing-hero h1 { font-size: clamp(28px, 5vw, 40px); margin: 0 auto 12px; max-width: 760px; letter-spacing: -0.02em; }
.pricing-hero-sub { max-width: 600px; margin: 0 auto 28px; color: var(--text-secondary); line-height: 1.55; }

.pricing-toggle {
    display: inline-flex;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 4px;
    gap: 4px;
}

.pricing-toggle-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 14px;
    transition: background 0.15s, color 0.15s;
}

.pricing-toggle-option:hover { color: var(--text-primary); }

.pricing-toggle-option.active {
    background: var(--bg-card);
    color: var(--text-primary);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.pricing-toggle-badge {
    background: #d1fae5;
    color: #065f46;
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 64px;
}

.pricing-tier {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-tier-featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), 0 8px 24px rgba(99,102,241,0.12);
    transform: translateY(-4px);
}

.pricing-tier-current { border-color: #10b981; }

.pricing-tier-flag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pricing-tier-flag-current { background: #10b981; }

.pricing-tier-name { font-size: 18px; margin: 0 0 12px; }
.pricing-tier-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.pricing-tier-price-amount { font-size: 36px; font-weight: 700; letter-spacing: -0.02em; }
.pricing-tier-price-period { color: var(--text-muted); font-size: 14px; }
.pricing-tier-tagline { color: var(--text-secondary); font-size: 14px; line-height: 1.5; margin: 0 0 20px; }

.pricing-tier-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.pricing-tier-features li { padding: 6px 0; font-size: 14px; color: var(--text-primary); border-bottom: 1px dashed var(--border); }
.pricing-tier-features li:last-child { border-bottom: none; }

.pricing-tier-cta { margin-top: auto; }

.pricing-section { margin-bottom: 56px; }
.pricing-section-header {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 32px;
}

.pricing-section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.pricing-section h2 { font-size: clamp(22px, 3vw, 28px); margin: 0 0 10px; }
.pricing-section-header p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 auto;
    max-width: 860px;
}

.pricing-section-header .pricing-section-lead {
    max-width: 940px;
    font-size: 15px;
}

.pricing-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    align-items: stretch;
}

.pricing-package {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    display: flex;
    flex-direction: column;
}

.pricing-package h3 { font-size: 16px; margin: 0 0 8px; }
.pricing-package-price { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 8px; }
.pricing-package-desc { color: var(--text-secondary); font-size: 13px; line-height: 1.5; margin: 0 0 16px; min-height: 60px; }

.pricing-package-volume {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 28px 30px;
    background: linear-gradient(135deg, rgba(79,70,229,0.08), rgba(16,185,129,0.07));
    border-color: rgba(99,102,241,0.24);
}

.pricing-package-volume .pricing-section-eyebrow {
    color: var(--primary);
}

.pricing-package-volume h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.pricing-package-volume .pricing-package-desc {
    max-width: 760px;
    min-height: 0;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.65;
}

.pricing-package-volume .btn {
    justify-self: end;
    white-space: nowrap;
}

.pricing-package-volume-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.pricing-package-volume-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(99,102,241,0.16);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 720px) {
    .pricing-section-header {
        text-align: left;
    }

    .pricing-section-header p,
    .pricing-section-header .pricing-section-lead {
        font-size: 14px;
    }

    .pricing-package-volume {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .pricing-package-volume .btn {
        justify-self: stretch;
        width: 100%;
    }
}

.pricing-footnote {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}
.pricing-footnote a { color: var(--primary); }

/* ===== VME property insight ===== */
.vme-feedback-nudge {
    margin: -6px 0 18px;
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.vme-property-card {
    margin-bottom: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    overflow: hidden;
}

.vme-property-card__header {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.vme-property-card__header h2 {
    font-size: 18px;
    margin: 0 0 4px;
    color: var(--text-primary);
}

.vme-property-card__subtitle {
    font-size: 13px;
    color: var(--text-secondary);
}

.badge-property-confidence {
    background: rgba(16,185,129,0.1);
    color: #047857;
    border: 1px solid rgba(16,185,129,0.2);
}

.vme-property-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1px;
    background: var(--border);
}

.vme-property-metric {
    padding: 14px 16px;
    background: var(--bg-card);
    min-width: 0;
}

.vme-property-metric__label,
.vme-property-block__title {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
}

.vme-property-metric__value {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 4px;
}

.vme-property-metric__value--key {
    font-size: 13px;
    margin-top: 6px;
    overflow-wrap: anywhere;
}

.vme-property-metric__value--text {
    font-size: 15px;
    margin-top: 6px;
}

.vme-property-card__body {
    padding: 16px 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
    gap: 18px;
}

.vme-property-block {
    min-width: 0;
}

.vme-property-block__title {
    margin-bottom: 8px;
}

.vme-property-block__title--spaced {
    margin-top: 14px;
}

.vme-property-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vme-property-chip {
    font-size: 12px;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 5px 9px;
    overflow-wrap: anywhere;
}

.vme-property-empty {
    font-size: 13px;
    color: var(--text-muted);
}

.vme-property-facts {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.vme-property-facts strong {
    color: var(--text-primary);
}

@media (max-width: 820px) {
    .vme-property-card__header,
    .vme-property-card__body {
        grid-template-columns: 1fr;
    }

    .vme-property-card__header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== Property browse ===== */
.properties-page .page-header {
    max-width: 940px;
}

.property-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.property-search-form {
    align-items: stretch;
}

.property-search-bar {
    flex: 1;
    min-width: 260px;
    border-radius: var(--radius-md);
}

.property-min-floors {
    width: 130px;
}

.properties-locked-preview {
    margin-top: 20px;
}

.properties-locked-search {
    margin-bottom: 20px;
}

.properties-locked-search input:disabled,
.properties-locked-search select:disabled,
.properties-locked-search button:disabled {
    cursor: not-allowed;
    opacity: 0.72;
}

.property-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 16px;
}

.property-result-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.property-result-card__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.property-result-card__header h2 {
    font-size: 17px;
    margin: 0 0 6px;
    color: var(--text-primary);
}

.property-metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.property-metric-grid div {
    background: var(--bg-card);
    padding: 10px;
    min-width: 0;
}

.property-metric-grid span {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.property-metric-grid strong {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
    overflow-wrap: anywhere;
}

.property-result-card__keys {
    display: grid;
    gap: 6px;
    font-size: 12px;
    color: var(--text-secondary);
}

.property-result-card__keys strong {
    color: var(--text-primary);
    overflow-wrap: anywhere;
}

.property-environment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: var(--text-secondary);
}

.property-environment-list span {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 7px 9px;
    overflow-wrap: anywhere;
}

.property-environment-list strong {
    color: var(--text-primary);
}

.property-address-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.property-address-list span,
.property-source-chip {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 5px 9px;
    color: var(--text-secondary);
    font-size: 12px;
}

.property-result-card__footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-top: auto;
}

.property-result-card__footer > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.property-detail-page .page-header {
    max-width: 980px;
}

.property-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: -10px 0 22px;
}

.property-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.property-detail-card__header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    padding: 22px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-surface);
}

.property-detail-card__header h2 {
    margin: 0 0 6px;
    font-size: 22px;
    color: var(--text-primary);
}

.property-detail-metrics {
    margin: 22px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.property-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 0 22px 22px;
}

.property-detail-block {
    display: grid;
    align-content: start;
    gap: 12px;
    min-width: 0;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-card);
}

.property-detail-block h3 {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
}

.property-detail-empty {
    color: var(--text-muted);
    font-size: 13px;
}

@media (max-width: 720px) {
    .property-results-grid {
        grid-template-columns: 1fr;
    }

    .property-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .property-detail-grid {
        grid-template-columns: 1fr;
    }

    .property-detail-card__header {
        flex-direction: column;
    }

    .property-detail-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin: 16px;
    }

    .property-detail-grid {
        padding: 0 16px 16px;
    }

    .property-result-card__header,
    .property-result-card__footer {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ===== Upgrade prompt (inline upsell card) ===== */
.upgrade-prompt {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(79,70,229,0.04));
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.upgrade-prompt-icon { font-size: 28px; flex: 0 0 auto; }
.upgrade-prompt-body { flex: 1 1 280px; }
.upgrade-prompt-headline { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.upgrade-prompt-reason { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.upgrade-prompt-cta { white-space: nowrap; }
.upgrade-prompt-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}
.upgrade-prompt-secondary {
    font-size: 12px;
    color: var(--primary);
    text-decoration: none;
}
.upgrade-prompt-secondary:hover { text-decoration: underline; }

/* ===== Contact gate (blurred contact rows under an access overlay) ===== */
.contact-gate {
    position: relative;
    min-height: 130px;
}
.contact-gate-blur {
    filter: blur(5px);
    user-select: none;
    pointer-events: none;
    opacity: 0.55;
}
.contact-gate-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-preview-summary {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 13px;
}
.contact-preview-summary strong {
    color: var(--text-primary);
    font-size: 22px;
}
.contact-preview-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.contact-preview-kind {
    min-width: 54px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    text-align: center;
}
.contact-gate-panel {
    width: 100%;
    max-width: 520px;
    padding: 16px;
    border: 1px solid rgba(79, 70, 229, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
}
.contact-gate-panel strong {
    display: block;
    color: var(--text-primary);
    font-size: 14px;
    margin-bottom: 4px;
}
.contact-gate-panel p {
    margin: 0 0 12px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.45;
}
.contact-gate-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.contact-gate-secondary {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}
.contact-gate-secondary:hover { text-decoration: underline; }

/* =========================================================
   Paywall — field-level masking, hover affordance, page hint
   ========================================================= */

/* GatedValue: empty styled span. Real value never reaches HTML when locked.
   We use a static dotted-pattern + subtle indigo tint (not a moving shimmer)
   so users don't mistake locked content for "still loading". Combined with
   the 🔒 lock icon overlay and the cursor:help/pointer they should recognise
   this as a paywalled value instead of a spinner. */
.gated-value {
    position: relative;
    display: inline-block;
    height: 0.95em;
    min-height: 14px;
    vertical-align: middle;
    border-radius: 4px;
    background:
        /* tiny lock motif left-aligned */
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='10' viewBox='0 0 8 10' fill='none'><rect x='1' y='4' width='6' height='5' rx='1' stroke='%234f46e5' stroke-width='1' fill='%23eef2ff'/><path d='M2.5 4V3a1.5 1.5 0 113 0v1' stroke='%234f46e5' stroke-width='1'/></svg>") left center / 8px no-repeat,
        repeating-linear-gradient(
            -45deg,
            rgba(99, 102, 241, 0.10) 0px,
            rgba(99, 102, 241, 0.10) 4px,
            rgba(148, 163, 184, 0.06) 4px,
            rgba(148, 163, 184, 0.06) 8px
        );
    border: 1px dashed rgba(99, 102, 241, 0.32);
    padding-left: 12px;
    user-select: none;
    cursor: help;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.gated-value:hover {
    border-color: rgba(99, 102, 241, 0.55);
    background-color: rgba(99, 102, 241, 0.06);
}

.gated-value--short    { width: 68px; }
.gated-value--medium   { width: 104px; }
.gated-value--long     { width: 156px; }
.gated-value--block    { display: block; width: min(260px, 100%); height: 16px; }
.gated-value--currency { width: 84px; font-variant-numeric: tabular-nums; }

/* Tooltip on hover — only inside a GatedSection (where the label is set) */
.gated-section .gated-value {
    position: relative;
}

.gated-section .gated-value::after {
    content: var(--gated-tooltip, "🔓 Upgrade om te zien");
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    padding: 6px 10px;
    background: var(--text-primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.22);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 6;
}

.gated-section .gated-value::before {
    content: "";
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top-color: var(--text-primary);
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
    z-index: 6;
}

.gated-section .gated-value:hover::after,
.gated-section .gated-value:focus-visible::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.gated-section .gated-value:hover::before,
.gated-section .gated-value:focus-visible::before {
    opacity: 1;
}

@keyframes gatedShimmer {
    0%   { background-position: 130% 0; }
    100% { background-position: -130% 0; }
}

/* GatedSection: hover region that surfaces the unlock pill */
.gated-section {
    position: relative;
    border-radius: var(--radius-md);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.gated-section:hover {
    background: rgba(79, 70, 229, 0.025);
}

.gated-section:hover .gated-value {
    background: linear-gradient(
        90deg,
        rgba(79, 70, 229, 0.16) 0%,
        rgba(99, 102, 241, 0.42) 45%,
        rgba(79, 70, 229, 0.16) 90%
    );
    background-size: 220% 100%;
    animation-duration: 1.6s;
}

/* The unlock pill — top-right, hidden until hover, click to act */
.gated-section-unlock-form {
    display: contents;
}

.gated-section-pill {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(79, 70, 229, 0.22);
    background: #ffffff;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    pointer-events: none;
    z-index: 5;
    white-space: nowrap;
}

.gated-section:hover .gated-section-pill,
.gated-section:focus-within .gated-section-pill {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.gated-section-pill:hover {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.32);
}

.gated-section-pill-icon {
    font-size: 13px;
    line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
    .gated-value { animation: none; }
}

/* AccessHint: slim banner shown above gated content */
.access-hint {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(16, 185, 129, 0.04) 100%);
    border: 1px solid rgba(79, 70, 229, 0.16);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
}

.access-hint--free {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0%, rgba(79, 70, 229, 0.04) 100%);
    border-color: rgba(16, 185, 129, 0.18);
}

.access-hint-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(79, 70, 229, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.access-hint--free .access-hint-icon {
    border-color: rgba(16, 185, 129, 0.2);
}

.access-hint-body {
    flex: 1;
    min-width: 0;
}

.access-hint-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 2px;
}

.access-hint--free .access-hint-eyebrow {
    color: var(--accent);
}

.access-hint-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
}

.access-hint-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.access-hint-cta {
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--text-primary);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.access-hint-cta:hover {
    background: var(--primary);
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.28);
}

.access-hint-secondary {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.access-hint-secondary:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

@media (max-width: 640px) {
    .access-hint {
        flex-wrap: wrap;
        gap: 10px;
        padding: 14px;
    }
    .access-hint-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

/* ── Syndic detail — combined summary card (stats + geo) ────── */
.syndic-summary-card {
    display: flex;
    align-items: stretch;
    gap: 24px;
    padding: 18px 22px;
    margin-bottom: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    flex-wrap: wrap;
}

.syndic-summary-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    flex: 1 1 320px;
    min-width: 0;
}

.syndic-summary-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.syndic-summary-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}

.syndic-summary-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.syndic-summary-stat-hint {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.syndic-summary-geo {
    flex: 1 1 280px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding-left: 24px;
    border-left: 1px solid var(--border);
}

.syndic-summary-geo-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    font-size: 12px;
    color: var(--text-secondary);
}

.syndic-summary-geo-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.syndic-summary-geo-legend strong {
    color: var(--text-primary);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

@media (max-width: 720px) {
    .syndic-summary-card { gap: 16px; padding: 16px; }
    .syndic-summary-geo { padding-left: 0; padding-top: 12px; border-left: 0; border-top: 1px solid var(--border); }
}

/* ── Syndic detail — Summary above, Map below (stacked) ─────────────
   Previously these were a two-column grid at >=1100px but the map kept
   feeling cramped next to the summary, especially with the legend +
   sidebar. Stacked vertically each card gets full container width and
   the map breathes. */
.syndic-overview-row {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}

.syndic-overview-row .syndic-summary-card,
.syndic-overview-row .syndic-overview-map {
    margin-bottom: 0;
    width: 100%;
}

/* ── Subtle inline link-button used by contextual feedback triggers ── */
.btn-link-subtle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    margin: 0;
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: var(--primary);
    font: inherit;
    font-size: inherit;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
}
.btn-link-subtle:hover {
    background: rgba(79, 70, 229, 0.08);
    color: #4338ca;
}

/* ── Dev feedback chip — persistent bottom-right (legacy, now hidden) ─ */
.dev-feedback-chip {
    position: fixed;
    bottom: 18px;
    right: 18px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(79, 70, 229, 0.2);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.14), 0 2px 6px rgba(15, 23, 42, 0.06);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.3;
    max-width: calc(100vw - 36px);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    animation: devFeedbackFadeIn 0.5s ease 0.4s both;
}

@keyframes devFeedbackFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dev-feedback-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(79, 70, 229, 0.18), 0 4px 10px rgba(15, 23, 42, 0.08);
    border-color: rgba(79, 70, 229, 0.35);
    color: var(--text-primary);
}

.dev-feedback-chip-dot {
    position: relative;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent-light);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}

.dev-feedback-chip-dot::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: inherit;
    animation: livePulse 2.2s ease-out infinite;
}

.dev-feedback-chip-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dev-feedback-chip-body strong {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--primary);
}

.dev-feedback-chip-body span {
    font-size: 11.5px;
    color: var(--text-secondary);
    font-weight: 500;
}

.dev-feedback-chip-arrow {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s ease, color 0.2s ease;
}

.dev-feedback-chip:hover .dev-feedback-chip-arrow {
    transform: translateX(3px);
    color: var(--primary);
}

@media (prefers-reduced-motion: reduce) {
    .dev-feedback-chip { animation: none; }
    .dev-feedback-chip-dot::after { animation: none; }
}

@media (max-width: 600px) {
    .dev-feedback-chip {
        bottom: 12px;
        right: 12px;
        padding: 8px 12px 8px 10px;
        gap: 8px;
    }
    .dev-feedback-chip-body span { display: none; }
    .dev-feedback-chip-body strong { font-size: 11.5px; }
}

/* ── Export catalog (new pre-built file catalog) ───────────────── */
.exports-catalog-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.exports-catalog-filter {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 140px;
}

.exports-catalog-filter label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.exports-catalog-filter select {
    height: 34px;
    padding: 0 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 13px;
}

.exports-municipality-toolbar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    margin-bottom: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.exports-municipality-toolbar input[type="search"] {
    flex: 1;
    height: 36px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-input);
    font-size: 14px;
}

.exports-municipality-count {
    font-size: 12px;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.exports-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.export-catalog-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    min-width: 0;
}

.export-catalog-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.export-catalog-card--paid {
    border-color: rgba(79, 70, 229, 0.18);
}

.export-catalog-card-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 11px;
    color: var(--text-muted);
}

.export-catalog-card-region {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 12px;
    letter-spacing: 0.01em;
}

.export-catalog-card-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 12px;
    color: var(--text-secondary);
}

.export-catalog-card-meta strong {
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.export-catalog-card-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.export-catalog-card-actions {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.export-catalog-card-actions .btn {
    flex: 1;
    justify-content: center;
}

/* ────────────────────────────────────────────────────────────────────
   .alert variants
   Used by 20+ pages (status flashes, validation banners) — historically
   relied on Bootstrap presence; defined here so all pages render the
   same regardless of Identity scaffold leftovers.
   ──────────────────────────────────────────────────────────────────── */
.alert {
    padding: 12px 16px;
    border-radius: var(--radius-md, 10px);
    border: 1px solid transparent;
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 16px;
}
.alert-success {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.28);
    color: #047857;
}
.alert-danger {
    background: rgba(220, 38, 38, 0.06);
    border-color: rgba(220, 38, 38, 0.28);
    color: #991b1b;
}
.alert-info {
    background: rgba(99, 102, 241, 0.06);
    border-color: rgba(99, 102, 241, 0.28);
    color: #3730a3;
}
.alert-warning {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.28);
    color: #92400e;
}
.alert a { color: inherit; font-weight: 600; }

.authenticator-qr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
}
.authenticator-qr svg {
    display: block;
    width: 180px;
    height: 180px;
}

/* ────────────────────────────────────────────────────────────────────
   Manage-form helpers — re-themed Identity scaffolds use the same
   .form-input + .form-group already defined above; these are the
   leftover bits the scaffolds reach for.
   ──────────────────────────────────────────────────────────────────── */
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.form-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}
.validation-error,
.validation-message,
.text-danger {
    color: #b91c1c;
    font-size: 13px;
    margin-top: 6px;
    display: block;
}
.validation-summary,
.validation-summary-errors {
    color: #991b1b;
    background: rgba(220, 38, 38, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.28);
    border-radius: var(--radius-md, 10px);
    padding: 10px 14px;
    margin-bottom: 14px;
    font-size: 13px;
}
/* ────────────────────────────────────────────────────────────────────
   Activity feed — /activity in-app changes feed
   ──────────────────────────────────────────────────────────────────── */
.activity-feed {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    border-left: 4px solid var(--border);
    transition: border-left-color 0.2s;
}

.activity-item.severity-info     { border-left-color: var(--primary-light); }
.activity-item.severity-notable  { border-left-color: var(--accent); }
.activity-item.severity-important { border-left-color: #d97706; }

.activity-item-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.activity-severity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    flex-shrink: 0;
}

.severity-info     .activity-severity-dot { background: var(--primary-light); }
.severity-notable  .activity-severity-dot { background: var(--accent); }
.severity-important .activity-severity-dot { background: #d97706; }

.activity-when {
    font-size: 12px;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

.activity-category {
    font-size: 11px;
    color: var(--text-muted);
    background: var(--bg-card-hover);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1px 7px;
    margin-left: auto;
}

.activity-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.activity-link {
    font-size: 13px;
}

.activity-link a {
    color: var(--primary);
    text-decoration: none;
}

.activity-link a:hover {
    color: var(--primary-light);
}

/* Navbar unseen-activity badge */
.activity-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #d97706;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    margin-left: 5px;
    vertical-align: middle;
}

.validation-summary ul,
.validation-summary-errors ul {
    margin: 0;
    padding-left: 18px;
}
