/**
 * BlijfBewust - Stylesheet
 * SafeGuard Light Theme - Vertrouwen & Veiligheid
 * Senior-friendly design: grote letters, hoge contrasten, duidelijke knoppen
 */

/* ==========================================
   CSS VARIABELEN - SafeGuard Light Pallet
   ========================================== */
:root {
    /* === NEUTRALS (structuur & rust) === */
    --bg-page: #F9FAFB;           /* Globale achtergrond - rustig, niet klinisch */
    --bg-white: #FFFFFF;          /* Cards & content blokken */
    --bg-muted: #F3F4F6;          /* Zijbalken, secundaire panelen */
    
    --border-subtle: #E5E7EB;     /* Card borders, scheidingslijnen */
    --border-strong: #CBD5F5;     /* Actieve elementen, focus states */
    
    --text-primary: #0F172A;      /* Hoofdtekst, titels - donkerblauw-achtig */
    --text-secondary: #4B5563;    /* Beschrijvingen, secundaire tekst */
    --text-muted: #6B7280;        /* Helper-tekst, placeholders */
    --text-white: #FFFFFF;        /* Tekst op donkere achtergronden */
    
    /* === PRIMAIR (vertrouwen & merk) === */
    --primary-base: #118eec;      /* Hoofd CTA's - aangepast blauw */
    --primary-dark: #0d6ebd;      /* Hover/pressed states */
    --primary-light: #e3f2fd;     /* Info-kaarten, lichte highlights */
    
    /* === ACCENT (info & interactie) === */
    --accent-cyan: #06B6D4;       /* Secundaire knoppen, links */
    --accent-cyan-light: #CFFAFE; /* Info callouts, tooltips */
    --accent-cyan-dark: #0E7490;  /* Hover states */
    
    /* === WAARSCHUWING (risico / twijfel) === */
    --warning-base: #F59E0B;      /* "Verdacht" labels, let op */
    --warning-bg: #FEF3C7;        /* Highlight blokken verdachte items */
    --warning-border: #D97706;    /* Rand verdachte elementen */
    --warning-text: #92400E;      /* Titel in warning banners */
    
    /* === GEVAAR (scam / stop) === */
    --danger-base: #DC2626;       /* "Scam gedetecteerd" badges */
    --danger-bg: #FEE2E2;         /* Uitleg waarom iets scam is */
    --danger-border: #991B1B;     /* Rand en iconen scam */
    
    /* === SUCCES (veilig / correct) === */
    --success-base: #16A34A;      /* "Veilig" badges, checkmarks */
    --success-bg: #DCFCE7;        /* Best practices blokken */
    --success-border: #166534;    /* Rand veilig voorbeeld */
    
    /* === INFO (neutraal / educatie) === */
    --info-base: #2563EB;         /* Info-iconen, educatieve kopjes */
    --info-bg: #EFF6FF;           /* Uitleg/theorie blokken */
    
    /* Legacy aliassen voor backward compatibility */
    --color-primary: var(--primary-base);
    --color-primary-light: #3B82F6;
    --color-primary-dark: var(--primary-dark);
    --color-secondary: var(--accent-cyan);
    --color-secondary-light: var(--accent-cyan-light);
    --color-accent: var(--success-base);
    --color-accent-light: #22C55E;
    --color-danger: var(--danger-base);
    --color-danger-light: #EF4444;
    --color-warning: var(--warning-base);
    --bg-light: var(--bg-page);
    --bg-cream: var(--bg-muted);
    --bg-blue-light: var(--primary-light);
    --text-dark: var(--text-primary);
    --text-medium: var(--text-secondary);
    --text-light: var(--text-muted);
    
    /* Typografie */
    --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Merriweather', Georgia, serif;
    
    /* Groottes - extra groot voor senioren */
    --text-xs: 1rem;
    --text-sm: 1.125rem;
    --text-base: 1.25rem;
    --text-lg: 1.5rem;
    --text-xl: 1.75rem;
    --text-2xl: 2rem;
    --text-3xl: 2.5rem;
    --text-4xl: 3rem;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
    
    /* Shadows - subtiel voor professionele look */
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 8px 24px rgba(15, 23, 42, 0.12), 0 4px 8px rgba(15, 23, 42, 0.06);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ==========================================
   RESET & BASE
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-page);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-base);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-fast);
}

a:hover, a:focus {
    color: var(--accent-cyan-dark);
}

/* ==========================================
   TOEGANKELIJKHEID
   ========================================== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-base);
    color: var(--text-white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    z-index: 9999;
    text-decoration: none;
}

.skip-link:focus {
    top: var(--space-sm);
}

:focus {
    outline: 3px solid var(--border-strong);
    outline-offset: 3px;
}

:focus-visible {
    outline: 3px solid var(--primary-base);
    outline-offset: 3px;
}

/* ==========================================
   LAYOUT
   ========================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-2xl) 0;
}

.section-alt {
    background: var(--bg-muted);
}

.section-dark {
    background: var(--primary-base);
    color: var(--text-white);
}

/* ==========================================
   HEADER & NAVIGATIE
   ========================================== */
.site-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-subtle);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    gap: var(--space-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    text-decoration: none;
    color: var(--primary-base);
}

.logo-icon {
    font-size: var(--text-2xl);
}

.logo-icon-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.logo-full-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-md);
    align-items: center;
}

.nav-link {
    font-size: var(--text-lg);
    font-weight: 600;
    text-decoration: none;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    color: var(--text-primary);
}

.nav-link:hover, .nav-link:focus {
    background: var(--primary-light);
    color: var(--primary-base);
}

