/**
 * Cursor-inspired look & feel for Energievoordelen.nl
 * Dark, minimal, tight typography, frosted nav, white CTAs, soft ambient glow.
 * Loaded after style.css — overrides the emerald light theme without rewriting every rule.
 *
 * Fonts: system UI stack only (production CSP is font-src 'self' — no Google Fonts).
 */

:root {
    --bg: #000000;
    --bg-elevated: #0a0a0a;
    --bg-surface: #111111;
    --bg-surface-hover: #1a1a1a;
    --border: rgba(255, 255, 255, 0.10);
    --border-strong: rgba(255, 255, 255, 0.18);
    --text: #f5f5f5;
    --text-muted: #c4c4c4;
    --text-faint: #9a9a9a;
    --accent: #ffffff;
    --accent-fg: #000000;
    --glow: rgba(120, 160, 255, 0.18);
    --glow-warm: rgba(253, 230, 138, 0.12);

    /* Remap legacy tokens used across templates */
    --primary-50: #141414;
    --primary-100: #1a1a1a;
    --primary-200: #e5e5e5;
    --primary-500: #ffffff;
    --primary-600: #ffffff;
    --primary-700: #f0f0f0;
    --primary-800: #0a0a0a;
    --primary-900: #000000;
    --primary-glow: rgba(255, 255, 255, 0.08);

    --slate-50: #0a0a0a;
    --slate-100: #111111;
    --slate-200: #1c1c1c;
    --slate-300: #2a2a2a;
    --slate-400: #9a9a9a;
    --slate-500: #c4c4c4;
    --slate-600: #d4d4d4;
    --slate-700: #e5e5e5;
    --slate-800: #f5f5f5;
    --slate-900: #ffffff;

    --accent-orange: #fbbf24;
    --accent-blue: #93c5fd;

    --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    --font-display: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    --max-width: 1120px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 999px;
    --shadow-sm: none;
    --shadow-md: 0 0 0 1px var(--border);
    --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.45);
    --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Base ─────────────────────────────────────────────── */
