/*
Theme Name: WatisGEO
Theme URI: https://watisgeo.nl
Author: WatisGEO
Author URI: https://watisgeo.nl
Description: Thema voor WatisGEO.nl
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: watisgeo-thema
*/

/* =============================================
   RESET & BASE
   ============================================= */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --accent:        #c8f04a;
    --accent-alt:    #f0e060;
    --bg:            #0d0d0d;
    --bg-alt:        #111111;
    --card-bg:       #161616;
    --text:          #ffffff;
    --text-muted:    rgba(255, 255, 255, 0.65);
    --text-dim:      rgba(255, 255, 255, 0.35);
    --border-dim:    rgba(255, 255, 255, 0.06);
    --border-accent: rgba(200, 240, 74, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
    text-decoration: none;
}

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

em {
    font-style: italic;
}

strong {
    font-weight: 600;
    color: var(--text);
}

/* =============================================
   UTILITY
   ============================================= */

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.7;
    margin-bottom: 16px;
}

.section-header {
    margin-bottom: 56px;
    text-align: center;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--text);
}

.section-intro {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 620px;
    margin: 16px auto 0;
}

/* =============================================
   NAVIGATIE
   ============================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-dim);
    overflow: visible;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.site-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text);
    letter-spacing: -0.01em;
}

.site-logo:hover {
    opacity: 1;
    text-decoration: none;
}

.site-logo .geo {
    color: var(--accent);
}

.site-logo-img {
    display: block;
    height: 48px;
    width: auto;
}

.footer-logo-img {
    display: block;
    height: 48px;
    width: auto;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
}

.main-navigation a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
}

.main-navigation a:hover {
    color: var(--text);
    opacity: 1;
    text-decoration: none;
}

/* Dropdown submenu */
.main-navigation ul li {
    position: relative;
}

.main-navigation ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #1a1a1a;
    border: 1px solid var(--border-dim);
    border-radius: 8px;
    padding: 14px 0 8px;
    z-index: 200;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
    display: block;
}

.main-navigation ul li ul li {
    display: block;
}

.main-navigation ul li ul a {
    display: block;
    padding: 10px 16px;
    white-space: nowrap;
    font-size: 0.875rem;
}

.main-navigation ul li ul a:hover {
    color: var(--accent);
    background: rgba(200, 240, 74, 0.06);
}

.main-navigation ul li:has(> ul) > a::after {
    content: ' ▾';
    font-size: 0.7rem;
    opacity: 0.5;
}

/* Drawer-elementen verborgen op desktop */
.nav-drawer-header,
.nav-drawer-footer {
    display: none;
}

/* Header CTA + hamburger */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--accent);
    color: #0d0d0d;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 6px;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.nav-cta:hover {
    opacity: 0.85;
    text-decoration: none;
    color: #0d0d0d;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.2s;
}

.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   HERO
   ============================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 64px;
}

#particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.hero-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    opacity: 0.8;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(3.25rem, 9vw, 7.5rem);
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 28px;
}

.hero-title .geo-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #0d0d0d;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 14px 32px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    text-decoration: none;
    color: #0d0d0d;
}

.btn-ghost {
    display: inline-block;
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    opacity: 1;
}

.scroll-indicator {
    margin-top: 52px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    opacity: 0.3;
    animation: scrollBounce 2.2s ease-in-out infinite;
}

.scroll-indicator-line {
    width: 1px;
    height: 36px;
    background: var(--accent);
}

.scroll-indicator-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    margin-left: -2px;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50%       { transform: translateY(7px); opacity: 0.55; }
}

/* =============================================
   DEFINITIE BLOK
   ============================================= */

.definitie-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-dim);
}

.definitie-inner {
    max-width: 800px;
}

.definitie-quote {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.375rem, 3vw, 2rem);
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 20px 0 40px;
    padding-left: 24px;
    border-left: 3px solid var(--accent);
}

.definitie-onderscheid {
    background: var(--card-bg);
    border: 1px solid var(--border-dim);
    border-radius: 10px;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.onderscheid-label {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    white-space: nowrap;
    padding-top: 2px;
    min-width: 100px;
}

.definitie-onderscheid p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* =============================================
   STATISTIEKEN / WAAROM GEO
   ============================================= */

.stats-section {
    padding: 100px 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border-dim);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border-dim);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--card-bg);
    padding: 36px 32px;
    transition: background 0.2s;
}

.stat-card:hover {
    background: #1a1a1a;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    line-height: 1;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.stat-plus,
.stat-unit {
    font-size: 0.65em;
}

.stat-label {
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 10px;
}

.stat-source {
    color: var(--text-dim);
    font-size: 0.75rem;
}

.stats-context-block {
    background: rgba(200, 240, 74, 0.04);
    border: 1px solid var(--border-accent);
    border-radius: 10px;
    padding: 28px 32px;
    max-width: 720px;
}

.stats-context-block p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* =============================================
   KAARTEN SECTIE
   ============================================= */

.cards-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-dim);
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-dim);
    border-radius: 10px;
    padding: 40px;
    transition: border-color 0.25s, transform 0.25s;
}

.card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
}

.card-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(200, 240, 74, 0.45);
    margin-bottom: 20px;
}

.card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 240, 74, 0.08);
    border-radius: 10px;
    margin-bottom: 24px;
    color: var(--accent);
}

.card--accent {
    border-color: rgba(200, 240, 74, 0.25);
    background: rgba(200, 240, 74, 0.03);
    position: relative;
}

.card--accent:hover {
    border-color: rgba(200, 240, 74, 0.6);
}

.card-badge {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0d0d0d;
    background: var(--accent);
    border-radius: 4px;
    padding: 3px 8px;
    margin-bottom: 14px;
}

.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.375rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    line-height: 1.25;
}

.card-text {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.card-link:hover {
    opacity: 1;
    text-decoration: none;
}

.card-read-more {
    display: block;
    margin-top: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    opacity: 0.6;
    transition: opacity 0.2s;
    letter-spacing: -0.01em;
}

.card-link:hover .card-read-more {
    opacity: 1;
}

/* =============================================
   3 STAPPEN
   ============================================= */

.steps-section {
    padding: 100px 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border-dim);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
}

.step {
    background: var(--card-bg);
    border: 1px solid var(--border-dim);
    border-radius: 10px;
    padding: 36px 32px;
    transition: border-color 0.25s;
}

.step:hover {
    border-color: var(--border-accent);
}

.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(200, 240, 74, 0.45);
    margin-bottom: 16px;
}

.step-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.015em;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.step-text {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.7;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-size: 1.25rem;
    color: rgba(200, 240, 74, 0.3);
    margin-top: 48px;
}

