@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');

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

:root {
  --navy:         #0D1B2A;
  --navy-2:       #132236;
  --brand:         #DB4444;
  --brand-dark:    #B93434;
  --brand-light:   #FEF2F2;
  --brand-mid:     #FECACA;
  --amber:        #F59E0B;
  --amber-light:  #FFFBEB;
  --green:        #10B981;
  --red:          #EF4444;
  --slate-50:     #F8FAFC;
  --slate-100:    #F1F5F9;
  --slate-200:    #E2E8F0;
  --slate-300:    #CBD5E1;
  --slate-500:    #64748B;
  --slate-600:    #475569;
  --slate-700:    #334155;
  --slate-800:    #1E293B;
  --slate-900:    #0F172A;
  --white:        #FFFFFF;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    18px;
  --radius-xl:    24px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:    0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.12);
  --shadow-xl:    0 20px 56px rgba(0,0,0,.16);
  --t:            .22s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section--dark { background: var(--navy); }
.section--slate { background: var(--slate-50); }

/* ═══════════════════════════════════════
   TYPOGRAPHY HELPERS
═══════════════════════════════════════ */
.text-brand   { color: var(--brand); }
.text-amber  { color: var(--amber); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--slate-500); }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-weight: 600; font-size: .9375rem;
  border: none; cursor: pointer;
  transition: var(--t);
  font-family: inherit;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(219,68,68,.3);
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(219,68,68,.4); }

.btn-secondary {
  background: var(--white);
  color: var(--slate-800);
  border: 1.5px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-1px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); }

.btn-lg { padding: 15px 32px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 16px; font-size: .875rem; }
.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════ */
.section-header       { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section-header--left { text-align: left; margin-left: 0; }

.label {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand-light);
  color: var(--brand);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 16px;
}
.label--dark { background: rgba(219,68,68,.15); color: #FCA5A5; }
.label--amber { background: var(--amber-light); color: var(--amber); }

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.625rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 14px;
}
.section-title--white { color: var(--white); }

.section-sub {
  font-size: 1.0625rem;
  color: var(--slate-500);
  line-height: 1.7;
}
.section-sub--white { color: rgba(255,255,255,.6); }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.nav-wrapper {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--t);
}
.nav-wrapper.scrolled, .nav-wrapper.opaque {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.nav-inner {
  display: flex; align-items: center;
  height: 68px; gap: 8px;
}
.logo { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.logo-img { height: 20px; width: auto; transition: var(--t); }
.nav-wrapper:not(.scrolled):not(.opaque) .logo-img { filter: brightness(0) invert(1); }
.footer .logo-img { filter: brightness(0) invert(1); opacity: .9; }

.nav-links { display: flex; gap: 4px; }
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .9375rem; font-weight: 500;
  transition: var(--t);
}
.nav-wrapper.scrolled .nav-links a,
.nav-wrapper.opaque .nav-links a { color: var(--slate-600); }
.nav-wrapper.scrolled .nav-links a:hover,
.nav-wrapper.opaque .nav-links a:hover { color: var(--brand); background: var(--brand-light); }
.nav-wrapper:not(.scrolled):not(.opaque) .nav-links a { color: rgba(255,255,255,.8); }
.nav-wrapper:not(.scrolled):not(.opaque) .nav-links a:hover { color: white; background: rgba(255,255,255,.1); }

.nav-links a.active { color: var(--brand) !important; font-weight: 700; }

/* dropdown onder Oplossing */
.nav-drop { position: relative; }
.nav-drop > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-drop-caret { transition: transform .2s; opacity: .6; }
.nav-drop:hover .nav-drop-caret,
.nav-drop:focus-within .nav-drop-caret { transform: rotate(180deg); }
.nav-drop-panel {
  position: absolute; top: 100%; left: 0;
  padding-top: 10px; display: none; z-index: 1001;
}
.nav-drop:hover .nav-drop-panel,
.nav-drop:focus-within .nav-drop-panel { display: block; }
.nav-drop-inner {
  background: white; border: 1px solid var(--slate-200);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 8px; min-width: 240px;
}
.nav-wrapper .nav-drop-inner a {
  display: block; padding: 9px 12px;
  font-size: .875rem; font-weight: 500;
  color: var(--slate-600) !important;
  border-radius: var(--radius-sm);
}
.nav-wrapper .nav-drop-inner a:hover { background: var(--brand-light); color: var(--brand) !important; }
.nav-drop-divider { border-top: 1px solid var(--slate-200); margin: 6px 4px; }

/* submenu in mobiel menu */
.mobile-menu .mm-sub a { padding-left: 28px; font-size: .875rem; color: var(--slate-500); }

.nav-cta { margin-left: 8px; }

/* Dropdown (modules onder Oplossing) */
.nav-item-dd { position: relative; }
.nav-caret { display: inline-block; margin-left: 4px; font-size: .65em; vertical-align: middle; opacity: .75; }
.nav-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 248px; background: white;
  border: 1px solid var(--slate-200); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s var(--t), transform .18s var(--t), visibility .18s;
}
.nav-item-dd:hover .nav-dropdown,
.nav-item-dd:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: block; padding: 9px 12px; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 500; color: var(--slate-700) !important;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--brand-light); color: var(--brand) !important; }