/* Dropdown menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-subtle);
    list-style: none;
    min-width: 280px;
    padding: var(--space-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: var(--text-base);
    color: var(--text-primary);
}

.dropdown-menu a:hover {
    background: var(--primary-light);
    color: var(--primary-base);
}

.menu-topic-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: var(--space-sm);
    cursor: pointer;
}

.menu-icon {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--primary-base);
    position: relative;
    border-radius: 2px;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-base);
    left: 0;
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.menu-icon::before { top: -10px; }
.menu-icon::after { top: 10px; }

/* ==========================================
   HERO SECTIE
   ========================================== */
.hero {
    background: linear-gradient(135deg, var(--primary-base) 0%, #4dabf5 100%);
    color: var(--text-white);
    padding: var(--space-2xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.hero-subtitle {
    font-size: var(--text-xl);
    opacity: 0.95;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

/* ==========================================
   KNOPPEN
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    min-height: 60px;
}

/* Primary Button - Hoofdactie, vertrouwen uitstralen */
.btn-primary {
    background: var(--primary-base);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.35);
}

.btn-primary:hover, .btn-primary:focus {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.45);
    color: var(--text-white);
}

/* Secondary Button - Neutraal */
.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-base);
    border: 2px solid var(--border-strong);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover, .btn-secondary:focus {
    background: var(--info-bg);
    border-color: var(--primary-base);
    transform: translateY(-2px);
}

/* Tertiary / Link button - Accent cyan */
.btn-tertiary {
    background: transparent;
    color: var(--accent-cyan);
    padding: var(--space-sm) var(--space-md);
}

.btn-tertiary:hover, .btn-tertiary:focus {
    background: var(--accent-cyan-light);
    color: var(--accent-cyan-dark);
}

/* Success Button - Veilig/Correct */
.btn-success {
    background: var(--success-base);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.35);
}

.btn-success:hover, .btn-success:focus {
    background: var(--success-border);
    transform: translateY(-2px);
}

/* Warning Button */
.btn-warning {
    background: var(--warning-base);
    color: var(--text-white);
}

.btn-warning:hover, .btn-warning:focus {
    background: var(--warning-border);
    transform: translateY(-2px);
}

/* Danger Button */
.btn-danger {
    background: var(--danger-base);
    color: var(--text-white);
}

.btn-danger:hover, .btn-danger:focus {
    background: var(--danger-border);
    transform: translateY(-2px);
}

.btn-facebook {
    background: #1877f2;
    color: var(--text-white);
}

.btn-facebook:hover, .btn-facebook:focus {
    background: #166fe5;
    color: var(--text-white);
}

.btn-outline {
    background: transparent;
    border: 3px solid currentColor;
    color: var(--text-white);
}

.btn-outline:hover, .btn-outline:focus {
    background: var(--text-white);
    color: var(--primary-base);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--text-xl);
    min-height: 70px;
}

.btn-block {
    width: 100%;
}

/* ==========================================
   KAARTEN
   ========================================== */
.card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
    padding: var(--space-lg);
    transition: all var(--transition-normal);
}

.card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-strong);
    transform: translateY(-4px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
    color: var(--primary-base);
}

.card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

/* Topic kaarten */
.topic-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.topic-card .card-icon {
    font-size: 4rem;
    text-align: center;
}

.topic-card .btn {
    margin-top: auto;
}

/* ==========================================
   SCAM SIMULATIE KAARTEN (Specifiek)
   ========================================== */
/* Verdacht voorbeeld */
.card-suspicious {
    border: 2px solid var(--warning-border);
    position: relative;
}