/* =============================================
   E-MAIL OPT-IN
   ============================================= */

.optin-section {
    padding: 100px 0 120px;
}

.optin-block {
    border: 1px solid var(--border-accent);
    border-radius: 14px;
    padding: 72px 64px;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    background: rgba(200, 240, 74, 0.02);
}

.optin-badge {
    display: inline-block;
    background: rgba(200, 240, 74, 0.12);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid var(--border-accent);
    margin-bottom: 24px;
}

.optin-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: -0.025em;
    margin-bottom: 14px;
    line-height: 1.2;
}

.optin-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 36px;
    line-height: 1.65;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.optin-form {
    display: flex;
    gap: 10px;
    max-width: 460px;
    margin: 0 auto;
}

.optin-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 13px 18px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    outline: none;
    transition: border-color 0.2s;
}

.optin-input:focus {
    border-color: rgba(200, 240, 74, 0.4);
}

.optin-input::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.optin-note {
    color: var(--text-dim);
    font-size: 0.8125rem;
    margin-top: 16px;
}

/* =============================================
   AI STRIP
   ============================================= */

.ai-strip {
    padding: 18px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border-dim);
}

.ai-strip .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.ai-strip-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    white-space: nowrap;
}

.ai-strip-list {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.ai-strip-list li {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    padding: 0 18px;
    border-right: 1px solid var(--border-dim);
    transition: color 0.2s;
}

.ai-strip-list li:first-child {
    padding-left: 0;
}

.ai-strip-list li:last-child {
    border-right: none;
}

/* =============================================
   BEDANKT PAGINA
   ============================================= */

.bedankt-section {
    padding: 100px 0 120px;
    text-align: center;
}

.bedankt-inner {
    max-width: 580px;
    margin: 0 auto;
}

.bedankt-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(200, 240, 74, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 24px;
}

.bedankt-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: -0.03em;
    color: var(--text);
    margin: 12px 0 16px;
}

.bedankt-text {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.bedankt-btn {
    margin-bottom: 56px;
}

.bedankt-next-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.bedankt-next-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.bedankt-next-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: var(--card-bg);
    border: 1px solid var(--border-dim);
    border-radius: 8px;
    padding: 18px 20px;
    text-align: left;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
}

.bedankt-next-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
    opacity: 1;
    text-decoration: none;
}

.bedankt-next-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text);
}

.bedankt-next-sub {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* =============================================
   CHECKLIST DOWNLOAD PAGINA
   ============================================= */

.download-bar {
    position: sticky;
    top: 64px;
    z-index: 50;
    background: rgba(17, 17, 17, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-dim);
    padding: 12px 0;
}

.download-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.download-bar-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.download-bar-btn {
    background: var(--accent);
    color: #0d0d0d;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 9px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.download-bar-btn:hover {
    opacity: 0.85;
}

.checklist-doc {
    padding: 60px 0 100px;
}

.checklist-doc-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

.cdoc-header {
    text-align: center;
    padding-bottom: 48px;
    margin-bottom: 48px;
    border-bottom: 2px solid var(--border-accent);
}

.cdoc-site {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--accent);
    opacity: 0.7;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.cdoc-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 10px;
}

.cdoc-subtitle {
    color: var(--text-muted);
    font-size: 1.0625rem;
    margin-bottom: 20px;
}

.cdoc-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.8125rem;
    color: var(--text-dim);
    flex-wrap: wrap;
}

.cdoc-dot {
    opacity: 0.4;
}

.cdoc-intro {
    background: rgba(200, 240, 74, 0.04);
    border: 1px solid var(--border-accent);
    border-radius: 10px;
    padding: 24px 28px;
    margin-bottom: 56px;
}

.cdoc-intro p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.75;
    margin: 0;
}

.cdoc-cat {
    margin-bottom: 56px;
}

.cdoc-cat-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-dim);
}

.cdoc-cat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    color: rgba(200, 240, 74, 0.4);
    padding-top: 4px;
    white-space: nowrap;
}

.cdoc-cat-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 6px;
}

.cdoc-cat-sub {
    font-size: 0.875rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.cdoc-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cdoc-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    background: var(--card-bg);
    border: 1px solid var(--border-dim);
    border-radius: 8px;
    transition: border-color 0.2s;
}

.cdoc-item:hover {
    border-color: var(--border-accent);
}

.cdoc-box {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(200, 240, 74, 0.35);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cdoc-item-content {
    flex: 1;
}

.cdoc-item-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.35;
}

.cdoc-item-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.cdoc-item-desc code {
    font-family: 'Courier New', monospace;
    font-size: 0.8em;
    background: rgba(255, 255, 255, 0.07);
    padding: 1px 5px;
    border-radius: 3px;
    color: var(--accent);
}

.cdoc-item-desc strong {
    color: var(--text);
}

.cdoc-item-desc em {
    color: rgba(255, 255, 255, 0.75);
}

.cdoc-footer {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--border-dim);
    text-align: center;
}

.cdoc-footer p {
    font-size: 0.875rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 10px;
}

.cdoc-footer strong {
    color: var(--text-muted);
}

.cdoc-footer-links a {
    color: rgba(200, 240, 74, 0.55);
    font-size: 0.875rem;
    transition: color 0.15s;
}

.cdoc-footer-links a:hover {
    color: var(--accent);
    opacity: 1;
    text-decoration: none;
}

