/*
Theme Name: JUNGIT
Theme URI: https://jungit.nl
Author: JUNGIT
Author URI: https://jungit.nl
Description: Custom theme voor jungit.nl - Boekhouding ZZP en StekMaat
Version: 3.0.0
License: GNU General Public License v2 or later
Text Domain: jungit
*/

/* ============================================================
   CSS VARIABELEN
   ============================================================ */
:root {
    /* Base */
    --bg:           #f8fafc;
    --bg-dark:      #0f172a;
    --bg-card:      #ffffff;
    --text:         #0f172a;
    --text-muted:   #64748b;
    --border:       #e2e8f0;
    --shadow:       0 2px 8px rgba(15,23,42,.08);
    --shadow-lg:    0 8px 32px rgba(15,23,42,.12);
    --radius:       12px;
    --radius-sm:    8px;
    --focus-ring:   0 0 0 3px rgba(37,99,235,.35);

    /* Boekhouding ZZP - blauw */
    --bzzp:         #2563eb;
    --bzzp-light:   #eff6ff;
    --bzzp-dark:    #1d4ed8;
    --bzzp-muted:   #93c5fd;

    /* StekMaat - groen */
    --stek:         #16a34a;
    --stek-light:   #f0fdf4;
    --stek-dark:    #15803d;
    --stek-muted:   #86efac;

    /* Typography */
    --font:         'Inter', system-ui, -apple-system, sans-serif;
    --font-mono:    'Fira Mono', 'Consolas', monospace;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

ul { list-style: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

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

.flex { display: flex; align-items: center; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* ============================================================
   TYPOGRAFIE
   ============================================================ */
h1, h2, h3, h4 {
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }

.lead {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 99px;
    margin-bottom: 16px;
}

.label-bzzp { background: var(--bzzp-light); color: var(--bzzp); }
.label-stek  { background: var(--stek-light);  color: var(--stek); }
.label-dark  { background: rgba(255,255,255,.15); color: #fff; }

/* ============================================================
   KNOPPEN
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: .9375rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all .18s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary-bzzp {
    background: var(--bzzp);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37,99,235,.3);
}
.btn-primary-bzzp:hover { background: var(--bzzp-dark); box-shadow: 0 6px 20px rgba(37,99,235,.4); }

.btn-primary-stek {
    background: var(--stek);
    color: #fff;
    box-shadow: 0 4px 14px rgba(22,163,74,.3);
}
.btn-primary-stek:hover { background: var(--stek-dark); box-shadow: 0 6px 20px rgba(22,163,74,.4); }

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text);
}
.btn-outline:hover { border-color: var(--text); background: var(--bg); }

.btn-outline-light {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.3);
    color: #fff;
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.btn-sm { padding: 8px 16px; font-size: .875rem; }
.btn-lg { padding: 15px 32px; font-size: 1rem; }

.btn-disabled {
    opacity: .5;
    cursor: not-allowed;
    pointer-events: none;
    transform: none !important;
}
.btn-disabled:hover { transform: none; }

/* ============================================================
   NAVIGATIE
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -.03em;
}

.site-logo svg { flex-shrink: 0; }

.nav-logo-dot { color: var(--bzzp); }

.primary-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.primary-nav a {
    display: block;
    padding: 6px 14px;
    border-radius: 6px;
    color: rgba(255,255,255,.75);
    font-size: .9rem;
    font-weight: 500;
    transition: all .15s;
    text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a.current-menu-item,
.primary-nav li.current-menu-item > a,
.primary-nav li.current_page_item > a {
    color: #fff;
    background: rgba(255,255,255,.1);
}

.nav-cta {
    background: var(--bzzp) !important;
    color: #fff !important;
    padding: 7px 16px !important;
    border-radius: 6px !important;
}
.nav-cta:hover { background: var(--bzzp-dark) !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .2s;
}

/* ============================================================
   HOMEPAGE HERO
   ============================================================ */
.hero {
    background: var(--bg-dark);
    padding: 96px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37,99,235,.18) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 99px;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.7);
    font-size: .8125rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero h1 {
    color: #fff;
    margin-bottom: 20px;
}

.hero h1 span { color: var(--bzzp-muted); }

.hero .lead {
    color: rgba(255,255,255,.65);
    max-width: 560px;
    margin: 0 auto 48px;
}

/* ============================================================
   PRODUCT CARDS (hero)
   ============================================================ */
.product-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 820px;
    margin: 0 auto;
    text-align: left;
}

.product-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 32px;
    backdrop-filter: blur(8px);
    transition: border-color .2s, transform .2s;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: var(--radius) var(--radius) 0 0;
}

.product-card.bzzp::before { background: var(--bzzp); }
.product-card.stek::before { background: var(--stek); }

.product-card:hover {
    border-color: rgba(255,255,255,.2);
    transform: translateY(-2px);
}

.product-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.bzzp .product-card-icon { background: rgba(37,99,235,.2); }
.stek .product-card-icon { background: rgba(22,163,74,.2); }

.product-card h3 { color: #fff; margin-bottom: 8px; font-size: 1.125rem; }
.product-card p  { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 20px; line-height: 1.6; }

.product-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 99px;
    margin-bottom: 16px;
}
.bzzp .product-tag { background: rgba(37,99,235,.25); color: var(--bzzp-muted); }
.stek .product-tag { background: rgba(22,163,74,.25); color: var(--stek-muted); }

.product-card .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ============================================================
   FEATURE SECTION
   ============================================================ */
.feature-section { background: #fff; }
.feature-section.alt { background: var(--bg); }

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

.feature-grid.reverse .feature-visual { order: -1; }

.feature-content .label { margin-bottom: 12px; }
.feature-content h2 { margin-bottom: 16px; }
.feature-content p { color: var(--text-muted); margin-bottom: 24px; }

.feature-list {
    display: grid;
    gap: 10px;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9375rem;
    color: var(--text-muted);
}

.feature-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.bzzp-check li::before { background: var(--bzzp-light); color: var(--bzzp); }
.stek-check li::before { background: var(--stek-light);  color: var(--stek); }

.feature-visual {
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 32px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.feature-visual.bzzp-visual {
    background: linear-gradient(135deg, var(--bzzp-light) 0%, #fff 100%);
    border-color: #bfdbfe;
}

.feature-visual.stek-visual {
    background: linear-gradient(135deg, var(--stek-light) 0%, #fff 100%);
    border-color: #bbf7d0;
}

/* App mockup card */
.app-mock {
    background: #fff;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 300px;
}

.app-mock-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.app-mock-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.bzzp-icon { background: var(--bzzp-light); }
.stek-icon { background: var(--stek-light); }

.app-mock-title { font-weight: 700; font-size: .9rem; color: var(--text); }
.app-mock-sub   { font-size: .75rem; color: var(--text-muted); }

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.stat-item {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 10px;
    text-align: center;
}

.stat-value {
    font-size: .8125rem;
    font-weight: 700;
    color: var(--text);
    display: block;
}

.stat-label {
    font-size: .6875rem;
    color: var(--text-muted);
    display: block;
}

.mock-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: var(--radius-sm);
    background: var(--bg);
    margin-bottom: 6px;
    font-size: .8rem;
}

.mock-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================================
   FEATURE GRID (3-koloms)
   ============================================================ */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}

.feature-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.feature-card.bzzp .feature-card-icon { background: var(--bzzp-light); }
.feature-card.stek .feature-card-icon { background: var(--stek-light); }

.feature-card h3 { font-size: 1rem; margin-bottom: 8px; }
.feature-card p  { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   DOWNLOAD SECTIE
   ============================================================ */
.download-section {
    background: var(--bg-dark);
    padding: 80px 0;
}

.download-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.download-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
}
.download-card.bzzp::before { background: var(--bzzp); }
.download-card.stek::before { background: var(--stek); }

.download-card h3 { color: #fff; font-size: 1.25rem; margin-bottom: 8px; }
.download-card p  { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 24px; }

.download-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 28px;
}

.meta-item {
    background: rgba(255,255,255,.05);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
}

.meta-key   { font-size: .7rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .06em; }
.meta-value { font-size: .875rem; color: rgba(255,255,255,.85); font-weight: 600; margin-top: 2px; }

.download-card .btn { width: 100%; justify-content: center; }

/* ============================================================
   DOWNLOAD PAGE (volledige pagina)
   ============================================================ */
.page-hero {
    background: var(--bg-dark);
    padding: 64px 0 56px;
}

.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,.6); max-width: 560px; }

.page-content { padding: 64px 0; }

.dl-product-block {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 32px;
}

.dl-product-header {
    padding: 28px 32px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 20px;
}

.dl-product-header.bzzp { background: var(--bzzp-light); }
.dl-product-header.stek { background: var(--stek-light); }

.dl-product-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    background: #fff;
    box-shadow: var(--shadow);
}