.card-suspicious::before {
    content: 'Verdacht voorbeeld';
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: var(--warning-base);
    color: var(--text-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 700;
}

/* Scam voorbeeld */
.card-scam {
    border: 2px solid var(--danger-base);
    position: relative;
}

.card-scam::before {
    content: 'Scam voorbeeld';
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: var(--danger-base);
    color: var(--text-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 700;
}

/* Veilig voorbeeld */
.card-safe {
    border: 2px solid var(--success-base);
    position: relative;
}

.card-safe::before {
    content: 'Veilig voorbeeld';
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: var(--success-base);
    color: var(--text-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 700;
}

/* ==========================================
   GRID SYSTEEM
   ========================================== */
.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ==========================================
   TOPIC PAGINA
   ========================================== */
.topic-header {
    background: linear-gradient(135deg, var(--primary-base) 0%, #4dabf5 100%);
    color: var(--text-white);
    padding: var(--space-lg) 0;
}

.topic-header .container {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.topic-icon {
    font-size: 2rem;
    background: rgba(255,255,255,0.15);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
    overflow: hidden;
}

.topic-icon svg {
    width: 32px !important;
    height: 32px !important;
}

.topic-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.topic-title h1 {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    margin-bottom: var(--space-sm);
}

.topic-title p {
    font-size: var(--text-lg);
    opacity: 0.9;
}

/* Content sectie */
.content-section {
    padding: var(--space-xl) 0;
}

.content-section h2 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--primary-base);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.content-section h2 .section-icon {
    font-size: var(--text-2xl);
}

.section-icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin-right: var(--space-xs);
}

.section-icon-svg svg {
    width: 1.5em;
    height: 1.5em;
    color: var(--primary-base);
}

.content-section p {
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.content-section ul, .content-section ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.content-section li {
    margin-bottom: var(--space-sm);
    padding-left: var(--space-xs);
    color: var(--text-primary);
}

/* ==========================================
   ALERT & INFO BOXEN (SafeGuard Style)
   ========================================== */
/* Info box - Educatief/Neutraal */
.info-box {
    background: var(--info-bg);
    border-left: 5px solid var(--info-base);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.info-box h4 {
    color: var(--primary-base);
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

/* Warning box - Mogelijk verdacht */
.info-box.warning {
    background: var(--warning-bg);
    border-color: var(--warning-border);
}

.info-box.warning h4 {
    color: var(--warning-text);
}

/* Danger box - Scam/Gevaar */
.info-box.danger {
    background: var(--danger-bg);
    border-color: var(--danger-base);
}

.info-box.danger h4 {
    color: var(--danger-border);
}

/* Success box - Veilig/Correct */
.info-box.success {
    background: var(--success-bg);
    border-color: var(--success-base);
}

.info-box.success h4 {
    color: var(--success-border);
}

/* ==========================================
   ALERT BANNERS
   ========================================== */
.alert {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin: var(--space-md) 0;
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.alert-info {
    background: var(--info-bg);
    border: 1px solid var(--primary-light);
    color: var(--text-primary);
}

.alert-info .alert-icon {
    color: var(--info-base);
}

.alert-warning {
    background: var(--warning-bg);
    border: 1px solid var(--warning-border);
    color: var(--text-primary);
}

.alert-warning .alert-icon {
    color: var(--warning-base);
}

.alert-warning .alert-title {
    color: var(--warning-text);
}

.alert-danger {
    background: var(--danger-bg);
    border: 1px solid var(--danger-base);
    color: var(--text-primary);
}

.alert-danger .alert-icon {
    color: var(--danger-base);
}

.alert-danger .alert-title {
    color: var(--danger-border);
}

.alert-success {
    background: var(--success-bg);
    border: 1px solid var(--success-base);
    color: var(--text-primary);
}

.alert-success .alert-icon {
    color: var(--success-base);
}

.alert-success .alert-title {
    color: var(--success-border);
}

/* ==========================================
   BADGES & LABELS
   ========================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 700;
}

.badge-safe {
    background: var(--success-base);
    color: var(--text-white);
}

.badge-suspicious {
    background: var(--warning-base);
    color: var(--text-white);
}

.badge-scam {
    background: var(--danger-base);
    color: var(--text-white);
}

.badge-info {
    background: var(--accent-cyan);
    color: var(--text-white);
}

.badge-tip {
    background: var(--accent-cyan-light);
    color: var(--accent-cyan-dark);
}

/* ==========================================
   TECHNIEKEN LIJST
   ========================================== */
.technique-list {
    display: grid;
    gap: var(--space-md);
    list-style: none;
    padding: 0;
}

.technique-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    transition: all var(--transition-fast);
}

.technique-item:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
}

/* Afbeelding links naast tekst */
.technique-image {
    flex: 0 0 100px;
    width: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-muted);
}

.technique-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Nummer badge (voor stappen lijsten) */
.technique-number {
    background: var(--primary-base);
    color: var(--text-white);
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-lg);
    flex-shrink: 0;
}

.technique-content {
    flex: 1;
    min-width: 0;
}

.technique-content h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
    color: var(--primary-base);
}

.technique-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: var(--text-base);
}

/* Responsive - op kleine schermen afbeelding boven tekst */
@media (max-width: 500px) {
    .technique-item {
        flex-wrap: wrap;
    }
    
    .technique-image {
        flex: 0 0 auto;
        width: 80px;
    }
    
    .technique-content {
        flex-basis: 100%;
    }
}

/* ==========================================
   WAARSCHUWINGSSIGNALEN GRID
   ========================================== */
.warning-signals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.warning-signal-card {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-left: 4px solid var(--primary-base);
    border-radius: var(--radius-md);
    border-bottom-right-radius: 0;
    padding: var(--space-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.warning-signal-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, transparent 50%, var(--primary-base) 50%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.warning-signal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(17, 142, 236, 0.15);
    border-color: var(--primary-base);
}

.warning-signal-card:hover::after {
    opacity: 1;
}

.warning-signal-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: var(--primary-base);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.warning-signal-card:hover .warning-signal-icon {
    opacity: 1;
    transform: scale(1.1);
}

.warning-signal-icon svg {
    width: 100%;
    height: 100%;
}

.warning-signal-card p {
    margin: 0;
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
}

@media (max-width: 700px) {
    .warning-signals-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .warning-signal-card {
        padding: var(--space-md);
    }
    
    .warning-signal-icon {
        width: 24px;
        height: 24px;
    }
    
    .warning-signal-card p {
        font-size: var(--text-sm);
    }
    
    .warning-signal-card::after {
        width: 18px;
        height: 18px;
    }
}

/* ==========================================
   TEST SECTIE
   ========================================== */
.test-section {
    background: var(--bg-muted);
    padding: var(--space-2xl) 0;
}

.test-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.test-intro h2 {
    justify-content: center;
}

.question-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.question-number {
    display: inline-block;
    background: var(--primary-base);
    color: var(--text-white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.question-text {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--primary-base);
}

.answer-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.answer-option {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-page);
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: var(--text-lg);
}

.answer-option:hover {
    background: var(--primary-light);
    border-color: var(--border-strong);
}

.answer-option input {
    /* Custom radio button met vaste grootte */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    border: 2px solid var(--border-strong);
    border-radius: 50%;
    background: white;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.answer-option input:checked {
    border-color: var(--primary-base);
    background: var(--primary-base);
}

.answer-option input:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.answer-option.selected {
    background: var(--primary-light);
    border-color: var(--primary-base);
}

.answer-option.correct {
    background: var(--success-bg);
    border-color: var(--success-base);
}

.answer-option.incorrect {
    background: var(--danger-bg);
    border-color: var(--danger-base);
}

/* ==========================================
   VOORTGANGSBALK
   ========================================== */
.progress-bar {
    background: var(--border-subtle);
    border-radius: var(--radius-full);
    height: 12px;
    margin-bottom: var(--space-lg);
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, var(--success-base) 0%, #22C55E 100%);
    height: 100%;
    border-radius: var(--radius-full);
    transition: width var(--transition-normal);
}

/* Score/Risico progressie (drie kleuren) */
.progress-bar-risk {
    display: flex;
    height: 12px;
    border-radius: var(--radius-full);
    overflow: hidden;
    background: var(--border-subtle);
}

.progress-safe {
    background: var(--success-base);
}

.progress-warning {
    background: var(--warning-base);
}

.progress-danger {
    background: var(--danger-base);
}

/* ==========================================
   RESULTAAT PAGINA
   ========================================== */
.result-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    max-width: 600px;
    margin: 0 auto;
}

.result-score {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}

.result-score.excellent { color: var(--success-base); }
.result-score.good { color: var(--primary-base); }
.result-score.needs-work { color: var(--warning-base); }
.result-score.poor { color: var(--danger-base); }

.result-label {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.result-message {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xl);
    padding: var(--space-md);
    background: var(--bg-page);
    border-radius: var(--radius-md);
    color: var(--text-primary);
}

/* Optioneel formulier */
.optional-form {
    background: var(--info-bg);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-top: var(--space-lg);
    text-align: left;
    border: 1px solid var(--primary-light);
}

.optional-form h3 {
    margin-bottom: var(--space-sm);
    font-size: var(--text-lg);
    color: var(--primary-base);
}

.optional-form p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    font-size: var(--text-base);
    color: var(--text-primary);
}

.form-group input {
    width: 100%;
    padding: var(--space-md);
    font-size: var(--text-lg);
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    background: var(--bg-white);
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.form-group input:focus {
    border-color: var(--primary-base);
    outline: none;
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: var(--primary-dark);
    color: var(--text-white);
    padding: var(--space-2xl) 0 var(--space-lg);
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.footer-logo .logo-icon {
    font-size: var(--text-2xl);
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
}

.footer-tagline {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links h3,
.footer-contact h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-md);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-white);
    opacity: 0.8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) 0;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-cyan-light);
}