/* Print styles voor de checklist */
@media print {
    .site-header,
    .download-bar,
    .site-footer,
    .cdoc-footer-links {
        display: none !important;
    }

    body {
        background: #ffffff !important;
        color: #0d0d0d !important;
    }

    .checklist-doc {
        padding: 0 !important;
    }

    .checklist-doc-inner {
        max-width: 100% !important;
        padding: 20px !important;
    }

    .cdoc-header {
        border-bottom-color: #c8f04a !important;
    }

    .cdoc-site { color: #3a7d00 !important; }
    .cdoc-title { color: #0d0d0d !important; }
    .cdoc-subtitle { color: #444 !important; }
    .cdoc-meta { color: #888 !important; }

    .cdoc-intro {
        background: #f5fff0 !important;
        border-color: #c8f04a !important;
    }

    .cdoc-intro p { color: #333 !important; }
    .cdoc-cat-title { color: #0d0d0d !important; }
    .cdoc-cat-sub { color: #666 !important; }
    .cdoc-cat-num { color: #3a7d00 !important; }
    .cdoc-cat-header { border-bottom-color: #ddd !important; }

    .cdoc-item {
        background: #fafafa !important;
        border-color: #e0e0e0 !important;
        break-inside: avoid;
    }

    .cdoc-box {
        border-color: #c8f04a !important;
    }

    .cdoc-item-title { color: #0d0d0d !important; }
    .cdoc-item-desc { color: #444 !important; }
    .cdoc-item-desc code { background: #f0f0f0 !important; color: #2a5500 !important; }
    .cdoc-item-desc strong { color: #0d0d0d !important; }

    .cdoc-footer { border-top-color: #ddd !important; }
    .cdoc-footer p { color: #888 !important; }
}

/* =============================================
   SECTION BOTTOM CTA
   ============================================= */

.section-bottom-cta {
    margin-top: 44px;
}

.section-bottom-cta a {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent);
    opacity: 0.7;
    border-bottom: 1px solid rgba(200, 240, 74, 0.3);
    padding-bottom: 2px;
    transition: opacity 0.2s, border-color 0.2s;
}

.section-bottom-cta a:hover {
    opacity: 1;
    text-decoration: none;
    border-color: var(--accent);
}

.definitie-cta {
    margin-top: 32px;
}

.definitie-cta a {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent);
    opacity: 0.7;
    border-bottom: 1px solid rgba(200, 240, 74, 0.3);
    padding-bottom: 2px;
    transition: opacity 0.2s, border-color 0.2s;
}

.definitie-cta a:hover {
    opacity: 1;
    text-decoration: none;
    border-color: var(--accent);
}

/* =============================================
   CHECKLIST LANDINGSPAGINA
   ============================================= */

.checklist-hero {
    padding: 80px 0 100px;
    background: var(--bg);
    border-bottom: 1px solid var(--border-dim);
}

.checklist-hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
}

.checklist-badge {
    display: inline-block;
    background: rgba(200, 240, 74, 0.1);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid var(--border-accent);
    margin-bottom: 24px;
}

.checklist-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.25rem);
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 20px;
}

.checklist-subtitle {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
}

.checklist-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.checklist-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cb-icon {
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.875rem;
    padding-top: 1px;
}

.checklist-meta {
    font-size: 0.8125rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Formulierkaart */
.checklist-form-card {
    background: var(--card-bg);
    border: 1px solid var(--border-accent);
    border-radius: 14px;
    padding: 40px 36px;
}

.checklist-form-top {
    margin-bottom: 28px;
}

.checklist-form-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.7;
    margin-bottom: 8px;
}

.checklist-form-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 8px;
}

.checklist-form-sub {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.checklist-optin-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checklist-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.checklist-field-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
}

.checklist-input {
    width: 100%;
}

.checklist-btn {
    width: 100%;
    padding: 15px 24px;
    font-size: 1rem;
}

.checklist-form-note {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}

.checklist-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-dim);
}

.checklist-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    font-size: 0.75rem;
    color: var(--text-dim);
    text-align: center;
}

.checklist-trust-num {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1;
}

.checklist-trust-divider {
    width: 1px;
    height: 32px;
    background: var(--border-dim);
}

/* Preview sectie */
.checklist-preview-section {
    padding: 100px 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border-dim);
}

.preview-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.preview-cat {
    background: var(--card-bg);
    border: 1px solid var(--border-dim);
    border-radius: 10px;
    padding: 32px;
    transition: border-color 0.2s;
}

.preview-cat:hover {
    border-color: var(--border-accent);
}

.preview-cat-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-dim);
}

.preview-cat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    color: rgba(200, 240, 74, 0.4);
    padding-top: 2px;
    white-space: nowrap;
}

.preview-cat-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--text);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-cat-count {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    color: var(--accent);
    opacity: 0.6;
}

.preview-cat-sub {
    font-size: 0.8125rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.preview-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.preview-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.875rem;
    line-height: 1.55;
}

.preview-item--visible {
    color: var(--text-muted);
}

.preview-item--locked {
    color: var(--text-dim);
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    margin-top: 4px;
}

.preview-checkbox {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1.5px solid rgba(200, 240, 74, 0.3);
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 1px;
}

.preview-lock {
    font-size: 0.75rem;
    flex-shrink: 0;
    opacity: 0.5;
}

/* Voor wie */
.voor-wie-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-dim);
}

.voor-wie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.voor-wie-card {
    background: var(--card-bg);
    border: 1px solid var(--border-dim);
    border-radius: 10px;
    padding: 32px;
    transition: border-color 0.2s;
}

.voor-wie-card:hover {
    border-color: var(--border-accent);
}

.voor-wie-titel {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.voor-wie-tekst {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =============================================
   OVER WATISGEO
   ============================================= */

.over-section {
    padding: 80px 0 100px;
}

.over-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 64px;
    align-items: start;
}

.over-main {
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.over-block p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.over-block p:last-child {
    margin-bottom: 0;
}

.over-block strong {
    color: var(--text);
}

.over-block a {
    color: var(--accent);
    border-bottom: 1px solid rgba(200, 240, 74, 0.3);
    padding-bottom: 1px;
    transition: border-color 0.2s;
}

.over-block a:hover {
    border-color: var(--accent);
    opacity: 1;
    text-decoration: none;
}

.over-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.375rem, 3vw, 1.875rem);
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text);
    margin: 12px 0 24px;
}

.over-topics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}

.over-topic-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-dim);
    border-radius: 8px;
    padding: 20px 22px;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
}

.over-topic-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
    opacity: 1;
    text-decoration: none;
}

.over-topic-icon {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    color: rgba(200, 240, 74, 0.4);
    padding-top: 2px;
    white-space: nowrap;
}

.over-topic-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text) !important;
    margin-bottom: 4px !important;
    line-height: 1.3;
}

.over-topic-text {
    font-size: 0.8125rem !important;
    color: var(--text-dim) !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
}

.over-principes {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
}

.over-principe {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px 24px;
    background: var(--card-bg);
    border: 1px solid var(--border-dim);
    border-radius: 8px;
}

.over-principe-icon {
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 700;
    padding-top: 1px;
    flex-shrink: 0;
    width: 20px;
}

.over-principe-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--text) !important;
    margin-bottom: 6px !important;
}

.over-principe-text {
    font-size: 0.875rem !important;
    color: var(--text-muted) !important;
    line-height: 1.65 !important;
    margin-bottom: 0 !important;
}

/* Sidebar */
.over-sidebar {
    position: sticky;
    top: 88px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.over-sidebar-card {
    background: var(--card-bg);
    border: 1px solid var(--border-dim);
    border-radius: 10px;
    padding: 28px;
}

.over-sidebar-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.over-sidebar-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.over-sidebar-nav a {
    display: block;
    padding: 8px 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}

.over-sidebar-nav a:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    opacity: 1;
    text-decoration: none;
}