.dl-product-name { font-size: 1.25rem; font-weight: 700; }
.dl-product-sub  { font-size: .875rem; color: var(--text-muted); margin-top: 2px; }

.dl-variants {
    padding: 28px 32px;
    display: grid;
    gap: 16px;
}

.dl-variant {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    gap: 20px;
}

.dl-variant-info h4 { font-size: 1rem; margin-bottom: 4px; }
.dl-variant-info p  { font-size: .875rem; color: var(--text-muted); }

.dl-variant-meta { display: flex; gap: 16px; flex-shrink: 0; align-items: center; }

.dl-badge {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 12px;
    text-align: center;
}

.dl-badge-key   { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.dl-badge-value { font-size: .8125rem; font-weight: 700; color: var(--text); }

/* Changelog blokje ("Wat is er nieuw") - gevuld vanuit de releases-plugin */
.dl-changelog {
    margin: 0 32px 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
}
.dl-changelog h4 { font-size: .875rem; margin-bottom: 8px; }
.dl-changelog p { font-size: .875rem; color: var(--text-muted); white-space: pre-line; margin: 0; }

/* ============================================================
   STEKMAAT PAGINA
   ============================================================ */
.stek-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stek-feature {
    background: var(--stek-light);
    border: 1px solid #bbf7d0;
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.stek-feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stek-feature h4 { font-size: .9375rem; margin-bottom: 4px; }
.stek-feature p  { font-size: .875rem; color: var(--text-muted); line-height: 1.55; }

.stek-install-steps {
    counter-reset: steps;
    display: grid;
    gap: 16px;
    margin: 32px 0;
}

.stek-step {
    counter-increment: steps;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
}

.stek-step::before {
    content: counter(steps);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--stek);
    color: #fff;
    font-size: .8125rem;
    font-weight: 700;
    flex-shrink: 0;
}

.stek-step h4 { font-size: .9375rem; margin-bottom: 4px; }
.stek-step p  { font-size: .875rem; color: var(--text-muted); }

.stek-notice {
    background: #fefce8;
    border: 1px solid #fde68a;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    font-size: .875rem;
    color: #92400e;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 24px 0;
}

/* ============================================================
   GENERIC PAGINA (page.php)
   ============================================================ */
.page-wrap { padding: 64px 0; }
.page-wrap h1 { margin-bottom: 32px; }
.page-wrap h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.page-wrap h3 { font-size: 1.125rem; margin: 28px 0 10px; }
.page-wrap p  { color: var(--text-muted); margin-bottom: 16px; }
.page-wrap ul { list-style: disc; padding-left: 24px; color: var(--text-muted); margin-bottom: 16px; }
.page-wrap ul li { margin-bottom: 6px; }
.page-wrap a  { color: var(--bzzp); }
.page-wrap a:hover { text-decoration: underline; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8125rem;
    color: rgba(255,255,255,.5);
    margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: .4; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 56px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: rgba(255,255,255,.5);
    font-size: .875rem;
    margin-top: 12px;
    max-width: 260px;
    line-height: 1.7;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 800;
    font-size: 1.125rem;
    letter-spacing: -.03em;
    margin-bottom: 12px;
}

.footer-col h4 {
    color: rgba(255,255,255,.9);
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    color: rgba(255,255,255,.5);
    font-size: .875rem;
    text-decoration: none;
    transition: color .15s;
}

.footer-col ul a:hover { color: rgba(255,255,255,.9); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    color: rgba(255,255,255,.35);
    font-size: .8125rem;
}

.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ============================================================
   CONTACT PAGINA
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.contact-card h3 { margin-bottom: 20px; }

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bzzp-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item h4 { font-size: .875rem; font-weight: 600; margin-bottom: 2px; }
.contact-item p, .contact-item a { font-size: .875rem; color: var(--text-muted); }

/* ============================================================
   ACCORDION (Help)
   ============================================================ */
.accordion {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 32px;
}

.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
    width: 100%;
    padding: 18px 24px;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .9375rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
}