.footer-topic-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-contact p {
    opacity: 0.8;
    margin-bottom: var(--space-md);
}

.social-buttons {
    display: flex;
    gap: var(--space-sm);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-lg);
    text-align: center;
    font-size: var(--text-sm);
}

.footer-bottom a {
    color: var(--accent-cyan);
}

.footer-disclaimer {
    opacity: 0.6;
    margin-top: var(--space-sm);
    font-size: var(--text-xs);
}

/* ==========================================
   STATISTIEKEN BADGE
   ========================================== */
.stats-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255,255,255,0.15);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    border: 1px solid rgba(255,255,255,0.2);
}

/* ==========================================
   TRUST INDICATORS (Extra voor vertrouwen)
   ========================================== */
.trust-banner {
    background: var(--primary-light);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.trust-banner-icon {
    font-size: var(--text-2xl);
    color: var(--primary-base);
}

.trust-banner-text {
    color: var(--text-primary);
}

.trust-banner-text strong {
    color: var(--primary-base);
}

/* Security check indicator */
.security-check {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--success-base);
    font-weight: 600;
}

.security-check::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--success-bg);
    border-radius: 50%;
    font-size: var(--text-sm);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    :root {
        --text-base: 1.125rem;
        --text-lg: 1.25rem;
        --text-xl: 1.5rem;
        --text-2xl: 1.75rem;
        --text-3xl: 2rem;
        --text-4xl: 2.5rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: var(--space-lg);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        border-bottom: 1px solid var(--border-subtle);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: var(--space-md);
        text-align: center;
    }
    
    .has-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-muted);
        margin-top: var(--space-sm);
        border: none;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: var(--text-3xl);
    }
    
    .topic-header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-buttons {
        justify-content: center;
    }
    
    .btn {
        width: 100%;
    }
    
    .btn-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .section {
        padding: var(--space-xl) 0;
    }
    
    .card {
        padding: var(--space-md);
    }
    
    .question-card {
        padding: var(--space-md);
    }
    
    .result-score {
        font-size: 4rem;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
    .site-header,
    .site-footer,
    .btn,
    .test-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        background: white;
        color: black;
    }
    
    .hero {
        background: none;
        color: black;
        padding: 1cm 0;
    }
}

/* ==========================================
   ANIMATIES
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* Pulse animation voor belangrijke acties */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(29, 78, 216, 0.35);
    }
    50% {
        box-shadow: 0 4px 25px rgba(29, 78, 216, 0.5);
    }
}

.btn-primary.pulse {
    animation: pulse 2s infinite;
}

/* ==========================================
   HOMEPAGE - NIEUWE VISUELE STIJLEN
   ========================================== */

/* Hero Home - Grotere impact */
.hero-home {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: var(--space-2xl) 0;
}

.hero-home h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.hero-home .hero-subtitle {
    font-size: var(--text-xl);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    color: var(--primary-base);
    margin-bottom: var(--space-sm);
}

.section-header p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-base);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

/* How it works - Steps */
.how-it-works {
    background: var(--bg-white);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.step-card {
    background: var(--bg-page);
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    position: relative;
    transition: all var(--transition-normal);
}

.step-card:hover {
    border-color: var(--primary-base);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-base);
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--text-lg);
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
}

.step-card h3 {
    font-size: var(--text-xl);
    color: var(--primary-base);
    margin-bottom: var(--space-sm);
}

.step-card p {
    color: var(--text-secondary);
    font-size: var(--text-base);
}

.step-arrow {
    font-size: 2.5rem;
    color: var(--primary-base);
    font-weight: bold;
}

/* Topics Section */
.section-topics {
    background: linear-gradient(180deg, var(--bg-muted) 0%, var(--bg-page) 100%);
    padding: var(--space-2xl) 0;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    max-width: 1100px;
    margin: 0 auto;
}

/* Large Topic Cards - Senior-friendly */
.topic-card-large {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--primary-base);
    transition: all var(--transition-normal);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.topic-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(17, 142, 236, 0.25);
    border-color: var(--primary-dark);
}

.topic-card-image {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-base) 0%, #3B82F6 100%);
}