.over-stats-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.over-stats-list li {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.over-stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1;
}

.over-stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.over-sidebar-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* =============================================
   WOORDENBOEK / GLOSSARY
   ============================================= */

.glossary-search-wrap {
    padding: 40px 0 0;
    background: var(--bg-alt);
}

.glossary-search-inner {
    position: relative;
    max-width: 580px;
}

.glossary-search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 48px 14px 20px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.glossary-search-input:focus {
    border-color: rgba(200, 240, 74, 0.4);
}

.glossary-search-input::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.glossary-search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    font-size: 1rem;
    pointer-events: none;
}

.glossary-count {
    margin-top: 12px;
    padding-bottom: 24px;
    font-size: 0.8125rem;
    color: var(--text-dim);
}

.alpha-nav-wrap {
    position: sticky;
    top: 64px;
    z-index: 50;
    background: rgba(17, 17, 17, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-dim);
    padding: 0;
}

.alpha-nav {
    display: flex;
    gap: 2px;
    align-items: center;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
}

.alpha-nav::-webkit-scrollbar {
    display: none;
}

.alpha-nav-item {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--text-dim);
    padding: 6px 10px;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;
    text-decoration: none;
}

.alpha-nav-item:hover {
    color: var(--accent);
    background: rgba(200, 240, 74, 0.08);
    opacity: 1;
    text-decoration: none;
}

.glossary-body {
    padding: 60px 0 80px;
}

.alpha-section {
    margin-bottom: 64px;
}

.alpha-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.5;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-dim);
}

.terms-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.term-item {
    background: var(--card-bg);
    border: 1px solid var(--border-dim);
    border-radius: 8px;
    padding: 28px 32px;
    transition: border-color 0.2s;
}

.term-item:hover {
    border-color: var(--border-accent);
}

.term-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.term-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.015em;
    color: var(--text);
    line-height: 1.2;
}

.term-en,
.term-nl {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.term-en {
    background: rgba(200, 240, 74, 0.08);
    color: rgba(200, 240, 74, 0.6);
    border: 1px solid rgba(200, 240, 74, 0.15);
}

.term-nl {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.term-def {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.term-def:last-child {
    margin-bottom: 0;
}

.term-related {
    font-size: 0.8125rem;
    color: var(--text-dim);
}

.term-related a {
    color: rgba(200, 240, 74, 0.65);
    transition: color 0.15s;
}

.term-related a:hover {
    color: var(--accent);
    opacity: 1;
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--border-dim);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border-dim);
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    display: inline-block;
    margin-bottom: 14px;
}

.footer-logo:hover {
    opacity: 1;
    text-decoration: none;
    color: var(--text);
}

.footer-logo .geo {
    color: var(--accent);
}

.footer-tagline {
    color: var(--text-dim);
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 260px;
}

.footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: 40px;
}

.footer-col-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: var(--text-dim);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    opacity: 1;
}

.footer-col-desc {
    color: var(--text-dim);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-optin {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-optin-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 10px 14px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s;
}

.footer-optin-input:focus {
    border-color: rgba(200, 240, 74, 0.35);
}

.footer-optin-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.footer-optin-btn {
    background: var(--accent);
    color: #0d0d0d;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    text-align: center;
}

.footer-optin-btn:hover {
    opacity: 0.88;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.copyright {
    color: var(--text-dim);
    font-size: 0.8125rem;
}

.footer-legal-nav {
    display: flex;
    gap: 12px 20px;
    flex-wrap: wrap;
}

.footer-legal-nav a {
    color: var(--text-dim);
    font-size: 0.8125rem;
    transition: color 0.2s;
}

.footer-legal-nav a:hover {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    opacity: 1;
}

/* =============================================
   PAGE: WAT IS GEO
   ============================================= */

/* Page hero */
.page-hero {
    padding: 140px 0 80px;
    border-bottom: 1px solid var(--border-dim);
}

.page-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 20px 0 24px;
}

.page-hero-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.75;
    max-width: 640px;
}

/* Inhoudsopgave */
.toc-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-dim);
    background: var(--bg-alt);
}

.toc-block {
    display: flex;
    align-items: baseline;
    gap: 40px;
    flex-wrap: wrap;
}

.toc-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.7;
    white-space: nowrap;
}

.toc-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    counter-reset: toc;
}

.toc-list li {
    counter-increment: toc;
}

.toc-list a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.toc-list a:hover {
    color: var(--accent);
    opacity: 1;
    text-decoration: none;
}

/* Content secties */
.content-section {
    padding: 96px 0;
    border-bottom: 1px solid var(--border-dim);
}

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

.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 64px;
    align-items: start;
}

.content-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 16px 0 28px;
}

.content-lead {
    color: var(--text);
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 24px;
    font-weight: 500;
}

.content-main p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-main p:last-child {
    margin-bottom: 0;
}

.content-quote {
    border-left: 3px solid var(--accent);
    padding: 16px 0 16px 24px;
    margin: 32px 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1.5;
}

/* Sidebar */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 88px;
}

.sidebar-card {
    background: var(--card-bg);
    border: 1px solid var(--border-dim);
    border-radius: 10px;
    padding: 24px;
}

.sidebar-card-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(200, 240, 74, 0.5);
    margin-bottom: 10px;
}

.sidebar-card-term {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-card-def {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.65;
}

.sidebar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-list li {
    color: var(--text-muted);
    font-size: 0.875rem;
    padding-left: 14px;
    position: relative;
}

.sidebar-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
}

/* Sidebar stats */
.sidebar-stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border-dim);
    border-radius: 10px;
    padding: 24px;
}

.sidebar-stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.sidebar-stat-num span {
    font-size: 0.6em;
}

.sidebar-stat-label {
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 6px;
}

.sidebar-stat-src {
    color: var(--text-dim);
    font-size: 0.75rem;
}

/* Processtappen */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.process-step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: var(--card-bg);
    border: 1px solid var(--border-dim);
    border-radius: 10px;
    padding: 32px;
    transition: border-color 0.2s;
}

.process-step:hover {
    border-color: var(--border-accent);
}

.process-icon {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    color: rgba(200, 240, 74, 0.45);
    white-space: nowrap;
    padding-top: 4px;
    min-width: 24px;
}