/* Mobiele submodules onder Oplossing */
.mobile-submenu { display: flex; flex-direction: column; margin: 2px 0 6px; }
.mobile-submenu a { padding: 8px 12px 8px 26px !important; font-size: .875rem !important; color: var(--slate-500) !important; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: 8px;
}
.nav-burger span { display: block; width: 22px; height: 2px; border-radius: 2px; transition: var(--t); }
.nav-wrapper.scrolled .nav-burger span,
.nav-wrapper.opaque .nav-burger span { background: var(--slate-700); }
.nav-wrapper:not(.scrolled):not(.opaque) .nav-burger span { background: white; }

.mobile-menu {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0;
  background: white; padding: 16px 24px 24px;
  border-bottom: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a { display: block; padding: 10px 12px; color: var(--slate-700); font-weight: 500; border-radius: var(--radius-sm); }
.mobile-menu a:hover { background: var(--brand-light); color: var(--brand); }
.mobile-menu .btn { margin-top: 8px; }

/* ═══════════════════════════════════════
   PAGE HERO (shared)
═══════════════════════════════════════ */
/* Ambient hero-glow: twee zachte lichtvlakken die heel traag ademen (CSS-only) */
.hero-aurora { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-aurora::before, .hero-aurora::after {
  content: ''; position: absolute; border-radius: 50%; will-change: transform;
}
.hero-aurora::before {
  width: 62vw; height: 62vw; max-width: 880px; max-height: 880px;
  right: -12vw; top: -20vw;
  background: radial-gradient(circle, rgba(219,68,68,.17), transparent 68%);
  animation: heroGlowA 32s ease-in-out infinite alternate;
}
.hero-aurora::after {
  width: 48vw; height: 48vw; max-width: 680px; max-height: 680px;
  left: -10vw; bottom: -18vw;
  background: radial-gradient(circle, rgba(219,68,68,.09), transparent 68%);
  animation: heroGlowB 40s ease-in-out infinite alternate;
}
@keyframes heroGlowA { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-3%,3%,0) scale(1.06); } }
@keyframes heroGlowB { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(4%,-3%,0) scale(1.09); } }
@media (prefers-reduced-motion: reduce) {
  .hero-aurora::before, .hero-aurora::after { animation: none; }
}
.page-hero {
  background: var(--navy);
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 700px 500px at -10% 50%, rgba(219,68,68,.25) 0%, transparent 60%),
    radial-gradient(ellipse 500px 400px at 110% 60%, rgba(219,68,68,.15) 0%, transparent 60%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 40%, transparent 80%);
}
.page-hero-inner { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900; color: white;
  letter-spacing: -.04em; line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 1.125rem; color: rgba(255,255,255,.6);
  max-width: 620px; line-height: 1.7; margin: 0 auto;
}