.topic-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.topic-card-large:hover .topic-card-image img {
    transform: scale(1.05);
}

.topic-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topic-card-emoji {
    font-size: 5rem;
    opacity: 0.9;
}

.topic-card-content {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.topic-card-content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--primary-base);
    margin-bottom: var(--space-sm);
}

.topic-card-content p {
    color: var(--text-secondary);
    font-size: var(--text-base);
    margin-bottom: var(--space-lg);
    flex: 1;
}

.topic-card-cta {
    display: block;
    background: var(--primary-base);
    color: var(--text-white);
    text-align: center;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: var(--text-lg);
    transition: all var(--transition-fast);
}

.topic-card-large:hover .topic-card-cta {
    background: var(--primary-dark);
    transform: scale(1.02);
}

/* Coming soon cards */
.topic-card-coming-soon {
    opacity: 0.7;
    cursor: default;
    pointer-events: none;
}

.topic-card-coming-soon .topic-card-image {
    background: var(--bg-muted);
}

.topic-card-badge-soon {
    display: inline-block;
    background: var(--bg-muted);
    color: var(--text-secondary);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
}

/* Coming soon teaser in grid */
.topic-card-coming-soon-teaser {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-cyan-light) 100%);
    border: 3px dashed var(--primary-base);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    min-height: 280px;
}

.topic-card-coming-soon-teaser .coming-soon-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.topic-card-coming-soon-teaser h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--primary-base);
    margin-bottom: var(--space-sm);
}

.topic-card-coming-soon-teaser p {
    color: var(--text-secondary);
    margin: 0;
    font-size: var(--text-base);
    line-height: 1.6;
}

/* Stats Section */
.section-stats {
    background: var(--primary-base);
    color: var(--text-white);
    padding: var(--space-2xl) 0;
}

.stats-banner {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
}

.stats-icon {
    font-size: 4rem;
}

.stats-content h2 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-xs);
}

.stats-content p {
    opacity: 0.9;
    font-size: var(--text-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-fast);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.stat-value {
    font-size: var(--text-3xl);
    font-weight: 800;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: var(--text-sm);
    opacity: 0.85;
}

/* Why Section */
.section-why {
    background: var(--bg-white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-2xl);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.why-content h2 {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    color: var(--primary-base);
    margin-bottom: var(--space-md);
}

.why-intro {
    font-size: var(--text-lg);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.why-content > p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.why-features {
    margin-bottom: var(--space-xl);
}

.why-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: var(--text-lg);
}

.why-feature-icon {
    background: var(--success-base);
    color: var(--text-white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.why-image {
    display: flex;
    justify-content: center;
}

.why-image-card {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-cyan-light) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    border: 2px solid var(--border-strong);
}

.why-image-icon {
    font-size: 5rem;
    margin-bottom: var(--space-md);
}

.why-image-text strong {
    display: block;
    font-size: var(--text-xl);
    color: var(--primary-base);
    margin-bottom: var(--space-xs);
}

.why-image-text span {
    color: var(--text-secondary);
}

/* Quote Card - Nieuwe stijl */
.why-quote-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
    max-width: 400px;
}

.why-quote-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    opacity: 0.7;
}

.why-quote-card blockquote {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.why-quote-author {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-weight: 600;
}

/* CTA Section */
.section-cta {
    background: var(--bg-muted);
}

.cta-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-subtle);
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

.cta-card h2 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--primary-base);
    margin-bottom: var(--space-md);
}

.cta-card p {
    color: var(--text-secondary);
    font-size: var(--text-lg);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive voor nieuwe homepage */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-home {
        min-height: auto;
        padding: var(--space-xl) 0;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .step-card {
        max-width: 100%;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .stat-item {
        padding: var(--space-md);
    }
    
    .stat-value {
        font-size: var(--text-2xl);
    }
}

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

/* ==========================================
   PROMINENTE TEST CTA SECTIE
   ========================================== */
.test-cta-prominent {
    background: linear-gradient(135deg, var(--primary-base) 0%, #4dabf5 100%);
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.test-cta-prominent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.test-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.test-cta-icon {
    font-size: 5rem;
    margin-bottom: var(--space-md);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}

.test-cta-prominent h2 {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    color: var(--text-white);
    margin-bottom: var(--space-md);
}

.test-cta-prominent p {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-xl);
}

.test-cta-prominent .btn-start-test {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    color: var(--primary-base);
    font-size: var(--text-xl);
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--radius-lg);
    font-weight: 700;
    box-shadow: 
        0 4px 20px rgba(17, 142, 236, 0.35),
        0 0 0 3px rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    border: none;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 
            0 4px 20px rgba(17, 142, 236, 0.35),
            0 0 0 3px rgba(255, 255, 255, 0.25);
    }
    50% {
        box-shadow: 
            0 4px 30px rgba(17, 142, 236, 0.55),
            0 0 0 6px rgba(255, 255, 255, 0.4),
            0 0 40px rgba(17, 142, 236, 0.3);
    }
}

.test-cta-prominent .btn-start-test::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: left 0.6s ease;
}

.test-cta-prominent .btn-start-test:hover::before {
    left: 100%;
}

.test-cta-prominent .btn-start-test::after {
    content: '→';
    font-size: 1.3em;
    transition: transform 0.3s ease;
}

.test-cta-prominent .btn-start-test:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(17, 142, 236, 0.45),
        0 0 0 4px rgba(255, 255, 255, 0.35);
    animation: none;
}

.test-cta-prominent .btn-start-test:hover::after {
    transform: translateX(6px);
}

.test-cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: var(--text-white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

/* ==========================================
   SOCIAL SHARE BUTTONS MET LOGOS
   ========================================== */
.social-share-grid {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--space-lg);
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: var(--text-base);
    text-decoration: none;
    transition: all var(--transition-fast);
    min-width: 180px;
    justify-content: center;
}