.process-body h3 {
    font-size: 1.0625rem;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-body p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Vergelijkingstabel */
.compare-table-wrap {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid var(--border-dim);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.compare-table thead th {
    background: var(--card-bg);
    padding: 16px 24px;
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border-dim);
}

.compare-table thead th.col-accent {
    color: var(--accent);
}

.compare-table tbody tr {
    border-bottom: 1px solid var(--border-dim);
    transition: background 0.15s;
}

.compare-table tbody tr:last-child {
    border-bottom: none;
}

.compare-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.compare-table td {
    padding: 16px 24px;
    vertical-align: top;
    color: var(--text-muted);
    line-height: 1.55;
}

.compare-aspect {
    color: var(--text);
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
}

.compare-overlap {
    color: var(--text-dim);
    font-style: italic;
    font-size: 0.875rem;
}

/* Platform cards */
.platforms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.platform-card {
    background: var(--card-bg);
    border: 1px solid var(--border-dim);
    border-radius: 10px;
    padding: 32px;
    transition: border-color 0.25s;
}

.platform-card:hover {
    border-color: var(--border-accent);
}

.platform-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.platform-maker {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 16px;
    font-weight: 500;
}

.platform-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Signalen */
.signals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border-dim);
    border-radius: 12px;
    overflow: hidden;
}

.signal-item {
    background: var(--card-bg);
    padding: 32px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: background 0.2s;
}

.signal-item:hover {
    background: #1a1a1a;
}

.signal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.6;
    margin-top: 7px;
    flex-shrink: 0;
}

.signal-title {
    font-size: 1rem;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.signal-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* =============================================
   BLOG — OVERZICHT (home.php)
   ============================================= */

.page-hero--blog {
    padding-bottom: 60px;
}

/* Categoriefilter */
.blog-filter-bar {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-dim);
    background: var(--bg-alt);
}

.blog-filter-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    border: 1px solid var(--border-dim);
    background: transparent;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.filter-btn:hover,
.filter-btn--active {
    color: var(--accent);
    border-color: var(--border-accent);
    background: rgba(200, 240, 74, 0.05);
    text-decoration: none;
    opacity: 1;
}

.filter-count {
    font-size: 0.6875rem;
    color: var(--text-dim);
    background: rgba(255,255,255,0.06);
    border-radius: 100px;
    padding: 1px 7px;
}

/* Blog sectie */
.blog-section {
    padding: 64px 0 100px;
}

/* Uitgelicht bericht */
.post-card--featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border-accent);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(200, 240, 74, 0.02);
    margin-bottom: 32px;
}

.post-card-thumb {
    display: block;
    overflow: hidden;
}

.post-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.post-card-thumb:hover img {
    transform: scale(1.03);
}

.post-card-thumb--small {
    height: 200px;
}

.post-card-thumb--small img {
    height: 100%;
    object-fit: cover;
}

.post-card-body {
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.post-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.post-cat {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(200, 240, 74, 0.08);
    border: 1px solid var(--border-accent);
    border-radius: 100px;
    padding: 3px 10px;
    transition: background 0.2s;
}

.post-cat:hover {
    background: rgba(200, 240, 74, 0.14);
    text-decoration: none;
    opacity: 1;
}

.post-date,
.post-read-time {
    font-size: 0.8125rem;
    color: var(--text-dim);
}

.post-card-title {
    font-size: 1.375rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.post-card--featured .post-card-title {
    font-size: 1.75rem;
}

.post-card-title a {
    color: var(--text);
    transition: color 0.2s;
}

.post-card-title a:hover {
    color: var(--accent);
    text-decoration: none;
    opacity: 1;
}

.post-card-excerpt {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    flex: 1;
}

.post-card-link {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 500;
    align-self: flex-start;
    transition: opacity 0.2s;
}

.post-card-link:hover {
    opacity: 0.75;
    text-decoration: none;
}

/* Berichten grid (overige berichten) */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.posts-grid .post-card {
    background: var(--card-bg);
    border: 1px solid var(--border-dim);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
}

.posts-grid .post-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
}

.posts-grid--archive {
    margin-top: 0;
}

.posts-grid .post-card-body {
    padding: 24px;
}

/* Paginering */
.blog-pagination {
    display: flex;
    justify-content: center;
}

.blog-pagination .nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--text-muted);
    border: 1px solid var(--border-dim);
    transition: all 0.2s;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    color: var(--accent);
    border-color: var(--border-accent);
    background: rgba(200, 240, 74, 0.06);
    text-decoration: none;
    opacity: 1;
}

.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
    width: auto;
    padding: 0 16px;
}

/* Leeg blok */
.blog-empty {
    padding: 80px 0;
    text-align: center;
}

.blog-empty-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.blog-empty-text {
    color: var(--text-muted);
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =============================================
   SINGLE POST (single.php)
   ============================================= */

.page-hero--post {
    padding-bottom: 48px;
}

.post-hero-back {
    margin-bottom: 24px;
}

.back-link {
    color: var(--text-dim);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--text-muted);
    text-decoration: none;
    opacity: 1;
}

.post-hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.post-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.03em;
    line-height: 1.1;
    max-width: 820px;
}

/* Uitgelichte afbeelding */
.post-thumbnail-wrap {
    padding: 0 0 64px;
    border-bottom: 1px solid var(--border-dim);
}

.post-thumbnail {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 10px;
}

/* Layout artikel */
.post-layout {
    padding: 64px 0 100px;
}

.post-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 64px;
    align-items: start;
}

/* Artikel inhoud */
.post-content {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--text-muted);
}

.post-content h2 {
    font-size: 1.625rem;
    letter-spacing: -0.025em;
    color: var(--text);
    margin: 48px 0 16px;
    line-height: 1.2;
}

.post-content h3 {
    font-size: 1.25rem;
    letter-spacing: -0.015em;
    color: var(--text);
    margin: 36px 0 12px;
    line-height: 1.3;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
    margin: 0 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.post-content li {
    line-height: 1.7;
}

.post-content blockquote {
    border-left: 3px solid var(--accent);
    padding: 16px 0 16px 24px;
    margin: 32px 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text);
    font-style: italic;
}

.post-content strong {
    color: var(--text);
    font-weight: 600;
}

.post-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.post-content img {
    border-radius: 8px;
    margin: 28px 0;
    width: 100%;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 0.9375rem;
}

.post-content th,
.post-content td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-dim);
    text-align: left;
    vertical-align: top;
}

.post-content th {
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.post-content code {
    font-family: 'Courier New', monospace;
    font-size: 0.875em;
    color: var(--accent);
    background: rgba(200, 240, 74, 0.06);
    padding: 2px 6px;
    border-radius: 4px;
}

.post-content pre {
    background: #0a0a0a;
    border: 1px solid var(--border-dim);
    border-radius: 8px;
    padding: 24px;
    overflow-x: auto;
    margin: 28px 0;
}

.post-content pre code {
    background: none;
    padding: 0;
    font-size: 0.875rem;
    line-height: 1.7;
}

/* Tags */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-dim);
}