/* ═══════════════════════════════════════
   STEPS (how it works)
═══════════════════════════════════════ */
.steps-row {
  display: flex; align-items: flex-start; gap: 0;
}
.step-card {
  flex: 1; padding: 32px 28px;
  background: white; border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.step-num {
  font-size: 2.5rem; font-weight: 900; color: var(--brand);
  opacity: .25; letter-spacing: -.06em; line-height: 1; margin-bottom: 16px;
}
.step-card h3 { font-size: 1.125rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -.02em; }
.step-card p  { font-size: .9rem; color: var(--slate-500); line-height: 1.65; }
.step-arrow {
  font-size: 1.5rem; color: var(--slate-300); flex-shrink: 0;
  align-self: center; padding: 0 16px; margin-top: -8px;
}
@media (max-width: 768px) {
  .steps-row { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); align-self: center; }
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--slate-200); }
.faq-item:first-child { border-top: 1px solid var(--slate-200); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 1rem; font-weight: 700; color: var(--slate-800);
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: inherit; gap: 16px; transition: color .2s;
}
.faq-q:hover { color: var(--brand); }
.faq-icon {
  font-size: 1.25rem; font-weight: 400; color: var(--slate-400);
  flex-shrink: 0; transition: transform .25s; line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--brand); }
.faq-a {
  display: none; padding: 0 0 20px;
}
.faq-a.open { display: block; }
.faq-a p { font-size: .9375rem; color: var(--slate-500); line-height: 1.75; }

/* ═══════════════════════════════════════
   DIVIDER
═══════════════════════════════════════ */
.divider { border: none; border-top: 1px solid var(--slate-200); margin: 0; }

/* ═══════════════════════════════════════
   CTA BANNER (gedeeld)
═══════════════════════════════════════ */
.cta-section { background: var(--brand); padding: 80px 0; position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 400px at 100% 50%, rgba(255,255,255,.08), transparent);
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: white; letter-spacing: -.04em; margin-bottom: 14px; }
.cta-inner p { color: rgba(255,255,255,.75); font-size: 1.0625rem; max-width: 500px; margin: 0 auto 36px; }
.cta-inner .btn-outline-white { font-size: 1.0625rem; padding: 15px 36px; border-radius: var(--radius-lg); border-color: rgba(255,255,255,.5); }
.cta-inner .btn-outline-white:hover { background: rgba(255,255,255,.12); }

/* ═══════════════════════════════════════
   CARDS (generic)
═══════════════════════════════════════ */
.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }

/* ═══════════════════════════════════════
   ICON BOX
═══════════════════════════════════════ */
.icon-box {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.icon-box--brand   { background: var(--brand-light); color: var(--brand); }
.icon-box--amber  { background: var(--amber-light); color: var(--amber); }
.icon-box--green  { background: #ECFDF5; color: var(--green); }
.icon-box--slate  { background: var(--slate-100); color: var(--slate-600); }

/* ═══════════════════════════════════════
   BADGE / TAG
═══════════════════════════════════════ */
.badge {
  display: inline-block;
  padding: 3px 10px; border-radius: 100px;
  font-size: .75rem; font-weight: 700;
}
.badge--green  { background: #ECFDF5; color: #065F46; }
.badge--brand   { background: var(--brand-light); color: var(--brand-dark); }
.badge--amber  { background: var(--amber-light); color: #92400E; }
.badge--new    { background: var(--amber); color: white; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--slate-900);
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand p {
  color: rgba(255,255,255,.45); font-size: .9375rem;
  line-height: 1.65; margin: 18px 0 20px; max-width: 240px;
}
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { color: rgba(255,255,255,.55); font-size: .875rem; transition: var(--t); }
.footer-contact a:hover { color: white; }
.footer-col h4 {
  color: rgba(255,255,255,.85); font-size: .8125rem;
  font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.45); font-size: .9375rem; transition: var(--t); }
.footer-col a:hover { color: rgba(255,255,255,.85); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
  font-size: .875rem; color: rgba(255,255,255,.3);
}

/* ═══════════════════════════════════════
   NAV ACTIVE STATES (per page)
═══════════════════════════════════════ */
.page-home            .nav-home,
.page-oplossing       .nav-oplossing,
.page-voorwie         .nav-voorwie,
.page-succesverhalen  .nav-succesverhalen,
.page-blog            .nav-inzichten,
.page-over            .nav-over,
.page-contact         .nav-contact { color: var(--brand) !important; font-weight: 700; }

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s var(--t), transform .6s var(--t);
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   INZICHTEN — index (blog listing)
═══════════════════════════════════════ */
.blog-hero { background: var(--navy); padding: 132px 0 76px; text-align: center; }
.blog-hero .label--dark { display: inline-block; margin-bottom: 20px; }
.blog-hero h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 900; color: #fff; letter-spacing: -.05em; line-height: 1.1; margin-bottom: 18px; }
.blog-hero p { font-size: 1.125rem; color: rgba(255,255,255,.62); max-width: 560px; margin: 0 auto; line-height: 1.7; }

.blog-grid-section { padding: 64px 0 96px; background: var(--slate-50); }
.blog-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 44px; }
.blog-tag-btn {
  padding: 8px 18px; border-radius: 100px; font-size: .875rem; font-weight: 600;
  border: 1.5px solid var(--slate-200); background: #fff; color: var(--slate-600);
  cursor: pointer; transition: var(--t);
}
.blog-tag-btn.active, .blog-tag-btn:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: #fff; border-radius: 16px; border: 1px solid var(--slate-200);
  overflow: hidden; display: flex; flex-direction: column; text-decoration: none;
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-3px); }
.blog-card-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--navy); }
.blog-card-thumb svg { width: 100%; height: 100%; display: block; }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-cat { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--brand); background: var(--brand-light); padding: 3px 10px; border-radius: 100px; }
.blog-date { font-size: .8125rem; color: var(--slate-500); }
.blog-card h2 { font-size: 1.125rem; font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1.35; margin-bottom: 10px; }
.blog-card p { font-size: .9rem; color: var(--slate-600); line-height: 1.65; flex: 1; margin-bottom: 18px; }
.blog-read { font-size: .875rem; font-weight: 700; color: var(--brand); }
.blog-card:hover .blog-read { text-decoration: underline; }

.blog-card--featured { grid-column: span 2; }
@media (max-width: 900px) { .blog-card--featured { grid-column: span 1; } }
.blog-card--featured .blog-card-thumb { aspect-ratio: 16/9; }
.blog-card--featured h2 { font-size: 1.4rem; }
.blog-card.is-hidden { display: none; }

.blog-empty { grid-column: 1 / -1; text-align: center; padding: 56px 24px; color: var(--slate-500); }