.btn-social svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-social:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Facebook */
.btn-social-facebook {
    background: #1877f2;
    color: white;
}

.btn-social-facebook:hover {
    background: #166fe5;
    color: white;
}

/* X (Twitter) */
.btn-social-x {
    background: #000000;
    color: white;
}

.btn-social-x:hover {
    background: #1a1a1a;
    color: white;
}

/* WhatsApp */
.btn-social-whatsapp {
    background: #25D366;
    color: white;
}

.btn-social-whatsapp:hover {
    background: #20bd5a;
    color: white;
}

/* LinkedIn */
.btn-social-linkedin {
    background: #0A66C2;
    color: white;
}

.btn-social-linkedin:hover {
    background: #0958a8;
    color: white;
}

/* ==========================================
   VERBETERDE RESULTAAT PAGINA
   ========================================== */
.result-detail-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-lg);
    border: 1px solid var(--border-subtle);
}

.result-breakdown {
    margin-top: var(--space-lg);
}

.result-breakdown h3 {
    font-size: var(--text-xl);
    color: var(--primary-base);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.score-visual {
    display: flex;
    gap: var(--space-xs);
    margin: var(--space-md) 0;
    flex-wrap: wrap;
    justify-content: center;
}

.score-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: var(--text-lg);
}

.score-dot.correct {
    background: var(--success-bg);
    color: var(--success-base);
    border: 2px solid var(--success-base);
}

.score-dot.incorrect {
    background: var(--danger-bg);
    color: var(--danger-base);
    border: 2px solid var(--danger-base);
}

.share-result-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-cyan-light) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-xl);
    text-align: center;
}

.share-result-section h3 {
    color: var(--primary-base);
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.share-result-section p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

/* Share in card styling */
.share-in-card {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 2px dashed var(--border-subtle);
    text-align: center;
}

.share-in-card .social-share-grid {
    margin-top: var(--space-md);
}

.share-in-card .btn-social {
    min-width: 140px;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
}

/* ==========================================
   SWEETALERT CUSTOM STYLES
   ========================================== */
.swal2-popup {
    font-family: var(--font-body) !important;
    font-size: var(--text-lg) !important;
    border-radius: var(--radius-lg) !important;
}

.swal2-title {
    font-family: var(--font-heading) !important;
    color: var(--primary-base) !important;
}

.swal2-html-container {
    font-size: var(--text-base) !important;
    color: var(--text-secondary) !important;
}

.swal2-confirm {
    background: var(--primary-base) !important;
    border-radius: var(--radius-full) !important;
    font-weight: 700 !important;
    padding: var(--space-md) var(--space-xl) !important;
}

/* Sticky test button op topic pagina */
.sticky-test-btn {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 999;
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .sticky-test-btn {
        bottom: var(--space-md);
        right: var(--space-md);
        left: var(--space-md);
    }
    
    .social-share-grid {
        flex-direction: column;
    }
    
    .btn-social {
        width: 100%;
    }
}

/* ==========================================
   HULP & MELDPUNTEN PAGINA
   ========================================== */

/* Aangifte banner */
.aangifte-banner {
    display: flex;
    gap: var(--space-lg);
    background: linear-gradient(135deg, var(--warning-bg) 0%, #FEF9C3 100%);
    border: 2px solid var(--warning-base);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.aangifte-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.aangifte-content h2 {
    font-family: var(--font-heading);
    color: var(--warning-text);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-sm);
}

.aangifte-content p {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.aangifte-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-md) 0;
}

.aangifte-content ul li {
    padding: var(--space-xs) 0;
    padding-left: var(--space-lg);
    position: relative;
}

.aangifte-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-base);
    font-weight: bold;
}

.aangifte-tip {
    background: white;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
}

.aangifte-tip a {
    color: var(--primary-base);
}

/* Hulp cards */
.hulp-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
    overflow: hidden;
}

.hulp-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--primary-light);
    border-bottom: 1px solid var(--border-subtle);
}

.hulp-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.hulp-card-title {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.hulp-nummer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary-base);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: var(--text-sm);
}

.hulp-nummer-urgent {
    background: var(--danger-base);
}

.hulp-nummer-children {
    background: #8B5CF6;
}

.hulp-card-title h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--primary-base);
    margin: 0;
}

.hulp-subtitle {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.hulp-card-body {
    padding: var(--space-lg);
}

.hulp-card-body > p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

.hulp-waarvoor {
    background: var(--bg-muted);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.hulp-waarvoor strong {
    color: var(--primary-base);
}

.hulp-waarvoor ul {
    margin: var(--space-sm) 0 0 var(--space-lg);
    padding: 0;
}

.hulp-waarvoor li {
    margin-bottom: var(--space-xs);
}

.hulp-actie {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
}

.hulp-actie-email {
    flex-direction: column;
    align-items: flex-start;
}

.hulp-email-box {
    background: var(--info-bg);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    width: 100%;
    margin-bottom: var(--space-md);
}

.hulp-email-label {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
}

.hulp-email {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary-base);
    text-decoration: none;
}

.hulp-tip {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: var(--success-bg);
    border-radius: var(--radius-md);
    color: var(--text-primary);
}

/* Urgent card styling */
.hulp-card-urgent .hulp-card-header {
    background: var(--danger-bg);
}

.hulp-card-urgent .hulp-card-title h3 {
    color: var(--danger-base);
}

.hulp-urgent-text {
    background: var(--danger-bg);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--danger-base);
    margin-bottom: var(--space-lg) !important;
}

/* Children card styling */
.hulp-card-children .hulp-card-header {
    background: #F3E8FF;
}

.hulp-card-children .hulp-card-title h3 {
    color: #7C3AED;
}

/* Nummers grid */
.hulp-nummers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.hulp-nummer-card {
    background: var(--bg-muted);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
}