.post-tag {
    font-size: 0.8125rem;
    color: var(--text-dim);
    border: 1px solid var(--border-dim);
    border-radius: 100px;
    padding: 4px 14px;
    transition: color 0.2s, border-color 0.2s;
}

.post-tag:hover {
    color: var(--accent);
    border-color: var(--border-accent);
    text-decoration: none;
    opacity: 1;
}

/* Artikel navigatie */
.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-dim);
}

.post-nav-prev,
.post-nav-next {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.post-nav-next {
    text-align: right;
    align-items: flex-end;
}

.post-nav-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.post-nav-title {
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.2s;
}

.post-nav-title:hover {
    color: var(--accent);
    text-decoration: none;
    opacity: 1;
}

/* Post sidebar */
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 88px;
}

/* Auteur kaart */
.post-author-card .author-avatar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
}

.post-author-card .author-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    color: var(--text);
    font-weight: 600;
    font-size: 0.9375rem;
    display: block;
    transition: color 0.2s;
}

.author-name:hover {
    color: var(--accent);
    text-decoration: none;
    opacity: 1;
}

.author-role {
    color: var(--text-dim);
    font-size: 0.8125rem;
}

.author-bio {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.65;
}

/* Gerelateerde berichten */
.related-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 12px;
}

.related-list li {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-dim);
}

.related-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.related-link {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.45;
    transition: color 0.2s;
}

.related-link:hover {
    color: var(--accent);
    text-decoration: none;
    opacity: 1;
}

.related-date {
    color: var(--text-dim);
    font-size: 0.75rem;
}

/* Sidebar opt-in */
.sidebar-optin {
    background: rgba(200, 240, 74, 0.03);
    border: 1px solid var(--border-accent);
    border-radius: 10px;
    padding: 24px;
}

.sidebar-optin-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 6px;
}

.sidebar-optin-sub {
    color: var(--text-dim);
    font-size: 0.8125rem;
    margin-bottom: 16px;
}

/* =============================================
   PAGE: GEO-TOOLS
   ============================================= */

/* Affiliate notice */
.affiliate-notice {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-dim);
    padding: 12px 0;
}

.affiliate-notice p {
    color: var(--text-dim);
    font-size: 0.8125rem;
    line-height: 1.5;
}

/* Tools grid */
.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tools-grid--monitoring {
    grid-template-columns: 3fr 2fr;
}

/* Tool card */
.tool-card {
    background: var(--card-bg);
    border: 1px solid var(--border-dim);
    border-radius: 10px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.25s;
}

.tool-card:hover {
    border-color: var(--border-accent);
}

.tool-card--featured {
    border-color: var(--border-accent);
    background: rgba(200, 240, 74, 0.02);
}

.tool-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.tool-name {
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    margin-bottom: 2px;
}

.tool-card--featured .tool-name {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tool-maker {
    color: var(--text-dim);
    font-size: 0.8125rem;
}

.tool-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    flex-shrink: 0;
}

.tool-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}

.tool-badge--free {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    border: 1px solid var(--border-dim);
}

.tool-badge--paid {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    border: 1px solid var(--border-dim);
}

.tool-badge--best {
    background: rgba(200, 240, 74, 0.1);
    color: var(--accent);
    border: 1px solid var(--border-accent);
}

.tool-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.tool-pros {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border-dim);
    margin-top: auto;
}

.tool-pros li {
    color: var(--text-muted);
    font-size: 0.875rem;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.tool-pros li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.45;
}

.tool-actions {
    padding-top: 4px;
}

.tool-btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #0d0d0d;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 11px 24px;
    border-radius: 6px;
    transition: opacity 0.2s, transform 0.15s;
    letter-spacing: -0.01em;
}

.tool-btn-primary:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    text-decoration: none;
    color: #0d0d0d;
}

/* Schema tools grid */
.schema-tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border-dim);
    border-radius: 12px;
    overflow: hidden;
}

.schema-tool-item {
    background: var(--card-bg);
    padding: 32px;
    transition: background 0.2s;
}

.schema-tool-item:hover {
    background: #1a1a1a;
}

.schema-tool-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.schema-tool-name {
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.schema-tool-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.schema-tool-link {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 500;
    transition: opacity 0.2s;
}

.schema-tool-link:hover {
    opacity: 0.75;
    text-decoration: none;
}

/* Tabel check cel */
.cell-check {
    color: var(--accent);
    font-weight: 700;
    text-align: center;
}

/* =============================================
   PAGE: GEO-TIPS
   ============================================= */

/* Tips lijst */
.tips-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tip-item {
    background: var(--card-bg);
    border: 1px solid var(--border-dim);
    border-radius: 10px;
    padding: 36px;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 28px;
    transition: border-color 0.25s;
}

.tip-item--high  { border-left: 3px solid var(--accent); }
.tip-item--medium { border-left: 3px solid rgba(200,240,74,0.35); }

.tip-item:hover {
    border-color: var(--border-accent);
}

.tip-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 2px;
}

.tip-num {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    color: rgba(200,240,74,0.45);
}

.tip-impact {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    width: fit-content;
}

.tip-impact--high {
    background: rgba(200,240,74,0.1);
    color: var(--accent);
    border: 1px solid rgba(200,240,74,0.2);
}

.tip-impact--medium {
    background: rgba(255,255,255,0.04);
    color: var(--text-dim);
    border: 1px solid var(--border-dim);
}

.tip-title {
    font-size: 1.125rem;
    letter-spacing: -0.015em;
    margin-bottom: 12px;
}

.tip-text {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.tip-example {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-dim);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tip-example-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 4px;
}

.tip-example-bad,
.tip-example-good {
    font-size: 0.875rem;
    line-height: 1.55;
    padding-left: 4px;
}

.tip-example-bad  { color: rgba(255,100,100,0.7); }
.tip-example-good { color: rgba(200,240,74,0.85); }

.tip-example-bad span,
.tip-example-good span {
    margin-right: 6px;
}

/* Strategie grid */
.strategy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.strategy-card {
    background: var(--card-bg);
    border: 1px solid var(--border-dim);
    border-radius: 10px;
    padding: 36px;
    transition: border-color 0.25s;
}

.strategy-card:hover {
    border-color: var(--border-accent);
}

.strategy-icon-wrap {
    margin-bottom: 20px;
}

.strategy-icon {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    color: rgba(200,240,74,0.45);
}

.strategy-title {
    font-size: 1.125rem;
    letter-spacing: -0.015em;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
}

.strategy-text {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.strategy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--border-dim);
    padding-top: 16px;
}

.strategy-list li {
    color: var(--text-muted);
    font-size: 0.875rem;
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.strategy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.4;
}

