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

:root {
    --primary:       #7c3aed;
    --primary-dark:  #5b21b6;
    --primary-light: #ede9fe;
    --primary-pale:  #faf5ff;
    --text:          #1e1b4b;
    --text-muted:    #6b7280;
    --border:        #e5e7eb;
    --white:         #ffffff;
    --radius:        16px;
    --shadow:        0 4px 24px rgba(91,33,182,.10);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== Cookie banner ===== */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: #1e1b4b; color: #f5f3ff; z-index: 999; padding: 1rem;
}
.cookie-inner {
    max-width: 960px; margin: 0 auto;
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.cookie-inner p { flex: 1; font-size: .85rem; }
.cookie-inner a { color: #c4b5fd; }
.cookie-inner button {
    background: var(--primary); color: white; border: none;
    padding: .5rem 1.2rem; border-radius: 8px; cursor: pointer; font-size: .85rem;
    white-space: nowrap; font-weight: 600;
}

/* ===== Navbar ===== */
.navbar {
    background: white;
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.nav-container {
    max-width: 1100px; margin: 0 auto; padding: 0 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
.nav-logo   { display: flex; align-items: center; gap: .75rem; }
.logo-svg   { width: 52px; height: 52px; flex-shrink: 0; }
.logo-divider { width: 1px; height: 36px; background: #d1d5db; flex-shrink: 0; }
.logo-text  { display: flex; flex-direction: column; line-height: 1.15; }
.logo-main  { font-weight: 800; font-size: 1.25rem; color: #2e0069; letter-spacing: -.01em; }
.logo-nl    { font-size: 1.05rem; color: var(--primary); font-weight: 700; }
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a {
    font-size: .9rem; font-weight: 500; color: var(--text-muted);
    position: relative; padding-bottom: 2px;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
    height: 2px; background: var(--primary); border-radius: 2px;
    transform: scaleX(0); transition: transform .2s ease;
}
.nav-links a:hover { color: var(--primary); text-decoration: none; }
.nav-links a:hover::after { transform: scaleX(1); }

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, #2e1065 0%, #4c1d95 45%, #7c3aed 100%);
    padding: 4rem 1.5rem 5rem;
    position: relative;
    overflow: hidden;
}
.hero-circle {
    position: absolute; border-radius: 50%;
    background: rgba(255,255,255,.06);
    pointer-events: none;
}
.hero-circle-1 { width: 500px; height: 500px; top: -200px; right: -120px; }
.hero-circle-2 { width: 300px; height: 300px; bottom: -100px; left: -80px; }
.hero-circle-3 { width: 180px; height: 180px; bottom: 40px; right: 200px; background: rgba(255,255,255,.04); }

.hero-container { max-width: 1500px; margin: 0 auto; position: relative; }

/* Outer wrapper met zij-advertenties */
.calc-outer {
    display: grid;
    grid-template-columns: 160px 1fr 160px;
    gap: 1.2rem;
    align-items: start;
}
.side-ad {
    position: sticky;
    top: 80px;
}
.ad-placeholder-side {
    min-height: 600px;
    width: 160px;
}
@media (max-width: 1100px) {
    .calc-outer { grid-template-columns: 1fr; }
    .side-ad { display: none; }
}

.hero-headline {
    text-align: center;
    margin-bottom: .6rem;
}
.hero-headline h1 {
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    font-weight: 800;
    color: white;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.22;
    letter-spacing: -.02em;
}
.highlight { color: var(--primary); }
.hero .highlight { color: #c4b5fd; }
.hero-highlight { color: #c4b5fd; display: block; font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 600; margin-top: .4rem; opacity: .85; }

.hero-sub {
    text-align: center;
    color: rgba(255,255,255,.65);
    font-size: .95rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    letter-spacing: .01em;
}
.hero-sub span {
    display: inline-flex; align-items: center; gap: .3rem;
}
.hero-sub span + span::before {
    content: '·'; margin-right: .3rem; opacity: .5;
}

/* ===== Calculator wrapper ===== */
.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 720px) {
    .calculator-wrapper { grid-template-columns: 1fr; }
}

/* Input side */
.calc-input-side {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 8px 40px rgba(0,0,0,.22);
}
.input-toggle {
    display: flex; gap: .5rem; margin-bottom: 1.5rem;
}
.toggle-btn {
    flex: 1; padding: .55rem; border: 2px solid var(--border);
    border-radius: 10px; background: white; cursor: pointer;
    font-size: .85rem; font-weight: 600; color: var(--text-muted);
    transition: all .2s; font-family: inherit;
}
.toggle-btn.active {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary-dark);
}
.input-label {
    font-size: .85rem; font-weight: 600; color: var(--text-muted);
    margin-bottom: .75rem;
}
.big-input-row {
    display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem;
}
.stepper-btn {
    width: 44px; height: 44px; border-radius: 50%;
    border: 2px solid var(--border); background: white;
    font-size: 1.4rem; font-weight: 300; cursor: pointer;
    color: var(--primary); display: flex; align-items: center; justify-content: center;
    transition: all .2s; flex-shrink: 0; font-family: inherit;
}
.stepper-btn:hover { border-color: var(--primary); background: var(--primary-light); }
.big-input-wrap { flex: 1; position: relative; }
.big-euro {
    position: absolute; left: .75rem; top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem; font-weight: 700; color: var(--primary);
}
.big-input {
    width: 100%; padding: .6rem .6rem .6rem 2.2rem;
    font-size: 1.9rem; font-weight: 800; color: var(--primary-dark);
    border: 2px solid var(--border); border-radius: 10px;
    outline: none; transition: border-color .2s, box-shadow .2s; font-family: inherit;
    -moz-appearance: textfield;
}
.big-input::-webkit-inner-spin-button,
.big-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.big-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124,58,237,.12); }

.calc-btn {
    width: 100%; padding: 1rem;
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
    color: white; border: none; border-radius: 10px;
    font-size: 1rem; font-weight: 700; cursor: pointer;
    transition: filter .2s, transform .15s, box-shadow .2s; font-family: inherit;
    letter-spacing: .01em;
    box-shadow: 0 4px 16px rgba(124,58,237,.45);
}
.calc-btn:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,58,237,.5); }
.calc-btn:active { transform: translateY(0); filter: brightness(.95); }
.input-hint {
    text-align: center; font-size: .75rem; color: var(--text-muted);
    margin-top: .75rem;
}

/* Result side */
.calc-result-side {
    background: linear-gradient(150deg, #4c1d95 0%, #6d28d9 50%, #7c3aed 100%);
    border-radius: var(--radius);
    padding: 2rem;
    min-height: 340px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    box-shadow: 0 8px 40px rgba(0,0,0,.22);
}
.result-empty { text-align: center; opacity: .8; }
.result-empty-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.result-empty p { font-size: .95rem; line-height: 1.5; }

.result-filled { width: 100%; }
.result-title { font-size: .85rem; font-weight: 600; opacity: .75; margin-bottom: .3rem; text-transform: uppercase; letter-spacing: .06em; }
.result-main-amount {
    font-size: 3rem; font-weight: 900; margin-bottom: 1.2rem; line-height: 1;
    text-shadow: 0 2px 16px rgba(0,0,0,.2);
    letter-spacing: -.02em;
}

/* Donut chart */
.result-donut-row {
    display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.2rem;
}
.donut-wrap { position: relative; width: 80px; height: 80px; flex-shrink: 0; }
.donut-svg { width: 80px; height: 80px; transform: rotate(-90deg); }
.donut-bg  { fill: none; stroke: rgba(255,255,255,.18); stroke-width: 10; }
.donut-fill {
    fill: none; stroke: white; stroke-width: 10;
    stroke-linecap: round;
    transition: stroke-dasharray .6s cubic-bezier(.4,0,.2,1);
    filter: drop-shadow(0 0 6px rgba(255,255,255,.4));
}
.donut-pct {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    font-size: .95rem; font-weight: 800;
}
.donut-legend { flex: 1; }
.legend-row { font-size: .8rem; margin-bottom: .4rem; display: flex; align-items: center; gap: .4rem; }
.dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot-light { background: white; }
.dot-dark  { background: rgba(255,255,255,.3); }

.result-breakdown {
    border-top: 1px solid rgba(255,255,255,.2);
    padding-top: .9rem;
}
.breakdown-row {
    display: flex; justify-content: space-between;
    font-size: .85rem; padding: .3rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.breakdown-row:last-child { border-bottom: none; }
.tax-row { opacity: .75; }
.net-row { padding-top: .5rem; font-size: .95rem; }
.result-disclaimer {
    font-size: .7rem; opacity: .55; margin-top: .8rem; line-height: 1.4;
}

/* ===== Ad zone ===== */
.ad-zone { background: #f9fafb; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: .5rem 1.5rem; }
.ad-inner { max-width: 960px; margin: 0 auto; }

/* ===== Sections ===== */
.section-container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section-title {
    text-align: center; font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800; color: var(--text); margin-bottom: .6rem;
    letter-spacing: -.01em;
}
.section-sub {
    text-align: center; color: var(--text-muted);
    font-size: 1rem; margin-bottom: 2.5rem;
}

/* ===== Feature cards ===== */
.features-section { padding: 4.5rem 1.5rem; background: white; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
    border-radius: var(--radius);
    padding: 1.5rem;
    color: white;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(91,33,182,.3); }
.feature-num {
    font-size: .75rem; font-weight: 800; opacity: .4;
    position: absolute; top: 1rem; right: 1rem;
}
.feature-icon {
    font-size: 1.7rem;
    width: 52px; height: 52px;
    background: rgba(255,255,255,.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .2rem; }
.feature-sub { font-size: .8rem; opacity: .7; font-weight: 600; margin-bottom: .5rem; }
.feature-card > p { font-size: .83rem; opacity: .85; line-height: 1.55; }

/* ===== Info section ===== */
.info-section { padding: 4.5rem 1.5rem; background: var(--primary-pale); }
.info-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem;
}
@media (max-width: 640px) { .info-grid { grid-template-columns: 1fr; } }

.info-card {
    border-radius: var(--radius); padding: 1.8rem; color: white;
    position: relative; transition: transform .25s ease, box-shadow .25s ease;
}
.info-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.18); }
.info-card-purple { background: linear-gradient(135deg, #6d28d9, #7c3aed); }
.info-card-green  { background: linear-gradient(135deg, #047857, #059669); }
.info-card-blue   { background: linear-gradient(135deg, #1d4ed8, #2563eb); }
.info-card-orange { background: linear-gradient(135deg, #b45309, #d97706); }

.info-card-num {
    position: absolute; top: 1.2rem; right: 1.2rem;
    font-size: .75rem; font-weight: 800; opacity: .35;
}
.info-icon-wrap { font-size: 1.8rem; margin-bottom: .8rem; }
.info-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .2rem; }
.info-card-sub { font-size: .8rem; opacity: .7; font-weight: 600; margin-bottom: .75rem; }
.info-card p:last-child { font-size: .88rem; opacity: .9; line-height: 1.6; }

/* ===== Rates table ===== */
.rates-section { padding: 4.5rem 1.5rem; background: white; }
.rates-table-wrap { overflow-x: auto; margin-top: .5rem; border-radius: 12px; border: 1px solid var(--border); }
.rates-table {
    width: 100%; border-collapse: collapse; font-size: .95rem;
}
.rates-table th {
    background: var(--primary-light); color: var(--primary-dark);
    padding: .85rem 1.1rem; text-align: left; font-weight: 700;
}
.rates-table th:first-child { border-radius: 12px 0 0 0; }
.rates-table th:last-child  { border-radius: 0 12px 0 0; }
.rates-table td { padding: .85rem 1.1rem; border-bottom: 1px solid var(--border); transition: background .25s; }
.rates-table tr:last-child td { border-bottom: none; }
.rates-table tbody tr:hover td { background: #f9fafb; }
.rates-table tbody tr.active-bracket td {
    background: var(--primary-light) !important;
    font-weight: 600;
}
.rates-table tbody tr.active-bracket td:first-child {
    border-left: 4px solid var(--primary);
    padding-left: calc(1.1rem - 4px);
}
.rate-badge {
    display: inline-block; padding: .25rem .65rem;
    border-radius: 20px; font-size: .8rem; font-weight: 700;
}
.rate-low  { background: #d1fae5; color: #065f46; }
.rate-mid  { background: #dbeafe; color: #1e40af; }
.rate-high { background: var(--primary-light); color: var(--primary-dark); }
.rate-top  { background: #fee2e2; color: #991b1b; }
.rates-note { font-size: .78rem; color: var(--text-muted); margin-top: 1rem; }

/* ===== Why section ===== */
.why-section { padding: 4.5rem 1.5rem; background: var(--primary-pale); }
.why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
    background: white; border-radius: var(--radius);
    padding: 1.8rem; position: relative;
    box-shadow: 0 2px 12px rgba(91,33,182,.07);
    transition: transform .25s ease, box-shadow .25s ease;
}
.why-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(91,33,182,.14); }
.why-num {
    position: absolute; top: 1.2rem; right: 1.2rem;
    font-size: .75rem; font-weight: 800; color: var(--primary); opacity: .35;
}
.why-icon { font-size: 2rem; margin-bottom: .8rem; }
.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .3rem; }
.why-tag { font-size: .8rem; color: var(--text-muted); margin-bottom: .75rem; }
.why-badge {
    display: inline-block; background: var(--primary-light);
    color: var(--primary-dark); font-size: .75rem; font-weight: 700;
    padding: .25rem .7rem; border-radius: 20px; margin-bottom: .75rem;
}
.why-card > p:last-child { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ===== FAQ section ===== */
.faq-section { padding: 4.5rem 1.5rem; background: white; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: .65rem; }

.faq-item {
    border: 1.5px solid var(--border);
    border-radius: 12px; overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.faq-item.open {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(124,58,237,.1);
}
.faq-q {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 1.1rem 1.3rem; background: white; border: none; cursor: pointer;
    font-size: .95rem; font-weight: 600; color: var(--text); text-align: left;
    font-family: inherit; gap: 1rem; transition: background .2s;
}
.faq-q:hover { background: var(--primary-pale); }
.faq-item.open .faq-q { background: var(--primary-pale); color: var(--primary-dark); }
.faq-arrow {
    width: 20px; height: 20px; flex-shrink: 0; color: var(--primary);
    transition: transform .3s ease;
    stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
    fill: none;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .4s ease;
    background: var(--primary-pale);
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 1rem 1.3rem 1.25rem; }
.faq-a p { font-size: .9rem; color: var(--text-muted); line-height: 1.75; }

/* ===== CTA ===== */
.cta-section { padding: 2.5rem 1.5rem; background: white; }
.cta-inner {
    max-width: 620px; margin: 0 auto;
    background: linear-gradient(135deg, #ede9fe, #faf5ff);
    border: 1.5px solid var(--primary-light);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; flex-wrap: wrap;
    box-shadow: 0 4px 24px rgba(124,58,237,.1);
}
.cta-icon { font-size: 1.3rem; }
.cta-inner p { font-size: 1rem; font-weight: 600; color: var(--text); }
.cta-btn {
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
    color: white;
    padding: .65rem 1.5rem; border-radius: 30px;
    font-weight: 700; font-size: .9rem;
    transition: filter .2s, transform .15s;
    box-shadow: 0 4px 14px rgba(124,58,237,.35);
}
.cta-btn:hover { filter: brightness(1.1); text-decoration: none; transform: translateY(-1px); }

/* ===== Footer ===== */
footer {
    background: var(--text); color: #a5b4fc;
    padding: 2rem 1.5rem; text-align: center;
}
.footer-container { max-width: 960px; margin: 0 auto; }
.footer-logo {
    display: flex; align-items: center; justify-content: center;
    gap: .5rem; font-size: 1rem; color: white; margin-bottom: .75rem;
}
.footer-logo strong { color: #c4b5fd; }
.footer-links { margin-bottom: .75rem; font-size: .85rem; }
.footer-links a { color: #a5b4fc; }
.footer-disclaimer { font-size: .75rem; opacity: .55; max-width: 600px; margin: 0 auto .5rem; line-height: 1.5; }
.footer-copy { font-size: .75rem; opacity: .35; }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== Pages: privacyverklaring / cookies ===== */
header {
    background: linear-gradient(135deg, #2e1065 0%, #4c1d95 45%, #7c3aed 100%);
    padding: 1rem 1.5rem;
}
header .container { max-width: 960px; margin: 0 auto; }
header h1 { font-size: 1.05rem; font-weight: 700; }

.page-content { max-width: 760px; margin: 3rem auto 4rem; padding: 0 1.5rem; }
.page-content h1 { font-size: 1.9rem; font-weight: 800; color: var(--text); margin-bottom: 1rem; }
.page-content h2 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 1.75rem 0 .5rem; }
.page-content p, .page-content li { font-size: .95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: .5rem; }
.page-content ul { padding-left: 1.5rem; }
.page-content a { color: var(--primary); }

/* ===== Article pages ===== */
.article-header {
    background: linear-gradient(135deg, #2e1065 0%, #4c1d95 45%, #7c3aed 100%);
    padding: 3rem 1.5rem 3.5rem; color: white;
}
.article-header-inner { max-width: 780px; margin: 0 auto; }
.article-breadcrumb { font-size: .8rem; font-weight: 600; opacity: .65; margin-bottom: 1rem; }
.article-breadcrumb a { color: rgba(255,255,255,.75); }
.article-breadcrumb a:hover { color: white; text-decoration: none; }
.article-header h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 800; line-height: 1.2; margin-bottom: .75rem; letter-spacing: -.02em; }
.article-header > .article-header-inner > p { font-size: 1rem; opacity: .8; line-height: 1.65; max-width: 620px; }

.article-body { max-width: 780px; margin: 3rem auto 5rem; padding: 0 1.5rem; }
.article-body h2 { font-size: 1.4rem; font-weight: 800; color: var(--text); margin: 2.5rem 0 .75rem; padding-bottom: .5rem; border-bottom: 2px solid var(--primary-light); letter-spacing: -.01em; }
.article-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 1.5rem 0 .4rem; }
.article-body p { font-size: .97rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.article-body li { font-size: .97rem; color: var(--text-muted); line-height: 1.8; margin-bottom: .25rem; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-body a { color: var(--primary); }

.info-box { background: var(--primary-pale); border-left: 4px solid var(--primary); border-radius: 0 10px 10px 0; padding: 1rem 1.3rem; margin: 1.5rem 0; }
.info-box p { font-size: .92rem; margin: 0; color: var(--text); line-height: 1.65; }

.example-box { background: #f0fdf4; border-left: 4px solid #059669; border-radius: 0 10px 10px 0; padding: 1rem 1.3rem; margin: 1.5rem 0; }
.example-box p { font-size: .92rem; margin: 0; color: #065f46; line-height: 1.65; }

.article-cta { background: linear-gradient(135deg, #ede9fe, #faf5ff); border: 1.5px solid var(--primary-light); border-radius: 16px; padding: 2rem; text-align: center; margin: 2.5rem 0; box-shadow: 0 4px 20px rgba(124,58,237,.08); }
.article-cta h3 { font-size: 1.25rem; font-weight: 800; color: var(--text); margin-bottom: .4rem; }
.article-cta p { color: var(--text-muted); margin-bottom: 1.2rem; font-size: .92rem; }
.article-cta a.cta-btn { display: inline-block; }

.related-articles { border-top: 1px solid var(--border); padding-top: 1.5rem; margin-top: 2.5rem; }
.related-articles h3 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: .75rem; }
.related-links { display: flex; flex-direction: column; gap: .5rem; }
.related-links a { display: flex; align-items: center; gap: .6rem; padding: .8rem 1rem; border: 1.5px solid var(--border); border-radius: 10px; font-size: .9rem; font-weight: 600; color: var(--text); transition: all .2s; }
.related-links a:hover { border-color: var(--primary); background: var(--primary-pale); text-decoration: none; color: var(--primary-dark); }
.related-links a::before { content: '→'; color: var(--primary); flex-shrink: 0; }

.article-table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: .92rem; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.article-table th { background: var(--primary-light); color: var(--primary-dark); padding: .75rem 1rem; text-align: left; font-weight: 700; }
.article-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.article-table tr:last-child td { border-bottom: none; }
.article-table tr:hover td { background: var(--primary-pale); }

/* ===== Articles index section (homepage) ===== */
.articles-section { padding: 4rem 1.5rem; background: var(--primary-pale); }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (max-width: 720px) { .articles-grid { grid-template-columns: 1fr; } }
.article-card { background: white; border-radius: var(--radius); padding: 1.5rem; box-shadow: 0 2px 12px rgba(91,33,182,.07); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.article-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(91,33,182,.13); }
.article-card-tag { font-size: .75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .6rem; }
.article-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: .5rem; line-height: 1.3; }
.article-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.article-card a.read-more { font-size: .85rem; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: .3rem; }
.article-card a.read-more:hover { text-decoration: none; gap: .5rem; }

/* ===== Trust strip ===== */
.trust-strip {
    background: #f0fdf4;
    border-top: 1px solid #d1fae5;
    border-bottom: 1px solid #d1fae5;
    padding: .85rem 1.5rem;
}
.trust-inner {
    max-width: 860px; margin: 0 auto;
    display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
}
.trust-item {
    display: flex; align-items: center; gap: .5rem;
    font-size: .88rem; font-weight: 600; color: #065f46;
}
.trust-item svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ===== Explainer section ===== */
.explainer-section { background: white; padding: 3rem 1.5rem 2rem; }
.explainer-inner { max-width: 860px; margin: 0 auto; }
.explainer-inner h2 { font-size: 1.5rem; font-weight: 800; color: var(--text); margin-bottom: 1rem; }
.explainer-inner p { font-size: .97rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.explainer-inner strong { color: var(--text); }

.explainer-details {
    margin-top: 1.25rem;
    border: 1.5px solid var(--primary-light);
    border-radius: 12px;
    overflow: hidden;
}
.explainer-details summary {
    padding: 1rem 1.25rem;
    font-size: .92rem; font-weight: 700; color: var(--primary-dark);
    cursor: pointer; list-style: none;
    background: var(--primary-pale);
    display: flex; align-items: center; gap: .5rem;
}
.explainer-details summary::before { content: '▶'; font-size: .7rem; transition: transform .2s; }
.explainer-details[open] summary::before { transform: rotate(90deg); }
.explainer-details summary::-webkit-details-marker { display: none; }
.explainer-details-body {
    padding: 1.1rem 1.25rem;
    background: white;
}
.explainer-details-body ol { padding-left: 1.4rem; margin-bottom: .75rem; }
.explainer-details-body li { font-size: .9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: .3rem; }
.explainer-details-body li strong { color: var(--text); }
.explainer-details-body p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ===== Salary examples grid ===== */
.examples-section { padding: 4rem 1.5rem; background: white; }
.examples-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
@media (max-width: 900px) { .examples-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .examples-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .examples-grid { grid-template-columns: 1fr; } }

.example-card {
    display: flex; flex-direction: column;
    background: var(--primary-pale);
    border: 1.5px solid var(--primary-light);
    border-radius: var(--radius);
    padding: 1.25rem 1rem;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    position: relative;
}
.example-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(124,58,237,.15); border-color: var(--primary); text-decoration: none; }
.example-card-featured { border-color: var(--primary); background: var(--primary-light); }
.example-badge {
    position: absolute; top: -1px; right: 1rem;
    background: var(--primary); color: white;
    font-size: .7rem; font-weight: 700; padding: .2rem .6rem;
    border-radius: 0 0 8px 8px;
}
.example-salary { font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: .5rem; }
.example-salary span { font-size: .8rem; font-weight: 500; color: var(--text-muted); }
.example-vak { font-size: .78rem; color: var(--text-muted); margin-bottom: .3rem; }
.example-vak strong { color: var(--text); }
.example-net { font-size: .85rem; color: var(--text-muted); margin-bottom: .75rem; }
.example-net-val { color: #059669; font-size: 1rem; }
.example-link { font-size: .78rem; font-weight: 700; color: var(--primary); margin-top: auto; }

/* ===== Situations grid ===== */
.situations-section { padding: 4rem 1.5rem; background: var(--primary-pale); }
.situations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
@media (max-width: 900px) { .situations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .situations-grid { grid-template-columns: 1fr; } }

.situation-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.3rem;
    text-decoration: none;
    display: flex; align-items: flex-start; gap: 1rem;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.situation-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(91,33,182,.1); border-color: var(--primary); text-decoration: none; }
.situation-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--primary-light); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.situation-icon svg { width: 22px; height: 22px; color: var(--primary); }
.situation-content { flex: 1; }
.situation-content h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: .25rem; }
.situation-content p { font-size: .82rem; color: var(--text-muted); line-height: 1.55; margin: 0; }
.situation-arrow { font-size: 1rem; color: var(--primary); font-weight: 700; flex-shrink: 0; align-self: center; }