/* ═══════════════════════════════════════
   INZICHTEN — article
═══════════════════════════════════════ */
.article-hero { background: var(--navy); padding: 128px 0 0; }
.article-hero-inner { max-width: 760px; }
.article-breadcrumb { font-size: .8125rem; color: rgba(255,255,255,.45); margin-bottom: 22px; }
.article-breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.article-breadcrumb a:hover { color: #fff; }
.article-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.article-cat { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #FCA5A5; background: rgba(219,68,68,.2); padding: 4px 12px; border-radius: 100px; }
.article-date, .article-read-time { font-size: .875rem; color: rgba(255,255,255,.45); }
.article-hero h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 900; color: #fff; letter-spacing: -.04em; line-height: 1.15; margin-bottom: 20px; }
.article-hero .lead { font-size: 1.125rem; color: rgba(255,255,255,.65); line-height: 1.75; max-width: 640px; }
.article-author { display: flex; align-items: center; gap: 12px; margin: 32px 0 0; padding: 32px 0; border-top: 1px solid rgba(255,255,255,.1); }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--brand),var(--brand-dark)); display: grid; place-items: center; font-weight: 800; color: #fff; font-size: .875rem; flex-shrink: 0; }
.author-name { font-size: .9375rem; font-weight: 700; color: #fff; }
.author-role { font-size: .8125rem; color: rgba(255,255,255,.45); }
.article-hero-figure { max-width: 900px; margin: 0 auto; transform: translateY(48px); aspect-ratio: 2 / 1; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.article-hero-figure svg { width: 100%; height: 100%; display: block; }
.article-hero-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }

.article-body { max-width: 760px; margin: 0 auto; padding: 96px 24px 88px; }
.article-body h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); letter-spacing: -.03em; margin: 48px 0 16px; }
.article-body h3 { font-size: 1.125rem; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.article-body p { font-size: 1rem; color: var(--slate-600); line-height: 1.8; margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; }
.article-body li { font-size: 1rem; color: var(--slate-600); line-height: 1.75; margin-bottom: 8px; }
.article-body strong { color: var(--slate-800); }
.article-body a { color: var(--brand); font-weight: 600; }
/* CTA-knop: enkel de primaire knop in het CTA-blok krijgt witte tekst (anders erft hij de brand-kleur van .article-body a) */
.article-cta a.btn-primary, .article-cta a.btn-primary:hover { color: var(--white); }
.article-body > p:first-of-type { font-size: 1.075rem; }

.article-callout { background: var(--brand-light); border-left: 4px solid var(--brand); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 20px 24px; margin: 32px 0; }
.article-callout p { margin: 0; color: var(--slate-700); }
.article-callout strong { color: var(--navy); }

.article-cta { background: var(--navy); border-radius: var(--radius-xl); padding: 44px 48px; text-align: center; margin-top: 56px; }
.article-cta h3 { font-size: 1.375rem; font-weight: 800; color: #fff; letter-spacing: -.03em; margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,.6); margin-bottom: 24px; }

.related-posts { background: var(--slate-50); padding: 64px 0; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 768px) { .related-grid { grid-template-columns: 1fr; } .article-cta { padding: 28px; } .article-hero-figure { transform: translateY(36px); } }

.related-card { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-lg); padding: 24px; transition: var(--t); text-decoration: none; display: block; }
.related-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.related-card .blog-cat { display: inline-block; margin-bottom: 10px; }
.related-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin: 0 0 8px; }
.related-card p { font-size: .875rem; color: var(--slate-500); line-height: 1.6; margin-bottom: 14px; }
.related-card span.related-link { font-size: .875rem; font-weight: 700; color: var(--brand); }

/* Inline product-screenshot in artikel */
.article-figure { margin: 36px 0; }
.article-figure img { width: 100%; height: auto; border-radius: var(--radius-lg); border: 1px solid var(--slate-200); box-shadow: var(--shadow-md); display: block; }
.article-figure figcaption { font-size: .8125rem; color: var(--slate-500); text-align: center; margin-top: 12px; line-height: 1.5; }
.article-figure--placeholder {
  border: 1.5px dashed var(--slate-300); border-radius: var(--radius-lg);
  background: var(--slate-50); padding: 40px 24px; text-align: center;
}
.article-figure--placeholder .ph-icon { width: 40px; height: 40px; margin: 0 auto 12px; color: var(--slate-300); }
.article-figure--placeholder p { font-size: .875rem; color: var(--slate-500); margin: 0; line-height: 1.6; }
.article-figure--placeholder strong { color: var(--slate-600); }

/* Phone screenshot: smaller, centered, phone-like frame */
.article-figure--phone img { max-width: 300px; margin: 0 auto; border-radius: 22px; }

/* Text beside image (design variety) */
.article-split { display: grid; grid-template-columns: 1fr; gap: 24px; margin: 52px 0; align-items: center; }
.article-split-media img { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); border: 1px solid var(--slate-200); box-shadow: var(--shadow-md); }
.article-split-media.is-phone img { max-width: 280px; margin: 0 auto; border-radius: 22px; }
.article-split-text h3 { margin-top: 0; }
.article-split-text > *:last-child { margin-bottom: 0; }
.article-split figcaption { font-size: .8125rem; color: var(--slate-500); margin-top: 12px; line-height: 1.5; }
@media (min-width: 720px) {
  .article-split { grid-template-columns: 1.15fr .85fr; gap: 44px; }
  .article-split--reverse .article-split-media { order: -1; }
}