.hulp-nummer-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.hulp-nummer-card h4 {
    font-family: var(--font-heading);
    color: var(--primary-base);
    margin-bottom: var(--space-xs);
}

.hulp-nummer-card p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.hulp-telefoon {
    display: block;
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary-base);
    text-decoration: none;
    margin-bottom: var(--space-xs);
}

.hulp-telefoon:hover {
    color: var(--primary-dark);
}

.hulp-telefoon-nood {
    font-size: var(--text-2xl);
    color: var(--danger-base);
}

.hulp-telefoon-small {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--primary-base);
    text-decoration: none;
}

.hulp-telefoon-info {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    font-style: italic;
}

.hulp-beschikbaar {
    display: block;
    font-size: var(--text-xs);
    color: var(--success-base);
    font-weight: 600;
}

/* Instanties list */
.hulp-instanties-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.hulp-instantie {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-muted);
    border-radius: var(--radius-md);
}

.hulp-instantie-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.hulp-instantie-info h4 {
    font-family: var(--font-heading);
    color: var(--primary-base);
    margin-bottom: var(--space-xs);
    font-size: var(--text-lg);
}

.hulp-instantie-info p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.hulp-let-op {
    display: block;
    font-size: var(--text-sm);
    color: var(--warning-text);
    background: var(--warning-bg);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    margin-top: var(--space-sm);
}

.hulp-link {
    font-weight: 600;
    color: var(--primary-base);
}

/* Tips grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.tip-card {
    background: var(--bg-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-subtle);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.tip-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-base);
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

.tip-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive hulp pagina */
@media (max-width: 768px) {
    .aangifte-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .hulp-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .hulp-instantie {
        flex-direction: column;
        text-align: center;
    }
    
    .hulp-nummers-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   VERHALEN PAGINA
   ========================================== */

/* Intro sectie */
.verhalen-intro {
    display: flex;
    gap: var(--space-xl);
    align-items: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-cyan-light) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.verhalen-intro-icon {
    font-size: 5rem;
    flex-shrink: 0;
}

.verhalen-intro-icon-svg {
    display: flex;
    align-items: center;
    justify-content: center;
}

.verhalen-intro-icon-svg svg {
    width: 5rem;
    height: 5rem;
    color: var(--primary-base);
    opacity: 0.9;
}

.verhalen-intro-content h2 {
    font-family: var(--font-heading);
    color: var(--primary-base);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-sm);
}

.verhalen-intro-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    font-size: var(--text-lg);
}

/* Section title */
.verhalen-section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--primary-base);
    margin-bottom: var(--space-xl);
}

/* Geen verhalen state */
.geen-verhalen {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border-subtle);
}

.geen-verhalen-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

.geen-verhalen h3 {
    font-family: var(--font-heading);
    color: var(--primary-base);
    margin-bottom: var(--space-sm);
}

.geen-verhalen p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

/* Verhalen grid - één kolom voor uniforme breedte van alle verhaalcards */
.verhalen-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

/* Verhaal card */
.verhaal-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-subtle);
    padding: var(--space-lg);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.verhaal-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Eerste verhaal visueel benadrukt, zelfde breedte door 1-koloms grid */
.verhaal-card-featured {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--primary-light) 100%);
    border: 2px solid var(--primary-base);
}