/* Technisch grid */
.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border-dim);
    border-radius: 12px;
    overflow: hidden;
}

.tech-item {
    background: var(--card-bg);
    padding: 32px;
    transition: background 0.2s;
}

.tech-item:hover {
    background: #1a1a1a;
}

.tech-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.tech-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--border-accent);
    border-radius: 4px;
    padding: 3px 8px;
    flex-shrink: 0;
}

.tech-title {
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.tech-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.tech-code {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 14px 16px;
    margin-top: 16px;
}

.tech-code-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.tech-code code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8125rem;
    color: var(--accent);
    line-height: 1.6;
    word-break: break-all;
}

/* Content subtitels */
.content-subtitle {
    font-size: 1.0625rem;
    letter-spacing: -0.01em;
    margin: 28px 0 10px;
    color: var(--text);
}

/* Meten stappen */
.measure-steps {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--border-dim);
    border-radius: 12px;
    overflow: hidden;
}

.measure-item {
    background: var(--card-bg);
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: background 0.2s;
}

.measure-item:hover {
    background: #1a1a1a;
}

.measure-num {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    color: rgba(200,240,74,0.45);
    min-width: 24px;
    padding-top: 4px;
}

.measure-title {
    font-size: 1rem;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.measure-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* =============================================
   PAGE: HOE WERKT GEO
   ============================================= */

/* Mechanisme stappen */
.mechanism-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mechanism-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 28px;
}

.mstep-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.mstep-num {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    color: var(--accent);
    background: rgba(200, 240, 74, 0.08);
    border: 1px solid var(--border-accent);
    border-radius: 6px;
    padding: 6px 8px;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.mstep-connector {
    width: 1px;
    flex: 1;
    min-height: 40px;
    background: linear-gradient(to bottom, var(--border-accent), var(--border-dim));
    margin: 8px 0;
}

.mstep-connector--last {
    display: none;
}

.mstep-body {
    padding-bottom: 48px;
}

.mechanism-step:last-child .mstep-body {
    padding-bottom: 0;
}

.mstep-title {
    font-size: 1.125rem;
    letter-spacing: -0.015em;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-top: 4px;
}

.mstep-text {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.75;
}

/* Autoriteit grid */
.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border-dim);
    border-radius: 12px;
    overflow: hidden;
}

.authority-item {
    background: var(--card-bg);
    padding: 32px;
    transition: background 0.2s;
}

.authority-item:hover {
    background: #1a1a1a;
}

.authority-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.authority-num {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.6875rem;
    color: rgba(200, 240, 74, 0.5);
    border: 1px solid rgba(200, 240, 74, 0.15);
    border-radius: 4px;
    padding: 4px 8px;
    flex-shrink: 0;
}

.authority-title {
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.authority-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Optimalisatie grid */
.optim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.optim-card {
    background: var(--card-bg);
    border: 1px solid var(--border-dim);
    border-radius: 10px;
    padding: 32px;
    transition: border-color 0.25s;
}

.optim-card:hover {
    border-color: var(--border-accent);
}

.optim-phase {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(200, 240, 74, 0.5);
    margin-bottom: 20px;
}

.optim-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.optim-list li {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    padding-left: 18px;
    position: relative;
}

.optim-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.4;
}

/* =============================================
   PAGE: GEO VS SEO
   ============================================= */

.vs-intro-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
}

.vs-card {
    background: var(--card-bg);
    border: 1px solid var(--border-dim);
    border-radius: 10px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.25s;
}

.vs-card--geo {
    border-color: var(--border-accent);
}

.vs-card:hover {
    border-color: var(--border-accent);
}

.vs-badge {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    border: 1px solid var(--border-dim);
    border-radius: 100px;
    padding: 4px 12px;
    width: fit-content;
}

.vs-badge--accent {
    color: var(--accent);
    border-color: var(--border-accent);
}

.vs-card-title {
    font-size: 1.375rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.vs-card--geo .vs-card-title {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vs-card-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.vs-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-dim);
}

.vs-card-list li {
    color: var(--text-muted);
    font-size: 0.875rem;
    padding-left: 16px;
    position: relative;
}

.vs-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--text-dim);
}

.vs-card-list--accent li::before {
    background: var(--accent);
    opacity: 0.6;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
}

/* Overlap grid */
.overlap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border-dim);
    border-radius: 12px;
    overflow: hidden;
}

.overlap-item {
    background: var(--card-bg);
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: background 0.2s;
}

.overlap-item:hover {
    background: #1a1a1a;
}

.overlap-icon {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.625rem;
    letter-spacing: 0.08em;
    color: rgba(200, 240, 74, 0.45);
    border: 1px solid rgba(200, 240, 74, 0.15);
    border-radius: 6px;
    padding: 6px 8px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 2px;
}

.overlap-title {
    font-size: 1rem;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.overlap-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* =============================================
   404
   ============================================= */

.error-section {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.error-content {
    max-width: 560px;
}

.error-code {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(5rem, 15vw, 10rem);
    line-height: 1;
    display: block;
    margin-bottom: 16px;
}

.error-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

.error-text {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.error-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.error-nav-label {
    font-size: 0.8125rem;
    color: var(--text-dim);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.error-nav-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.error-nav-links a {
    color: var(--text-muted);
    font-size: 0.875rem;
    border: 1px solid var(--border-dim);
    border-radius: 6px;
    padding: 6px 14px;
    transition: color 0.2s, border-color 0.2s;
}

.error-nav-links a:hover {
    color: var(--accent);
    border-color: var(--border-accent);
    text-decoration: none;
    opacity: 1;
}

/* =============================================
   PRIVACYBELEID & JURIDISCH
   ============================================= */

.legal-section {
    padding: 64px 0 100px;
}

.legal-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 64px;
    align-items: start;
}

.legal-toc {
    position: sticky;
    top: 88px;
    background: var(--card-bg);
    border: 1px solid var(--border-dim);
    border-radius: 10px;
    padding: 24px;
}

.legal-toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 12px;
    counter-reset: none;
}

.legal-toc-list a {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
    display: block;
    padding: 5px 0;
    border-bottom: 1px solid var(--border-dim);
    transition: color 0.2s;
}

.legal-toc-list a:hover {
    color: var(--accent);
    text-decoration: none;
    opacity: 1;
}

.legal-toc-list li:last-child a {
    border-bottom: none;
}

.legal-content section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-dim);
}

.legal-content section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-content h2 {
    font-size: 1.375rem;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.legal-content p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-content p:last-child {
    margin-bottom: 0;
}

.legal-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 14px 0;
}

