/* ── Variables ──────────────────────────────────────────────────────────── */
:root {
    --blue:       #0091D5;
    --blue-light: #1AA0DC;
    --purple:     #7B4F9E;
    --purple-dark:#5A3A7A;
    --bg:         #F4F7FB;
    --text:       #1E1E28;
    --white:      #ffffff;
    --border:     #E2E8F0;
    --shadow:     0 4px 24px rgba(0,0,0,.08);
    --radius:     10px;
    --font:       'Helvetica Neue', Helvetica, Arial, sans-serif;
    --max-w:      1160px;
    --transition: .2s ease;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 15px; color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-light); }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────────────────── */
h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 700; line-height: 1.25; }
h3 { font-size: 20px; font-weight: 700; line-height: 1.3; }
h4 { font-size: 16px; font-weight: 700; }
p  { font-size: 15px; color: #4A5568; line-height: 1.7; }

/* ── Layout ─────────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--gray { background: var(--bg); }
.section--blue { background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%); color: var(--white); }
.section__label { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.section__title { margin-bottom: 16px; }
.section__subtitle { font-size: 17px; color: #64748B; max-width: 560px; }
.section__header { margin-bottom: 56px; }
.section__header--center { text-align: center; }
.section__header--center .section__subtitle { margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; border: none; transition: var(--transition); text-decoration: none; }
.btn--primary { background: var(--blue); color: var(--white); }
.btn--primary:hover { background: var(--blue-light); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,145,213,.35); }
.btn--outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn--outline:hover { background: var(--blue); color: var(--white); }
.btn--white { background: var(--white); color: var(--blue); }
.btn--white:hover { background: var(--bg); color: var(--blue); transform: translateY(-1px); }
.btn--lg { padding: 16px 36px; font-size: 17px; }

/* ── Navigation ─────────────────────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--border); }
.nav__inner { display: flex; align-items: center; height: 68px; gap: 40px; }
.nav__logo img { height: 38px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav__menu a { font-size: 14px; font-weight: 600; color: var(--text); transition: color var(--transition); }
.nav__menu a:hover, .nav__menu a.active { color: var(--blue); }
.nav__cta { margin-left: 8px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; margin-left: auto; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero { background: linear-gradient(140deg, #0A1628 0%, #0D2044 40%, #1a1060 100%); padding: 96px 0 80px; overflow: hidden; position: relative; }
.hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(0,145,213,.25) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(123,79,158,.2) 0%, transparent 70%); pointer-events: none; }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,145,213,.15); border: 1px solid rgba(0,145,213,.3); border-radius: 100px; padding: 6px 16px; font-size: 13px; color: var(--blue-light); font-weight: 600; margin-bottom: 24px; }
.hero__badge::before { content: '●'; font-size: 8px; color: #4ADE80; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--blue-light); }
.hero__subtitle { font-size: 17px; color: rgba(255,255,255,.75); margin-bottom: 36px; max-width: 480px; line-height: 1.65; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__stats { display: flex; gap: 32px; }
.hero__stat { }
.hero__stat-value { font-size: 22px; font-weight: 700; color: var(--white); }
.hero__stat-label { font-size: 12px; color: rgba(255,255,255,.55); }
.hero__visual { display: flex; justify-content: center; align-items: center; }
.hero__mockup { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 28px; width: 100%; max-width: 420px; backdrop-filter: blur(10px); }
.hero__mockup-bar { display: flex; gap: 6px; margin-bottom: 20px; }
.hero__mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.hero__mockup-dot:nth-child(1) { background: #FF5F57; }
.hero__mockup-dot:nth-child(2) { background: #FEBC2E; }
.hero__mockup-dot:nth-child(3) { background: #28C840; }
.hero__mockup-row { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,.05); border-radius: 8px; padding: 12px 16px; margin-bottom: 8px; }
.hero__mockup-row:last-child { margin-bottom: 0; }
.hero__mockup-label { font-size: 13px; color: rgba(255,255,255,.7); }
.hero__mockup-badge { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.hero__mockup-badge--green  { background: rgba(74,222,128,.15); color: #4ADE80; }
.hero__mockup-badge--blue   { background: rgba(0,145,213,.2); color: var(--blue-light); }
.hero__mockup-badge--purple { background: rgba(123,79,158,.2); color: #C084FC; }
.hero__mockup-sync { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 16px; border-top: 1px solid rgba(255,255,255,.08); margin-top: 16px; }
.hero__mockup-sync span { font-size: 13px; color: rgba(255,255,255,.5); }
.hero__mockup-sync strong { color: var(--blue-light); font-size: 13px; }

/* ── Hero dashboard (nieuw) ─────────────────────────────────────────────── */
.hero__dashboard { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); border-radius: 20px; padding: 28px; width: 100%; max-width: 420px; backdrop-filter: blur(16px); }
.hero__dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.hero__dash-title { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.9); }
.hero__dash-live { font-size: 12px; color: #4ADE80; font-weight: 600; }
.hero__dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 24px; }
.hero__dash-stat { background: rgba(255,255,255,.06); border-radius: 12px; padding: 14px 12px; text-align: center; }
.hero__dash-stat-value { font-size: 22px; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 4px; }
.hero__dash-stat-label { font-size: 10px; color: rgba(255,255,255,.45); line-height: 1.3; }
.hero__dash-divider { height: 1px; background: rgba(255,255,255,.08); margin-bottom: 20px; }
.hero__dash-feed { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.hero__dash-item { display: flex; align-items: center; gap: 10px; }
.hero__dash-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.hero__dash-dot--green  { background: #4ADE80; box-shadow: 0 0 6px #4ADE80; }
.hero__dash-dot--blue   { background: var(--blue-light); box-shadow: 0 0 6px var(--blue-light); }
.hero__dash-dot--yellow { background: #FBBF24; box-shadow: 0 0 6px #FBBF24; }
.hero__dash-text { font-size: 13px; color: rgba(255,255,255,.65); flex: 1; }
.hero__dash-text strong { color: rgba(255,255,255,.9); font-weight: 600; }
.hero__dash-time { font-size: 11px; color: rgba(255,255,255,.3); white-space: nowrap; }
.hero__dash-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; color: rgba(255,255,255,.5); font-weight: 600; }
.hero__dash-arrows { display: flex; flex-direction: column; gap: 2px; align-items: center; }
.hero__dash-arrow { font-size: 16px; color: var(--blue-light); line-height: 1; }
.hero__dash-arrow--purple { color: #C084FC; }

/* ── Logos bar ──────────────────────────────────────────────────────────── */
.logos { padding: 32px 0; border-bottom: 1px solid var(--border); }
.logos__inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.logos__label { font-size: 13px; color: #94A3B8; white-space: nowrap; margin-right: 8px; }
.logos__items { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.logos__item { font-size: 14px; font-weight: 700; color: #CBD5E1; }

/* ── Features grid ──────────────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: var(--transition); }
.feature-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.feature-card__icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, rgba(0,145,213,.12), rgba(123,79,158,.12)); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.feature-card h3 { font-size: 17px; margin-bottom: 10px; }
.feature-card p { font-size: 14px; }

/* ── How it works ────────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.steps::before { content: ''; position: absolute; top: 32px; left: calc(16.66% + 16px); right: calc(16.66% + 16px); height: 2px; background: linear-gradient(90deg, var(--blue), var(--purple)); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step__number { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--purple)); color: var(--white); font-size: 22px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(0,145,213,.3); }
.step h3 { margin-bottom: 10px; }
.step p { font-size: 14px; }

/* ── Pricing ─────────────────────────────────────────────────────────────── */
.pricing-card { background: var(--white); border: 2px solid var(--blue); border-radius: 16px; padding: 48px; max-width: 480px; margin: 0 auto; box-shadow: 0 8px 40px rgba(0,145,213,.15); position: relative; overflow: hidden; }
.pricing-card--standalone::before { content: 'MEEST GEKOZEN'; position: absolute; top: 20px; right: -28px; background: linear-gradient(135deg, var(--blue), var(--purple)); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: .1em; padding: 6px 40px; transform: rotate(45deg); }
.pricing-card__name { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.pricing-card__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.pricing-card__amount { font-size: 52px; font-weight: 700; color: var(--text); }
.pricing-card__currency { font-size: 24px; font-weight: 700; color: var(--text); }
.pricing-card__period { font-size: 16px; color: #94A3B8; }
.pricing-card__trial { font-size: 13px; color: #64748B; margin-bottom: 32px; }
.pricing-card__trial strong { color: var(--blue); }
.pricing-card__divider { height: 1px; background: var(--border); margin: 28px 0; }
.pricing-card__features { margin-bottom: 36px; }
.pricing-card__feature { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 14px; }
.pricing-card__feature::before { content: '✓'; color: var(--blue); font-weight: 700; font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.pricing-card .btn { width: 100%; justify-content: center; }
.pricing-card__note { text-align: center; font-size: 12px; color: #94A3B8; margin-top: 16px; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--text); gap: 16px; }
.faq-question:hover { color: var(--blue); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; transition: var(--transition); color: var(--blue); }
.faq-item.open .faq-icon { background: var(--blue); border-color: var(--blue); color: var(--white); transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 22px; font-size: 15px; color: #4A5568; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ── CTA section ─────────────────────────────────────────────────────────── */
.cta { text-align: center; padding: 96px 0; background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%); }
.cta h2 { color: var(--white); margin-bottom: 16px; }
.cta p { color: rgba(255,255,255,.8); font-size: 18px; margin-bottom: 40px; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact form ────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info h3 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-detail__icon { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, rgba(0,145,213,.1), rgba(123,79,158,.1)); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-detail__text { font-size: 14px; }
.contact-detail__label { font-weight: 700; color: var(--text); margin-bottom: 2px; font-size: 13px; }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 40px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-family: var(--font); font-size: 14px; color: var(--text); transition: border-color var(--transition); outline: none; background: var(--white); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,145,213,.1); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Page hero ───────────────────────────────────────────────────────────── */
.page-hero { background: linear-gradient(140deg, #0A1628 0%, #0D2044 60%, #1a1060 100%); padding: 64px 0; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 18px; max-width: 560px; margin: 0 auto; }

/* ── Features page detail ───────────────────────────────────────────────── */
.feature-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 80px; }
.feature-detail:last-child { margin-bottom: 0; }
.feature-detail--reverse .feature-detail__text { order: 2; }
.feature-detail--reverse .feature-detail__visual { order: 1; }
.feature-detail__label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.feature-detail h2 { margin-bottom: 16px; }
.feature-detail__list { margin-top: 24px; }
.feature-detail__list li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 14px; color: #4A5568; }
.feature-detail__list li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.feature-detail__visual { background: linear-gradient(135deg, rgba(0,145,213,.08), rgba(123,79,158,.08)); border: 1px solid var(--border); border-radius: 16px; padding: 48px; min-height: 280px; display: flex; align-items: center; justify-content: center; }
.feature-detail__icon-big { font-size: 72px; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer { background: #0A1628; color: rgba(255,255,255,.6); padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand { }
.footer__logo { margin-bottom: 16px; }
.footer__logo img { height: 36px; filter: brightness(0) invert(1); }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.6; }
.footer__col h4 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer__col ul { }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a { font-size: 14px; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer__col ul a:hover { color: var(--blue-light); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__copy { font-size: 13px; }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 13px; color: rgba(255,255,255,.4); }
.footer__legal a:hover { color: rgba(255,255,255,.7); }

/* ── Pricing grid (twee kaarten naast elkaar) ────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 860px; margin: 0 auto; }
.pricing-grid .pricing-card { max-width: none; margin: 0; }
.pricing-card--simple { border: 2px solid var(--border); box-shadow: none; }
.pricing-card--simple:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.pricing-card--featured { border: 2px solid var(--blue); box-shadow: 0 8px 40px rgba(0,145,213,.18); }
.pricing-card__ribbon { position: absolute; top: 0; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--blue), var(--purple)); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: .08em; padding: 6px 20px; border-radius: 0 0 12px 12px; text-transform: uppercase; white-space: nowrap; }
.pricing-card--featured { padding-top: 60px; }
.pricing-card__monthly-equiv { font-size: 13px; color: var(--blue); font-weight: 600; margin-bottom: 4px; }
@media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ── Billing toggle ──────────────────────────────────────────────────────── */
.billing-toggle { display:inline-flex; flex-direction:row; flex-wrap:nowrap; background:var(--white); border:1.5px solid var(--border); border-radius:100px; padding:4px; gap:4px; }
.billing-toggle__btn { border:none; background:transparent; padding:10px 24px; border-radius:100px; font-size:14px; font-weight:600; cursor:pointer; color:#64748B; transition:var(--transition); display:inline-flex; align-items:center; gap:8px; white-space:nowrap; }
.billing-toggle__btn.active { background:var(--blue); color:var(--white); }
.billing-toggle__save { background:#D1FAE5; color:#065F46; font-size:11px; font-weight:700; padding:2px 8px; border-radius:100px; white-space:nowrap; }
.billing-toggle__btn.active .billing-toggle__save { background:rgba(255,255,255,.2); color:var(--white); }

/* ── Breadcrumb / page layout ────────────────────────────────────────────── */
.page-content { max-width: 800px; margin: 0 auto; padding: 64px 24px; }
.page-content h1 { margin-bottom: 32px; }
.page-content h2 { margin: 40px 0 16px; font-size: 22px; color: var(--text); }
.page-content h3 { margin: 28px 0 12px; font-size: 17px; color: var(--text); }
.page-content p  { margin-bottom: 16px; }
.page-content ul, .page-content ol { margin: 0 0 18px 22px; }
.page-content ul li, .page-content ol li { margin-bottom: 8px; list-style: disc; font-size: 15px; color: #4A5568; }
.page-content ol li { list-style: decimal; }
.page-content strong { color: var(--text); }
.page-content table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; font-size: 14px; }
.page-content thead { background: var(--bg); }
.page-content th, .page-content td { padding: 10px 14px; border: 1px solid var(--border); text-align: left; vertical-align: top; color: #4A5568; }
.page-content th { font-weight: 700; color: var(--text); font-size: 13px; }
.page-content tbody tr:nth-child(even) td { background: rgba(244, 247, 251, .5); }
.page-content .legal-meta { background: var(--bg); border-left: 3px solid var(--blue); padding: 12px 16px; font-size: 13px; color: #64748B; margin-bottom: 28px; border-radius: 0 6px 6px 0; }
.page-content .legal-note { background: #FEF3C7; border-left: 3px solid #F59E0B; padding: 14px 18px; font-size: 14px; color: #78350F; margin: 20px 0; border-radius: 0 6px 6px 0; }
.page-content .legal-note strong { color: #78350F; }
.page-content hr { border: 0; border-top: 1px solid var(--border); margin: 32px 0; }

/* ── Hero SVG mockup ────────────────────────────────────────────────────── */
.hero__svg-wrap { width: 100%; max-width: 480px; }
.hero__svg-wrap svg { width: 100%; height: auto; display: block; border-radius: 20px; box-shadow: 0 24px 64px rgba(0,0,0,.45); }

/* ── Feature-detail mockups (vervangen emoji-icoon) ─────────────────────── */
.feature-detail__visual--mockup { background: transparent; border: 0; padding: 0; min-height: 0; }
.feature-detail__visual--mockup svg { width: 100%; height: auto; display: block; border-radius: 16px; box-shadow: 0 12px 40px rgba(15, 22, 40, .12); }

/* ── Ex-BTW label naast bedrag ──────────────────────────────────────────── */
.pricing-card__ex-btw { font-size: 12px; color: #94A3B8; font-weight: 600; margin-left: 10px; letter-spacing: .02em; text-transform: lowercase; }

/* ── FAQ-blokken op de FAQ-pagina ───────────────────────────────────────── */
.faq-block { max-width: 720px; margin: 0 auto 56px; }
.faq-block:last-child { margin-bottom: 0; }
.faq-block__title { margin-bottom: 24px; font-size: 22px; }

/* ── Abonneren / portaal containers ─────────────────────────────────────── */
.subscribe-wrap, .portal-wrap { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 40px; max-width: 880px; margin: 0 auto; box-shadow: var(--shadow); }
.subscribe-wrap form, .portal-wrap form { font-family: var(--font); }

.subscribe-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 880px; margin: 32px auto 0; }
.subscribe-trust__item { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.subscribe-trust__icon { font-size: 24px; flex-shrink: 0; }
.subscribe-trust__item strong { display: block; font-size: 14px; margin-bottom: 4px; color: var(--text); }
.subscribe-trust__item p { font-size: 13px; color: #64748B; margin: 0; line-height: 1.5; }

/* ── Contact-form (shortcode) override zodat het matcht ─────────────────── */
.contact-form--abbo { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 40px; box-shadow: var(--shadow); }
.contact-form--abbo form { font-family: var(--font); }
.contact-form--abbo input[type=text],
.contact-form--abbo input[type=email],
.contact-form--abbo input[type=tel],
.contact-form--abbo textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-family: var(--font); font-size: 14px; color: var(--text); margin-bottom: 16px; background: var(--white); }
.contact-form--abbo input:focus,
.contact-form--abbo textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,145,213,.1); outline: none; }
.contact-form--abbo label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.contact-form--abbo button,
.contact-form--abbo input[type=submit] { background: var(--blue); color: var(--white); padding: 14px 28px; border: 0; border-radius: 8px; font-weight: 700; font-size: 15px; cursor: pointer; transition: var(--transition); }
.contact-form--abbo button:hover,
.contact-form--abbo input[type=submit]:hover { background: var(--blue-light); box-shadow: 0 6px 20px rgba(0,145,213,.35); }

/* ── Nav portaal-link ───────────────────────────────────────────────────── */
.nav__menu-sep { position: relative; padding-left: 18px; }
.nav__menu-sep::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 18px; background: var(--border); }
.nav__portal { font-size: 13px !important; color: #64748B !important; }
.nav__portal:hover, .nav__portal[data-active="1"] { color: var(--blue) !important; }

/* ── Footer notice (BTW disclaimer) ─────────────────────────────────────── */
.footer__notice { font-size: 12px; color: rgba(255,255,255,.45); text-align: center; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.08); margin-bottom: 8px; letter-spacing: .02em; }
.footer__notice .cmplz-manage-consent { color: rgba(255,255,255,.55); text-decoration: underline; cursor: pointer; }
.footer__notice .cmplz-manage-consent:hover { color: var(--blue-light); }
.footer__notice-sep { color: rgba(255,255,255,.25); }

/* BolBuddy mini cookie-notice (privacy-first modus) */
.bb-cookie-notice {
    position: fixed; right: 16px; bottom: 16px; z-index: 9998;
    max-width: 320px; width: calc(100vw - 32px);
    background: #fff; border: 1px solid var(--border); border-radius: 10px;
    box-shadow: 0 8px 28px rgba(15,22,40,.18);
    padding: 10px 12px 10px 14px;
    font-size: 12px; line-height: 1.45; color: #4A5568;
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font);
}
.bb-cookie-notice[hidden] { display: none; }
.bb-cookie-notice__text { flex: 1; min-width: 0; }
.bb-cookie-notice__text a { color: var(--blue); font-weight: 600; white-space: nowrap; }
.bb-cookie-notice__close {
    background: transparent; border: 0; cursor: pointer;
    color: #94A3B8; font-size: 18px; line-height: 1; padding: 0;
    width: 22px; height: 22px; flex-shrink: 0; border-radius: 4px;
    transition: var(--transition);
}
.bb-cookie-notice__close:hover { color: var(--text); background: var(--bg); }
@media (max-width: 480px) {
    .bb-cookie-notice { right: 12px; bottom: 12px; max-width: calc(100vw - 24px); }
}

/* Complianz banner — klein in de hoek, brand-conform */
#cmplz-cookiebanner-container .cmplz-cookiebanner {
    font-family: var(--font) !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 40px rgba(15,22,40,.22) !important;
    max-width: 360px !important;
    width: calc(100vw - 32px) !important;
    padding: 18px 20px !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
    border: 1px solid var(--border) !important;
    background: #fff !important;
}
#cmplz-cookiebanner-container .cmplz-cookiebanner.cmplz-bottom-right { right: 16px !important; bottom: 16px !important; left: auto !important; }
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-header { padding: 0 !important; margin-bottom: 8px !important; }
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-logo { display: none !important; }
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-title { font-size: 15px !important; font-weight: 700 !important; color: var(--text) !important; }
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-close { width: 20px !important; height: 20px !important; }
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-divider { display: none !important; }
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-message { font-size: 12.5px !important; color: #4A5568 !important; margin-bottom: 12px !important; }
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-categories { font-size: 12px !important; margin-bottom: 12px !important; }
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-category summary { padding: 6px 0 !important; }
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-category-title { font-size: 12px !important; font-weight: 600 !important; }
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-buttons { display: flex !important; flex-wrap: wrap !important; gap: 6px !important; padding: 0 !important; }
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-buttons .cmplz-btn {
    flex: 1 1 auto !important; min-width: 0 !important;
    padding: 8px 12px !important; font-size: 12.5px !important; font-weight: 600 !important;
    border-radius: 6px !important; line-height: 1.3 !important;
}
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-accept { background: var(--blue) !important; border: 1px solid var(--blue) !important; color: #fff !important; }
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-accept:hover { background: var(--blue-light) !important; border-color: var(--blue-light) !important; }
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-deny { background: #fff !important; color: var(--text) !important; border: 1px solid var(--border) !important; }
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-view-preferences { background: #fff !important; color: var(--blue) !important; border: 1px solid var(--blue) !important; }
@media (max-width: 480px) {
    #cmplz-cookiebanner-container .cmplz-cookiebanner { right: 12px !important; bottom: 12px !important; max-width: calc(100vw - 24px) !important; padding: 14px 16px !important; }
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
/* Menu klapt in zodra de zes links + knop niet meer naast elkaar passen. */
@media (max-width: 1080px) {
    .nav__menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); flex-direction: column; padding: 24px; gap: 16px; box-shadow: var(--shadow); }
    .nav__menu.open { display: flex; }
    .nav__inner { gap: 20px; }
    .nav__cta { margin-left: auto; }
    .nav__toggle { display: flex; margin-left: 0; }
}

@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .feature-detail { grid-template-columns: 1fr; gap: 40px; }
    .feature-detail--reverse .feature-detail__text { order: 0; }
    .feature-detail--reverse .feature-detail__visual { order: 0; }
}

@media (max-width: 1024px) {
    .subscribe-trust { grid-template-columns: 1fr; }
    .subscribe-wrap, .portal-wrap, .contact-form--abbo { padding: 28px; }
}

@media (max-width: 768px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__visual { display: none; }
    .steps { grid-template-columns: 1fr; }
    .steps::before { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .nav__cta { display: none; }
    .nav__toggle { margin-left: auto; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .hero__stats { gap: 20px; }
    .section { padding: 56px 0; }
    .pricing-card { padding: 32px 24px; }
}