/* Verhaal header */
.verhaal-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.verhaal-avatar {
    width: 48px;
    height: 48px;
    background: var(--bg-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.verhaal-meta {
    flex: 1;
    min-width: 150px;
}

.verhaal-auteur {
    display: block;
    font-weight: 700;
    color: var(--text-primary);
}

.verhaal-datum {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.verhaal-type {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: var(--primary-light);
    color: var(--primary-base);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
}

.verhaal-type-vishing { background: #FEE2E2; color: #991B1B; }
.verhaal-type-phishing { background: #FEF3C7; color: #92400E; }
.verhaal-type-facebook { background: #DBEAFE; color: #1E40AF; }
.verhaal-type-whatsapp { background: #DCFCE7; color: #166534; }
.verhaal-type-marketplace { background: #F3E8FF; color: #7C3AED; }
.verhaal-type-romance { background: #FCE7F3; color: #BE185D; }
.verhaal-type-webshop { background: #FFEDD5; color: #C2410C; }

/* Verhaal titel */
.verhaal-titel {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.4;
}

/* Verhaal tekst */
.verhaal-tekst {
    flex: 1;
    color: var(--text-secondary);
    line-height: 1.8;
}

.verhaal-tekst p {
    margin-bottom: var(--space-md);
}

.verhaal-tekst p:last-child {
    margin-bottom: 0;
}

/* Verhaal footer */
.verhaal-footer {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-subtle);
}

.verhaal-bedrag {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: var(--danger-bg);
    color: var(--danger-base);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: var(--text-sm);
}

/* ===========================================
   VERHAAL FORMULIER - NIEUW DESIGN
   =========================================== */

/* Trigger card */
.verhaal-form-trigger {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--primary-light) 100%);
    border: 2px solid var(--primary-base);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.verhaal-form-trigger:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.trigger-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.trigger-content {
    flex: 1;
}

.trigger-content h2 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--primary-base);
    margin-bottom: var(--space-xs);
}

.trigger-content p {
    color: var(--text-secondary);
    margin: 0;
}

.btn-icon {
    font-size: 1.5rem;
    margin-right: var(--space-xs);
}

/* Formulier container */
.verhaal-form-container {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.verhaal-form-header {
    background: linear-gradient(135deg, var(--primary-base) 0%, #4dabf5 100%);
    color: var(--text-white);
    padding: var(--space-xl) var(--space-xl) var(--space-lg);
    text-align: center;
    position: relative;
}

.form-close-btn {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.75rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.form-close-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.form-header-icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
}

.verhaal-form-header h2 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-sm);
    color: white;
    text-shadow: none;
}

.verhaal-form-header p {
    opacity: 0.95;
    margin: 0;
    font-size: var(--text-lg);
}

/* Form steps indicator */
.form-steps {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    padding: var(--space-lg);
    background: var(--bg-muted);
    border-bottom: 1px solid var(--border-subtle);
}

.form-step {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0.5;
    transition: all var(--transition-fast);
}

.form-step.active {
    opacity: 1;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.form-step.active .step-number {
    background: var(--primary-base);
    color: white;
}

.step-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.form-step.active .step-label {
    color: var(--primary-base);
}

/* Formulier */
.verhaal-form {
    padding: var(--space-xl);
}

.form-section {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.form-section-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--primary-base);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.back-link {
    background: none;
    border: none;
    color: var(--primary-base);
    font-size: var(--text-base);
    cursor: pointer;
    padding: 0;
    margin-bottom: var(--space-lg);
    display: inline-block;
}

.back-link:hover {
    text-decoration: underline;
}

/* Privacy keuze */
.privacy-choice {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.privacy-option {
    cursor: pointer;
}

.privacy-option input {
    display: none;
}

.privacy-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-lg);
    background: var(--bg-muted);
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    text-align: center;
}

.privacy-option:hover .privacy-card {
    border-color: var(--primary-base);
    background: var(--primary-light);
}

.privacy-option-selected .privacy-card {
    border-color: var(--primary-base);
    background: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(17, 142, 236, 0.2);
}

.privacy-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.privacy-title {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.privacy-desc {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

/* Type oplichting grid */
.type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.type-option {
    cursor: pointer;
}

.type-option input {
    display: none;
}

.type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-md);
    background: var(--bg-muted);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-align: center;
}

.type-option:hover .type-card {
    border-color: var(--primary-base);
    background: var(--primary-light);
}

.type-option-selected .type-card {
    border-color: var(--primary-base);
    background: var(--primary-light);
}

.type-icon {
    font-size: 1.75rem;
    margin-bottom: var(--space-xs);
}

.type-label {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    line-height: 1.3;
}

/* Form groups */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-size: var(--text-base);
}

.form-group .optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.form-group .required {
    color: var(--danger-base);
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-body);
    font-size: var(--text-lg);
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-base);
    box-shadow: 0 0 0 4px rgba(17, 142, 236, 0.1);
}

/* Textarea wrapper */
.textarea-wrapper {
    position: relative;
    background: var(--bg-white);
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.textarea-wrapper:focus-within {
    border-color: var(--primary-base);
    box-shadow: 0 0 0 4px rgba(17, 142, 236, 0.1);
}

.textarea-wrapper textarea {
    border: none !important;
    box-shadow: none !important;
    min-height: 250px;
    resize: vertical;
}

.textarea-footer {
    display: flex;
    justify-content: flex-end;
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-muted);
    border-top: 1px solid var(--border-subtle);
}

.char-count {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.char-count.warning {
    color: var(--danger-base);
    font-weight: 600;
}

.form-hint {
    display: block;
    margin-top: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Form row */
.form-row {
    display: flex;
    gap: var(--space-md);
}

.form-row .form-group {
    flex: 1;
}

.naam-velden {
    animation: fadeIn 0.3s ease;
    margin-bottom: var(--space-lg);
}

/* Bedrag input */
.bedrag-input {
    display: flex;
    align-items: stretch;
    max-width: 200px;
}

.bedrag-prefix {
    display: flex;
    align-items: center;
    padding: 0 var(--space-md);
    background: var(--bg-muted);
    border: 2px solid var(--border-subtle);
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-weight: 700;
    font-size: var(--text-xl);
    color: var(--text-secondary);
}

.bedrag-input input {
    border-radius: 0 var(--radius-md) var(--radius-md) 0 !important;
    max-width: 150px;
}

/* Form notice */
.form-notice {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: linear-gradient(135deg, var(--info-bg) 0%, #E0F2FE 100%);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xl);
    align-items: flex-start;
}

.form-notice .notice-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.form-notice .notice-text strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.form-notice .notice-text p {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

/* Form success */
.form-success {
    text-align: center;
    padding: var(--space-2xl);
}

.success-animation {
    margin-bottom: var(--space-lg);
}

.form-success .success-icon {
    font-size: 5rem;
    animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--success-base);
    margin-bottom: var(--space-md);
}

.form-success p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    font-size: var(--text-lg);
}

/* Responsive verhalen */
@media (max-width: 768px) {
    .verhalen-intro {
        flex-direction: column;
        text-align: center;
    }
    
    .verhalen-grid {
        grid-template-columns: 1fr;
    }
    
    .verhaal-card-featured {
        grid-column: 1;
    }
    
    .verhaal-form-trigger {
        flex-direction: column;
        text-align: center;
    }
    
    .privacy-choice {
        grid-template-columns: 1fr;
    }
    
    .type-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .verhaal-header {
        flex-direction: column;
        text-align: center;
    }
    
    .verhaal-type {
        margin-top: var(--space-sm);
    }
    
    .bedrag-input {
        max-width: 100%;
    }
    
    .bedrag-input input {
        max-width: 100%;
    }
}

/* ==========================================
   TOPICS MORE - Alle onderwerpen link
   ========================================== */
.topics-more {
    text-align: center;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
}

.topics-more-text {
    font-size: var(--text-lg);
    color: var(--text-medium);
    margin-bottom: var(--space-md);
}

.topics-more .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Coming soon notice op onderwerpen pagina */
.topics-coming-soon {
    text-align: center;
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: var(--info-bg);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--primary-base);
}

.topics-coming-soon p {
    font-size: var(--text-lg);
    color: var(--primary-dark);
    margin: 0;
    font-weight: 600;
}