.legal-content li {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
    padding-left: 18px;
    position: relative;
}

.legal-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.4;
}

.legal-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin: 16px 0;
}

.legal-table th,
.legal-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-dim);
    text-align: left;
    vertical-align: top;
    color: var(--text-muted);
}

.legal-table th {
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* =============================================
   RESPONSIVE
   ============================================= */

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

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0 auto;
        padding: 8px 0;
    }
}

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

    .content-sidebar {
        position: static;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .signals-grid {
        grid-template-columns: 1fr;
    }

    .vs-intro-grid {
        grid-template-columns: 1fr;
    }

    .vs-divider {
        width: 100%;
        height: 40px;
    }

    .overlap-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-tagline {
        max-width: 100%;
    }

    .legal-grid {
        grid-template-columns: 1fr;
    }

    .legal-toc {
        position: static;
    }

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

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .post-nav {
        grid-template-columns: 1fr;
    }

    .authority-grid {
        grid-template-columns: 1fr;
    }

    .optim-grid {
        grid-template-columns: 1fr;
    }

    .mechanism-step {
        grid-template-columns: 40px 1fr;
    }

    .tools-grid,
    .tools-grid--monitoring {
        grid-template-columns: 1fr;
    }

    .post-card--featured {
        grid-template-columns: 1fr;
    }

    .posts-grid {
        grid-template-columns: 1fr 1fr;
    }

    .post-grid {
        grid-template-columns: 1fr;
    }

    .post-sidebar {
        position: static;
    }

    .schema-tools-grid {
        grid-template-columns: 1fr;
    }

    .tip-item {
        grid-template-columns: 1fr;
    }

    .strategy-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .toc-block {
        flex-direction: column;
        gap: 16px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .definitie-onderscheid {
        flex-direction: column;
        gap: 8px;
    }

    .optin-block {
        padding: 48px 24px;
    }

    .optin-form {
        flex-direction: column;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }

    .site-footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-legal-nav {
        flex-wrap: wrap;
        gap: 12px;
    }

    .page-hero {
        padding: 100px 0 60px;
    }

    /* Overlay — smooth fade */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.65);
        z-index: 98;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-open .nav-overlay {
        opacity: 1;
        visibility: visible;
    }

    /* Header: backdrop-filter verwijderen zodat fixed nav correct positioneert */
    .nav-open .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: #0d0d0d;
    }

    /* Side-drawer */
    .main-navigation {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        height: 100vh !important;
        width: min(300px, 85vw);
        background: #111111;
        border-left: 1px solid var(--border-dim);
        padding: 64px 0 0;
        z-index: 999 !important;
        flex-direction: column;
        display: flex !important;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-open .main-navigation {
        transform: translateX(0) !important;
    }

    /* Drawer header + footer zichtbaar op mobiel */
    .nav-drawer-header {
        display: flex;
    }

    .nav-drawer-footer {
        display: block;
    }

    /* Drawer header */
    .nav-drawer-header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        border-bottom: 1px solid var(--border-dim);
        flex-shrink: 0;
    }

    .nav-drawer-brand {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
        font-size: 0.9375rem;
        color: var(--text);
        letter-spacing: -0.02em;
    }

    .nav-drawer-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        background: none;
        border: 1px solid var(--border-dim);
        border-radius: 7px;
        color: var(--text-muted);
        cursor: pointer;
        transition: border-color 0.2s, color 0.2s;
        flex-shrink: 0;
    }

    .nav-drawer-close:hover {
        border-color: rgba(200, 240, 74, 0.3);
        color: var(--text);
    }

    /* Scrollbare menulijst */
    .main-navigation .primary-menu {
        flex: 1;
        overflow-y: auto;
        padding: 8px 0;
    }

    /* Drawer footer met CTA */
    .nav-drawer-footer {
        padding: 16px 20px 28px;
        border-top: 1px solid var(--border-dim);
        flex-shrink: 0;
    }

    .nav-drawer-cta {
        display: block;
        text-align: center;
        padding: 12px 16px;
        background: var(--accent);
        color: #0d0d0d;
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
        font-size: 0.875rem;
        border-radius: 8px;
        transition: opacity 0.2s;
    }

    .nav-drawer-cta:hover {
        opacity: 0.85;
        text-decoration: none;
        color: #0d0d0d;
    }

    /* Top-level menu items */
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .main-navigation > ul > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 20px;
        font-size: 0.9375rem;
        color: var(--text-muted);
        border-bottom: 1px solid var(--border-dim);
        transition: color 0.2s;
    }

    .main-navigation > ul > li > a:hover {
        color: var(--text);
    }

    /* CSS chevron voor submenu-items */
    .main-navigation > ul > li.menu-item-has-children > a::after {
        content: '';
        display: inline-block;
        width: 7px;
        height: 7px;
        border-right: 1.5px solid currentColor;
        border-bottom: 1.5px solid currentColor;
        transform: rotate(45deg);
        opacity: 0.4;
        transition: transform 0.22s ease, opacity 0.22s ease;
        flex-shrink: 0;
        margin-bottom: 2px;
    }

    .main-navigation > ul > li.menu-item-has-children.open > a::after {
        transform: rotate(-135deg);
        opacity: 0.8;
        margin-bottom: -2px;
    }

    /* Submenu's — standaard verborgen */
    .main-navigation ul li ul {
        position: static;
        display: none;
        background: rgba(255, 255, 255, 0.025);
        border: none;
        box-shadow: none;
        border-radius: 0;
        padding: 6px 0;
        min-width: 0;
        border-bottom: 1px solid var(--border-dim);
    }

    .main-navigation ul li.open > ul {
        display: block;
    }

    .main-navigation ul li ul a {
        padding: 10px 20px 10px 36px;
        font-size: 0.875rem;
        color: var(--text-dim);
        border-bottom: none;
        position: relative;
    }

    .main-navigation ul li ul a::before {
        content: '';
        position: absolute;
        left: 22px;
        top: 50%;
        transform: translateY(-50%);
        width: 5px;
        height: 1px;
        background: currentColor;
        opacity: 0.3;
    }

    .main-navigation ul li ul a:hover {
        color: var(--accent);
    }

    /* GEO Checklist pagina */
    .checklist-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .checklist-form-card {
        padding: 32px 24px;
    }

    .preview-categories {
        grid-template-columns: 1fr;
    }

    .voor-wie-grid {
        grid-template-columns: 1fr;
    }

    /* Over pagina */
    .over-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .over-topics-grid {
        grid-template-columns: 1fr;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        font-size: 0.8125rem;
        padding: 7px 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 28px 24px;
    }

    .step {
        padding: 28px 24px;
    }
}