.accordion-trigger::after {
    content: '+';
    font-size: 1.125rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.accordion-trigger[aria-expanded="true"]::after { content: '−'; }

.accordion-body {
    display: none;
    padding: 0 24px 18px;
    background: #fff;
}

.accordion-body.open { display: block; }
.accordion-body p, .accordion-body li { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   VOOR ZZP'ERS PAGINA
   ============================================================ */
.zzp-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 40px 0;
}

.zzp-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.zzp-point-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bzzp-light);
    line-height: 1;
    flex-shrink: 0;
    min-width: 40px;
}

.zzp-point h4 { font-size: 1rem; margin-bottom: 6px; }
.zzp-point p  { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   PRIVACY PAGINA / PROSE
   ============================================================ */
.prose { max-width: 720px; }
.prose h2 { font-size: 1.375rem; margin: 40px 0 12px; }
.prose h3 { font-size: 1.125rem; margin: 28px 0 8px; }
.prose p  { color: var(--text-muted); margin-bottom: 14px; font-size: .9375rem; }
.prose ul { list-style: disc; padding-left: 24px; color: var(--text-muted); margin-bottom: 14px; }
.prose ul li { margin-bottom: 4px; font-size: .9375rem; }

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */
.divider {
    height: 1px;
    background: var(--border);
    margin: 0;
}

.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p  { color: var(--text-muted); max-width: 480px; }

.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ============================================================
   NOTIFICATIE BALK (eventueel)
   ============================================================ */
.topbar {
    background: var(--bzzp);
    color: #fff;
    text-align: center;
    font-size: .8125rem;
    font-weight: 500;
    padding: 8px 24px;
}

.topbar a { color: #fff; text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .feature-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .section { padding: 56px 0; }

    .product-cards       { grid-template-columns: 1fr; max-width: 440px; }
    .grid-2              { grid-template-columns: 1fr; }
    .grid-3              { grid-template-columns: 1fr; }
    .feature-cards       { grid-template-columns: 1fr; }
    .feature-grid        { grid-template-columns: 1fr; }
    .feature-grid.reverse .feature-visual { order: 0; }
    .download-cards      { grid-template-columns: 1fr; }
    .dl-variant          { flex-direction: column; align-items: flex-start; }
    .dl-variant-meta     { width: 100%; flex-wrap: wrap; }
    .footer-grid         { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom       { flex-direction: column; gap: 12px; text-align: center; }
    .contact-grid        { grid-template-columns: 1fr; }
    .stek-features-grid  { grid-template-columns: 1fr; }
    .zzp-points          { grid-template-columns: 1fr; }

    .primary-nav { display: none; position: absolute; top: 64px; left: 0; right: 0;
                   background: var(--bg-dark); flex-direction: column; align-items: stretch;
                   padding: 16px; gap: 4px; border-bottom: 1px solid rgba(255,255,255,.08); }
    .primary-nav.open { display: flex; }
    .hamburger { display: flex; }

    .hero { padding: 64px 0 56px; }

    .dl-product-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    h1 { font-size: 1.875rem; }
    .btn-lg { width: 100%; justify-content: center; }
}