html {
    color-scheme: dark;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background-color: var(--bg);
    font-size: 1.0625rem; /* 17px — readable body on dark */
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, .section-title, .logo {
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    color: var(--text);
    font-weight: 600;
}

p, li, td, th, label, .meta, .breadcrumb {
    color: var(--text-muted);
}

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

::selection {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

/* ── Navigation (Cursor frosted bar) ──────────────────── */
nav {
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

nav a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9375rem;
}

.logo {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--text) !important;
    gap: 0;
}

.logo span {
    color: var(--text);
    font-weight: 600;
}

.nav-links {
    gap: 28px;
    font-size: 0.875rem;
}

.nav-links a {
    opacity: 1;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a::after {
    display: none;
}

.nav-links .nav-cta,
.nav-links a.nav-cta {
    background: var(--accent);
    color: var(--accent-fg) !important;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.8125rem;
    border: none;
}

.nav-links .nav-cta:hover,
.nav-links a.nav-cta:hover {
    background: #e5e5e5;
    color: var(--accent-fg) !important;
    opacity: 1;
}

.nav-links a.nav-urgent {
    color: var(--text-muted) !important;
    font-weight: 500 !important;
    font-size: 0.875rem !important;
}

.nav-toggle .hamburger-line {
    background: var(--text);
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
    background: var(--bg);
    color: var(--text);
    padding: 120px 0 96px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -20% 10% auto;
    height: 70%;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, var(--glow) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 70% 20%, var(--glow-warm) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, transparent 60%, var(--bg) 100%),
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
    background-size: auto, 48px 48px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.05em;
    color: var(--text);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 .hero-accent {
    color: var(--text-muted);
    font-weight: 500;
}

.hero p {
    font-size: 1.1875rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.65;
    opacity: 1;
}

.hero-urgency-badge {
    background: transparent !important;
    border: 1px solid var(--border-strong) !important;
    border-radius: var(--radius-pill) !important;
    padding: 6px 14px !important;
    font-size: 0.8125rem !important;
    font-weight: 500 !important;
    color: var(--text-muted) !important;
    margin-bottom: 28px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(8px);
}

.search-box {
    background: var(--bg-surface);
    border-radius: var(--radius-pill);
    padding: 6px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: none;
    border: 1px solid var(--border-strong);
}

.search-box:focus-within {
    transform: none;
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
}

.search-box input {
    background: transparent;
    color: var(--text);
    padding: 14px 22px;
    font-size: 0.95rem;
}

.search-box input::placeholder {
    color: var(--text-faint);
}

.search-box button {
    background: var(--accent);
    color: var(--accent-fg);
    border-radius: var(--radius-pill);
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.search-box button:hover {
    background: #e5e5e5;
    box-shadow: none;
}

.hero-popular-links {
    margin-top: 20px;
    opacity: 1;
    font-size: 0.8125rem;
    color: var(--text-faint);
}

.hero-popular-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s ease;
}

.hero-popular-links a:hover {
    color: var(--text);
    text-decoration: none;
}

.hero-cta-row {
    margin: 28px 0 8px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Mini calc — quiet dark panel */
.hero-mini-calc {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin: 0 auto 28px;
    max-width: 480px;
    text-align: left;
}

.hero-mini-calc__label {
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 0.875rem;
}

.hero-mini-calc__row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-mini-calc__row label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hero-mini-calc__row input {
    width: 72px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-strong);
    background: var(--bg);
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;
}

.hero-mini-calc__row button {
    background: var(--accent);
    color: var(--accent-fg);
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.8125rem;
    cursor: pointer;
    font-family: inherit;
}

.hero-mini-calc__result {
    margin-top: 12px;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
    min-height: 24px;
}

.hero-mini-calc__links {
    margin-top: 14px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn-cta {
    background: var(--accent);
    color: var(--accent-fg) !important;
    padding: 12px 22px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: none;
    letter-spacing: -0.01em;
}

.btn-cta:hover {
    background: #e5e5e5;
    box-shadow: none;
    transform: none;
}

.btn-secondary,
a.btn-secondary {
    background: transparent;
    color: var(--text) !important;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-pill);
    padding: 12px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--bg-surface);
    border-color: rgba(255, 255, 255, 0.28);
    transform: none;
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted) !important;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 10px 18px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.btn-ghost:hover {
    color: var(--text) !important;
    border-color: var(--border-strong);
}

/* ── Stats / social proof ─────────────────────────────── */
.stats-bar,
.social-proof-bar {
    background: var(--bg) !important;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: none;
    padding: 40px 0;
}

.stat-number,
.sp-number {
    color: var(--text) !important;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.04em;
}

.stat-label,
.sp-label {
    color: var(--text-faint) !important;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
}

.social-proof-item {
    background: transparent;
}

.rs-tag {
    background: var(--bg-surface) !important;
    border: 1px solid var(--border);
    color: var(--text-muted) !important;
}

/* ── Sections & cards ─────────────────────────────────── */
.categories,
.how-it-works,
.b2b,
.faq,
.pricing {
    background: var(--bg) !important;
    background-color: var(--bg) !important;
}

.section-title,
.categories h2,
.how-it-works h2,
.b2b h2,
.faq h2 {
    color: var(--text) !important;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.cat-card,
.card,
.fact-card,
.step-card,
.pricing-card,
.bol-product-card,
.waitlist-modal__content {
    background: var(--bg-surface) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: none !important;
    color: var(--text);
}

.cat-card:hover,
.card:hover,
.fact-card:hover {
    border-color: var(--border-strong) !important;
    transform: translateY(-2px);
    box-shadow: none !important;
    background: var(--bg-surface-hover) !important;
}

.cat-name,
.card h3,
.step-card h3,
.pricing-card h3,
.fact-card h3 {
    color: var(--text) !important;
}

.cat-count,
.card p,
.step-card p,
.pricing-sub,
.bol-product-desc {
    color: var(--text-muted) !important;
}

.card .bedrag,
.pricing-amount,
.stat-number {
    color: var(--text) !important;
}

.card .meta {
    border-top-color: var(--border);
    color: var(--text-faint);
}

.card-badge {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    border-radius: var(--radius-pill);
}

.card-badge.landelijk {
    background: rgba(147, 197, 253, 0.1);
    color: var(--accent-blue);
}

.card-badge.gemeentelijk {
    background: rgba(251, 191, 36, 0.1);
    color: var(--accent-orange);
}

.card-badge.ai {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
}

.step-icon {
    background: var(--bg-surface) !important;
    border: 1px solid var(--border);
    color: var(--text);
}

.step-card:hover .step-icon {
    background: var(--bg-surface-hover) !important;
    transform: none;
}

/* ── CTA band ─────────────────────────────────────────── */
.cta {
    background: var(--bg-elevated) !important;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta .price {
    color: var(--text) !important;
}

/* ── Saldering section (index inline styles override) ─── */
.saldering-section {
    background: var(--bg) !important;
    border-top: 1px solid var(--border) !important;
    border-bottom: 1px solid var(--border) !important;
    padding: 80px 0 !important;
}

.saldering-section h2 {
    color: var(--text) !important;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.saldering-section .loss-number {
    color: var(--text) !important;
    font-family: var(--font-display);
}

.saldering-section .loss-number small {
    color: var(--text-muted) !important;
}

.saldering-comparison .card,
.saldering-solutions .sol {
    background: var(--bg-surface) !important;
    border: 1px solid var(--border) !important;
    box-shadow: none !important;
}

.saldering-comparison .card.before {
    border-left: 2px solid var(--text-faint) !important;
}

.saldering-comparison .card.after {
    border-left: 2px solid rgba(255, 255, 255, 0.35) !important;
}

.saldering-comparison .card.solution {
    border-left: 2px solid #fff !important;
}

.saldering-solutions .sol h4 {
    color: var(--text) !important;
}

.saldering-solutions .sol p {
    color: var(--text-muted) !important;
}

/* ── Lead magnet / checklist strip ────────────────────── */
.lead-magnet {
    padding: 64px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.lead-magnet__panel {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    box-shadow: none;
}

.lead-magnet__panel h2 {
    color: var(--text);
    font-weight: 600;
    letter-spacing: -0.03em;
    margin: 0 0 10px;
    font-size: 1.5rem;
}

.lead-magnet__panel p {
    color: var(--text-muted);
    margin: 0 0 24px;
}

.lead-magnet__note {
    margin-top: 14px !important;
    font-size: 0.8125rem !important;
    color: var(--text-faint) !important;
}

/* ── Pricing (index) ──────────────────────────────────── */
.pricing-card--highlight {
    border-color: var(--border-strong) !important;
}

.pricing-badge {
    background: var(--accent) !important;
    color: var(--accent-fg) !important;
}

.pricing-features li {
    color: var(--text-muted) !important;
    border-bottom-color: var(--border) !important;
}

.btn-waitlist {
    color: var(--text) !important;
    border-color: var(--border-strong) !important;
    border-radius: var(--radius-pill) !important;
    background: transparent !important;
}

.btn-waitlist:hover {
    background: var(--bg-surface-hover) !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
}

.waitlist-modal__backdrop {
    background: rgba(0, 0, 0, 0.75) !important;
}

.waitlist-modal__content h3,
.waitlist-modal__content p {
    color: var(--text) !important;
}

.waitlist-modal__content p {
    color: var(--text-muted) !important;
}

.waitlist-input {
    background: var(--bg) !important;
    border-color: var(--border-strong) !important;
    color: var(--text) !important;
    border-radius: var(--radius-sm) !important;
}

.waitlist-btn {
    background: var(--accent) !important;
    color: var(--accent-fg) !important;
    border-radius: var(--radius-pill) !important;
}

.waitlist-success h4 {
    color: var(--text) !important;
}

/* ── Footer ───────────────────────────────────────────── */
footer {
    background: var(--bg);
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding: 72px 0 40px;
}

footer h4 {
    color: var(--text);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

footer a {
    color: var(--text-muted);
}

footer a:hover {
    color: var(--text);
    transform: none;
}

footer .container {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}

/* ── Banner ───────────────────────────────────────────── */
.saldering-banner {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.875rem;
    position: relative;
    top: auto;
    z-index: 50;
}

.saldering-banner strong {
    color: var(--text);
}

.saldering-banner a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border-strong);
}

.saldering-banner a:hover {
    color: #fff;
}

.saldering-banner .countdown {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
}

/* ── FAQ (Cursor accordion — high contrast) ───────────── */
.faq {
    background: var(--bg) !important;
    background-color: var(--bg) !important;
    border-top: 1px solid var(--border);
    padding: 80px 0;
}

.faq .section-title,
.faq h2 {
    color: var(--text) !important;
    font-weight: 600;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-surface) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: none !important;
}

.faq-item:hover {
    border-color: var(--border-strong) !important;
}

.faq-item[open] {
    border-color: var(--border-strong) !important;
    background: var(--bg-surface-hover) !important;
}

.faq-item summary {
    padding: 18px 22px !important;
    font-weight: 600 !important;
    font-size: 1.0625rem !important; /* 17px — readable */
    line-height: 1.45 !important;
    color: var(--text) !important;
    background: transparent !important; /* was white — broke dark theme */
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+" !important;
    font-size: 1.25rem !important;
    font-weight: 400 !important;
    color: var(--text-faint) !important;
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
    transform: none !important;
}

.faq-item[open] summary::after {
    content: "−" !important;
    color: var(--text) !important;
    transform: none !important;
}

.faq-item summary:hover {
    color: #fff !important;
}

.faq-item p {
    padding: 0 22px 20px !important;
    color: var(--text-muted) !important;
    line-height: 1.7 !important;
    font-size: 1rem !important; /* 16px body */
    margin: 0;
}

.faq-item a {
    color: #fff !important;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}

.faq-item a:hover {
    color: var(--text-muted) !important;
}

/* ── Breadcrumb / misc light leftovers ────────────────── */
.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--text);
}

.bol-affiliate-section,
.bol-product-card {
    background: var(--bg-surface) !important;
    border-color: var(--border) !important;
}

.bol-product-title {
    color: var(--text) !important;
}

.bol-product-price {
    color: var(--text) !important;
}

.bol-product-cta {
    color: var(--text-muted) !important;
}

/* Forms on dark */
input, textarea, select {
    color-scheme: dark;
}

/* Mobile nav drawer */
@media (max-width: 768px) {
    .nav-links {
        background: var(--bg);
        border-left: 1px solid var(--border);
    }

    .nav-links a {
        color: var(--text-muted);
        border-bottom: 1px solid var(--border);
        padding: 14px 20px;
    }

    .hero {
        padding: 80px 0 64px;
        text-align: left;
    }

    .hero h1,
    .hero p,
    .search-box,
    .hero-popular-links,
    .hero-cta-row,
    .hero-mini-calc {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }

    .hero-cta-row,
    .hero-popular-links {
        justify-content: flex-start;
    }

    .search-box {
        flex-direction: column;
        border-radius: var(--radius-md);
        gap: 8px;
    }

    .search-box button {
        width: 100%;
    }

    footer .container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Subtle entrance motion */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .container > * {
    animation: fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero .container > *:nth-child(1) { animation-delay: 0.05s; }
.hero .container > *:nth-child(2) { animation-delay: 0.12s; }
.hero .container > *:nth-child(3) { animation-delay: 0.18s; }
.hero .container > *:nth-child(4) { animation-delay: 0.24s; }
.hero .container > *:nth-child(5) { animation-delay: 0.3s; }
.hero .container > *:nth-child(6) { animation-delay: 0.36s; }

/* ── SVG icons (replace emoji in category cards) ───────── */
.icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    color: inherit;
}

.cat-icon {
    font-size: unset !important;
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.cat-card:hover .cat-icon {
    color: var(--text);
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, 0.07);
    transform: none;
}

.cat-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    border-radius: 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: unset;
}

.sol-icon {
    font-size: unset !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.step-icon {
    font-size: unset !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 56px !important;
    height: 56px !important;
    line-height: 1 !important;
    border-radius: 14px !important;
    background: var(--bg-surface) !important;
    border: 1px solid var(--border);
    color: var(--text-muted);
    margin-bottom: 16px;
}

.step-card:hover .step-icon {
    color: var(--text);
    border-color: var(--border-strong);
    transform: none !important;
}

.gemeente-cat-link {
    background: var(--bg-surface);
    border-radius: 12px;
    padding: 16px;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.gemeente-cat-link:hover {
    border-color: var(--border-strong);
    background: var(--bg-surface-hover);
}

.gemeente-cat-link__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text-muted);
    flex-shrink: 0;
}

/* ── Trust / testimonials (Cursor quiet urgency) ── */
.trust-signals,
.testimonials,
.provinces {
    background: var(--bg) !important;
    background-color: var(--bg) !important;
    border-top: 1px solid var(--border);
}

.trust-signals .section-title,
.testimonials .section-title,
.provinces .section-title {
    color: var(--text) !important;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.trust-card,
.testimonial-card,
.province-card {
    background: var(--bg-surface) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: none !important;
    color: var(--text);
}

.trust-card:hover,
.testimonial-card:hover,
.province-card:hover {
    background: var(--bg-surface-hover) !important;
    border-color: var(--border-strong) !important;
    transform: translateY(-2px);
    box-shadow: none !important;
}

.trust-card h3,
.testimonial-name,
.province-name {
    color: var(--text) !important;
    font-weight: 600;
}

.trust-card p,
.testimonial-text,
.testimonial-meta,
.province-count,
.testimonial-disclaimer {
    color: var(--text-muted) !important;
}

.trust-icon {
    font-size: unset !important;
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

/* Quiet urgency — no red/pink; Cursor uses subtle white emphasis */
.trust-card--urgent {
    background: var(--bg-surface) !important;
    border: 1px solid var(--border-strong) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04) !important;
}

.trust-card--urgent .trust-icon {
    color: var(--text);
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, 0.06);
}

.trust-card--urgent h3 {
    color: var(--text) !important;
}

.trust-card--urgent p {
    color: var(--text-muted) !important;
}

.testimonial-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text-muted);
    flex-shrink: 0;
}

.testimonial-stars {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--text) !important;
    letter-spacing: 0;
}

.testimonial-stars .icon {
    color: var(--text);
    opacity: 0.9;
}

.testimonial-text {
    font-style: normal !important;
    font-size: 1rem !important;
    line-height: 1.65 !important;
    margin-bottom: 20px !important;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 40px !important;
    height: 40px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    color: var(--text) !important;
    border: 1px solid var(--border-strong) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.8125rem !important;
}

.testimonial-meta__sep {
    color: var(--text-faint);
}

.testimonial-meta__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
}

.testimonial-meta__tag .icon {
    color: var(--text-faint);
}
