/* webdesignalmelo.com
   Aesthetic: Warme studio-editorial. Diep middernachtblauw + warme ivoor + koraal/terracotta accent.
   Fraunces (display serif) + Manrope (body sans). Zachte verhoogde kaarten, grote radii, gloed-gradient.
   Bewust anders dan de zustersite: serif-koppen, ronde vormen, warme palet, geen harde offset-schaduwen.
   Geen em-dash tekens. */

:root {
  --ivory: #FBF6EE;
  --ivory-deep: #F2E9DB;
  --sand: #ECE0CD;
  --navy: #16243B;
  --navy-deep: #0E1828;
  --navy-soft: #2A3B57;
  --ink: #1B2536;
  --ink-soft: #545E6E;
  --ink-faint: #8A8F99;
  --line: #E3D8C6;
  --line-soft: #EFE6D8;
  --coral: #E5644E;
  --coral-deep: #C84A36;
  --coral-soft: #FBE3DC;
  --gold: #D9A441;
  --teal: #2E8B7F;
  --surface: #FFFFFF;
  --radius-xs: 8px;
  --radius: 16px;
  --radius-lg: 26px;
  --radius-xl: 38px;
  --shadow-sm: 0 2px 10px rgba(22,36,59,0.05);
  --shadow: 0 18px 44px -18px rgba(22,36,59,0.22);
  --shadow-lg: 0 40px 90px -30px rgba(14,24,40,0.45);
  --maxw: 1160px;
  --maxw-narrow: 740px;
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--coral-deep); text-decoration: none; }
a:hover { color: var(--coral); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0;
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.5rem, 6.2vw, 4.5rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0; }
p { margin: 0 0 1.1rem; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: var(--maxw-narrow); }
.accent { color: var(--coral-deep); font-style: italic; }
.underline-deco { position: relative; white-space: nowrap; }
.underline-deco::after { content: ""; position: absolute; left: -2%; right: -2%; bottom: 0.04em; height: 0.32em; background: var(--coral-soft); z-index: -1; border-radius: 4px; }
.lead { font-size: 1.22rem; line-height: 1.6; color: var(--ink-soft); }

/* === Topbar === */
.topbar { background: var(--navy-deep); color: #C3CBD8; font-size: 0.82rem; }
.topbar-inner { max-width: var(--maxw); margin: 0 auto; padding: 0.55rem 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar-meta { display: flex; gap: 1.4rem; align-items: center; }
.topbar-meta a { color: #E7ECF2; }
.topbar-meta a:hover { color: var(--gold); }
.topbar-dot { color: var(--coral); }

/* === Nav === */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(251,246,238,0.85); backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 0.95rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 0.65rem; font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; letter-spacing: -0.02em; color: var(--navy); }
.brand:hover { color: var(--navy); }
.brand em { font-style: italic; color: var(--coral-deep); }
.brand-mark { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--coral); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; box-shadow: inset 0 0 0 3px rgba(255,255,255,0.18); }
.nav-menu { list-style: none; display: flex; align-items: center; gap: 1.9rem; margin: 0; padding: 0; }
.nav-menu a { color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; }
.nav-menu a:hover, .nav-menu a.active { color: var(--navy); }
.nav-cta { background: var(--navy); color: #fff !important; padding: 0.62rem 1.25rem; border-radius: 999px; font-weight: 700 !important; }
.nav-cta:hover { background: var(--coral); color: #fff !important; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; cursor: pointer; color: var(--navy); line-height: 1; }

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.9rem 1.7rem; border-radius: 999px; font-weight: 700; font-size: 0.98rem; font-family: var(--font-body); cursor: pointer; border: 1.5px solid transparent; transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 14px 28px -12px rgba(229,100,78,0.7); }
.btn-primary:hover { background: var(--coral-deep); color: #fff; transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-light { background: var(--surface); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-light:hover { background: var(--coral); color: #fff; }
.btn-ghost { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 700; font-size: 0.93rem; color: var(--coral-deep); }
.btn-ghost::after { content: "\2192"; transition: transform 0.18s ease; }
.btn-ghost:hover::after { transform: translateX(4px); }

/* === Hero === */
.hero { position: relative; padding: clamp(3rem,7vw,5.5rem) 0 clamp(3rem,6vw,4.5rem); overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -22%; right: -14%; width: 56vw; height: 56vw; max-width: 720px; max-height: 720px; background: radial-gradient(circle at center, rgba(229,100,78,0.18), rgba(229,100,78,0) 64%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 3.5rem; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em; color: var(--navy); background: var(--surface); padding: 0.45rem 0.95rem; border-radius: 999px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(46,139,127,0.18); }
.hero h1 { margin-top: 1.4rem; }
.hero-cta-group { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-trust { margin-top: 2.4rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.9rem; color: var(--ink-soft); }
.hero-trust strong { color: var(--navy); }
.hero-stars { color: var(--gold); letter-spacing: 0.1em; font-size: 1rem; }

/* Hero visual: stacked browser mockup */
.mockup { position: relative; }
.mockup-window { background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--line-soft); }
.mockup-bar { display: flex; align-items: center; gap: 0.4rem; padding: 0.75rem 1.1rem; background: var(--ivory-deep); border-bottom: 1px solid var(--line); }
.mockup-bar span { width: 11px; height: 11px; border-radius: 50%; background: var(--line-strong, #d4c7b2); }
.mockup-bar span:nth-child(1) { background: var(--coral); }
.mockup-bar span:nth-child(2) { background: var(--gold); }
.mockup-bar span:nth-child(3) { background: var(--teal); }
.mockup-bar .mockup-url { margin-left: auto; font-size: 0.72rem; color: var(--ink-faint); font-weight: 600; }
.mockup-body { padding: 1.6rem; }
.mockup-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral-deep); }
.mockup-title { font-family: var(--font-display); font-weight: 500; font-size: 2rem; line-height: 1.05; margin: 0.5rem 0 0.9rem; color: var(--navy); }
.mockup-lines { display: grid; gap: 0.55rem; margin-bottom: 1.2rem; }
.mockup-line { height: 11px; border-radius: 6px; background: var(--ivory-deep); }
.mockup-line.short { width: 55%; }
.mockup-line.mid { width: 78%; }
.mockup-row { display: flex; gap: 0.7rem; align-items: center; }
.mockup-btn { background: var(--coral); height: 34px; border-radius: 999px; width: 130px; }
.mockup-chip { height: 34px; width: 90px; border-radius: 999px; border: 1.5px solid var(--navy); }
.mockup-badge { position: absolute; background: var(--navy); color: #fff; border-radius: var(--radius); padding: 0.9rem 1.1rem; box-shadow: var(--shadow); }
.mockup-badge.tl { top: -1.4rem; left: -1.4rem; }
.mockup-badge.br { bottom: -1.4rem; right: -1.4rem; background: var(--surface); color: var(--navy); }
.mockup-badge-num { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; line-height: 1; }
.mockup-badge-label { font-size: 0.72rem; opacity: 0.8; margin-top: 0.2rem; }
.mockup-badge.br .mockup-badge-label { opacity: 0.6; }

/* === Marquee / logos band === */
.band { background: var(--navy); color: #C3CBD8; padding: 1.6rem 0; }
.band-inner { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1rem 2.4rem; font-size: 0.92rem; }
.band-inner span { display: inline-flex; align-items: center; gap: 0.5rem; }
.band-inner span::before { content: "\2737"; color: var(--coral); }

/* === Section === */
.section { padding: clamp(3.5rem,7vw,6rem) 0; }
.section.tight { padding: clamp(2.5rem,5vw,4rem) 0; }
.section-soft { background: var(--ivory-deep); }
.section-navy { background: var(--navy); color: #DDE3EC; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-header { max-width: 700px; margin-bottom: 3rem; }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral-deep); margin-bottom: 0.9rem; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--coral); border-radius: 2px; }
.section-navy .eyebrow { color: var(--gold); }
.section-navy .eyebrow::before { background: var(--gold); }
.section-navy .lead { color: #B7C0CE; }

/* === Services cards === */
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.service-card { position: relative; background: var(--surface); border-radius: var(--radius-lg); padding: 2rem 1.9rem; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); transition: transform 0.2s ease, box-shadow 0.2s ease; overflow: hidden; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card-icon { width: 52px; height: 52px; border-radius: 16px; background: var(--coral-soft); color: var(--coral-deep); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; margin-bottom: 1.2rem; }
.service-card h3 { margin-bottom: 0.55rem; }
.service-card p { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 1.15rem; }
.service-card.wide { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem; align-items: center; }
.service-card.wide .service-card-icon { margin-bottom: 0; }
.service-card.wide p { margin-bottom: 0; }

/* === Feature / why grid === */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.feature { background: var(--surface); border-radius: var(--radius); padding: 1.8rem; border: 1px solid var(--line-soft); }
.section-navy .feature { background: var(--navy-soft); border-color: rgba(255,255,255,0.08); }
.feature-num { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--coral); display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--coral-soft); margin-bottom: 1rem; }
.section-navy .feature-num { background: rgba(229,100,78,0.18); }
.feature h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.feature p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }
.section-navy .feature p { color: #B7C0CE; }

/* === Split editorial === */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split-narrow { grid-template-columns: 1.05fr 0.95fr; }
.quote-card { background: var(--navy); color: #fff; border-radius: var(--radius-xl); padding: 2.6rem; position: relative; box-shadow: var(--shadow); }
.quote-card::before { content: "\201C"; font-family: var(--font-display); font-size: 5rem; line-height: 0.5; color: var(--coral); display: block; margin-bottom: 0.5rem; }
.quote-card p { font-family: var(--font-display); font-weight: 500; font-size: 1.55rem; line-height: 1.32; color: #fff; }
.quote-author { display: flex; align-items: center; gap: 0.85rem; margin-top: 1.6rem; }
.quote-author-dot { width: 44px; height: 44px; border-radius: 50%; background: var(--coral); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); color: #fff; font-weight: 600; }
.quote-author strong { display: block; color: #fff; }
.quote-author span { font-size: 0.85rem; color: #9DA8B8; }

/* === Process timeline === */
.timeline { display: grid; gap: 0; max-width: 820px; margin: 0 auto; }
.timeline-step { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; padding-bottom: 2.4rem; position: relative; }
.timeline-step:not(:last-child)::before { content: ""; position: absolute; left: 23px; top: 50px; bottom: 0; width: 2px; background: var(--line); }
.section-navy .timeline-step:not(:last-child)::before { background: rgba(255,255,255,0.14); }
.timeline-marker { width: 48px; height: 48px; border-radius: 50%; background: var(--coral); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; flex: 0 0 auto; z-index: 1; }
.timeline-body h3 { margin-bottom: 0.35rem; }
.timeline-body p { color: var(--ink-soft); margin: 0; }
.section-navy .timeline-body p { color: #B7C0CE; }

/* === Stats band === */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 1.5rem 0.75rem; }
.stat-num { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.2rem,4vw,3rem); color: #fff; line-height: 1; }
.stat-num em { font-style: normal; color: var(--coral); }
.stat-label { font-size: 0.88rem; color: #9DA8B8; margin-top: 0.5rem; }

/* === Pricing === */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: stretch; }
.price-card { background: var(--surface); border-radius: var(--radius-lg); padding: 2.1rem 1.9rem; display: flex; flex-direction: column; border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card.featured { background: var(--navy); color: #fff; box-shadow: var(--shadow); position: relative; }
.price-card.featured::after { content: "Meest gekozen"; position: absolute; top: -0.85rem; left: 50%; transform: translateX(-50%); background: var(--coral); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 0.35rem 0.95rem; border-radius: 999px; white-space: nowrap; }
.price-tier { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral-deep); }
.price-card.featured .price-tier { color: var(--gold); }
.price-card h3 { margin: 0.55rem 0; }
.price-card.featured h3 { color: #fff; }
.price-desc { font-size: 0.92rem; color: var(--ink-soft); min-height: 2.7rem; }
.price-card.featured .price-desc { color: #B7C0CE; }
.price-amount { font-family: var(--font-display); font-weight: 500; font-size: 2.2rem; margin: 0.6rem 0 1.3rem; color: var(--navy); }
.price-card.featured .price-amount { color: #fff; }
.price-amount .unit { font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; color: var(--ink-faint); }
.price-card.featured .price-amount .unit { color: #9DA8B8; }
.price-features { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: 0.65rem; flex: 1; }
.price-features li { font-size: 0.93rem; padding-left: 1.7rem; position: relative; color: var(--ink); }
.price-card.featured .price-features li { color: #DDE3EC; }
.price-features li::before { content: ""; position: absolute; left: 0; top: 0.15rem; width: 18px; height: 18px; border-radius: 50%; background: var(--coral-soft); }
.price-features li::after { content: ""; position: absolute; left: 6px; top: 0.42rem; width: 6px; height: 9px; border-right: 2px solid var(--coral-deep); border-bottom: 2px solid var(--coral-deep); transform: rotate(40deg); }
.price-card.featured .price-features li::before { background: rgba(217,164,65,0.22); }
.price-card.featured .price-features li::after { border-color: var(--gold); }
.price-note { text-align: center; color: var(--ink-soft); font-size: 0.9rem; margin-top: 1.5rem; }

/* === FAQ === */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 0.85rem; }
.faq-item { background: var(--surface); border-radius: var(--radius); border: 1px solid var(--line-soft); overflow: hidden; box-shadow: var(--shadow-sm); }
.section-navy .faq-item { background: var(--navy-soft); border-color: rgba(255,255,255,0.08); }
.faq-question { width: 100%; text-align: left; background: none; border: 0; padding: 1.2rem 1.5rem; font-family: var(--font-body); font-weight: 700; font-size: 1.03rem; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.section-navy .faq-question { color: #fff; }
.faq-question::after { content: "+"; font-size: 1.5rem; color: var(--coral); transition: transform 0.22s ease; flex: 0 0 auto; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 640px; }
.faq-answer p { padding: 0 1.5rem 1.3rem; margin: 0; color: var(--ink-soft); }
.section-navy .faq-answer p { color: #B7C0CE; }

/* === Blog cards === */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; }
.blog-card { background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-card-cover { height: 158px; background: linear-gradient(135deg, var(--coral), var(--coral-deep)); display: flex; align-items: center; justify-content: center; }
.blog-card-cover.navy { background: linear-gradient(135deg, var(--navy-soft), var(--navy-deep)); }
.blog-card-cover.gold { background: linear-gradient(135deg, var(--gold), #B9842B); }
.blog-card-cover.teal { background: linear-gradient(135deg, var(--teal), #1F6960); }
.blog-card-cover.sand { background: linear-gradient(135deg, var(--ivory-deep), var(--sand)); }
.blog-card-cover::after { content: attr(data-letter); font-family: var(--font-display); font-weight: 500; font-size: 2.6rem; color: rgba(255,255,255,0.92); }
.blog-card-cover.sand::after { color: var(--coral-deep); }
.blog-card-content { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral-deep); margin-bottom: 0.6rem; }
.blog-card h3 { font-size: 1.18rem; margin-bottom: 0.7rem; line-height: 1.2; }
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--coral-deep); }
.blog-card-meta { font-size: 0.82rem; color: var(--ink-faint); margin-top: auto; }

/* === CTA === */
.cta-section { position: relative; background: var(--navy); color: #fff; text-align: center; padding: clamp(3.5rem,8vw,6rem) 0; overflow: hidden; }
.cta-section::before { content: ""; position: absolute; bottom: -30%; left: -10%; width: 50vw; height: 50vw; max-width: 600px; max-height: 600px; background: radial-gradient(circle, rgba(229,100,78,0.28), rgba(229,100,78,0) 65%); pointer-events: none; }
.cta-section h2 { color: #fff; max-width: 700px; margin: 0 auto 1rem; position: relative; }
.cta-section p { color: #B7C0CE; max-width: 560px; margin: 0 auto 2rem; position: relative; }
.cta-section .btn { position: relative; }

/* === Footer === */
.footer { background: var(--navy-deep); color: #99A4B4; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand .brand { color: #fff; margin-bottom: 1.1rem; }
.footer-brand .brand em { color: var(--coral); }
.footer-brand p { font-size: 0.92rem; max-width: 320px; line-height: 1.65; }
.footer-contact { font-size: 0.92rem; margin-top: 1.1rem; line-height: 1.8; }
.footer-contact a { color: #DDE3EC; }
.footer-contact a:hover { color: var(--coral); }
.footer-col h4 { color: #fff; margin-bottom: 1.1rem; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a { color: #99A4B4; font-size: 0.92rem; }
.footer-col a:hover { color: var(--coral); }
.footer-col li { font-size: 0.92rem; }
.footer-bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; font-size: 0.82rem; }
.footer-bottom a { color: #99A4B4; }
.footer-bottom a:hover { color: var(--coral); }

/* === Breadcrumbs === */
.breadcrumbs { border-bottom: 1px solid var(--line); background: var(--ivory); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0; padding: 0.9rem 0; font-size: 0.85rem; }
.breadcrumbs li { color: var(--ink-soft); }
.breadcrumbs li + li::before { content: "\203A"; margin-right: 0.5rem; color: var(--ink-faint); }
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs a:hover { color: var(--coral-deep); }

/* === Page header === */
.page-header { padding: clamp(2.6rem,6vw,4.2rem) 0 clamp(2rem,4vw,3rem); position: relative; overflow: hidden; }
.page-header::before { content: ""; position: absolute; top: -40%; right: -8%; width: 40vw; height: 40vw; max-width: 480px; max-height: 480px; background: radial-gradient(circle, rgba(229,100,78,0.14), rgba(229,100,78,0) 64%); pointer-events: none; }
.page-header h1 { max-width: 880px; }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3rem; align-items: start; }
.contact-info { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 2rem; }
.contact-info-item { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.contact-info-item:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-info-item:first-child { padding-top: 0; }
.contact-info-label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem; }
.contact-info-value { font-size: 1.1rem; font-weight: 600; color: #fff; }
.contact-info-value a { color: #fff; }
.contact-info-value a:hover { color: var(--coral); }
.contact-info-value.sm { font-size: 0.98rem; font-weight: 500; line-height: 1.6; }

.form { display: grid; gap: 1.15rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.form label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--navy); }
.form input, .form select, .form textarea { width: 100%; padding: 0.82rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-xs); font-family: var(--font-body); font-size: 0.97rem; background: var(--surface); color: var(--ink); transition: border-color 0.18s ease, box-shadow 0.18s ease; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px var(--coral-soft); }
.form textarea { resize: vertical; }

/* === Article === */
.article-header { padding: clamp(2.6rem,6vw,4rem) 0 1.5rem; }
.article-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: var(--coral); padding: 0.25rem 0.7rem; border-radius: 999px; margin-bottom: 1rem; }
.article-header h1 { max-width: 760px; }
.article-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.4rem; font-size: 0.88rem; color: var(--ink-soft); }
.article-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--coral); }
.article-body { max-width: var(--maxw-narrow); margin: 0 auto; padding: 2rem 1.5rem 1rem; font-size: 1.1rem; }
.article-body h2 { margin: 2.6rem 0 1rem; }
.article-body h3 { margin: 1.9rem 0 0.6rem; }
.article-body ul { padding-left: 1.3rem; margin: 0 0 1.3rem; }
.article-body li { margin-bottom: 0.55rem; }
.article-body blockquote { margin: 2rem 0; padding: 1.4rem 1.7rem; border-left: 4px solid var(--coral); background: var(--surface); border-radius: 0 var(--radius) var(--radius) 0; font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; color: var(--navy); box-shadow: var(--shadow-sm); }
.article-body hr { border: 0; border-top: 1px solid var(--line); margin: 2.6rem 0 1.6rem; }

/* === Portrait === */
.portrait { width: 100%; max-width: 360px; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); display: block; }

/* === Reveal === */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* === Responsive === */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .split, .split-narrow { grid-template-columns: 1fr; gap: 2.4rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-grid, .blog-grid, .feature-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .service-card.wide { grid-template-columns: 1fr; text-align: left; }
}
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-menu { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--ivory); border-bottom: 1px solid var(--line); padding: 0.5rem 1.5rem 1.2rem; box-shadow: var(--shadow); display: none; }
  .nav-menu.open { display: flex; }
  .nav-menu li { padding: 0.45rem 0; }
  .nav-cta { text-align: center; margin-top: 0.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .topbar-meta:first-child { display: none; }
  .mockup-badge.tl { left: -0.6rem; top: -1rem; }
  .mockup-badge.br { right: -0.6rem; bottom: -1rem; }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Extra ruimte boven kopjes in lopende tekst */
.container-narrow h2, .article-body h2 { margin-top: 2.8rem; }
.container-narrow h3, .article-body h3 { margin-top: 1.9rem; }
.container-narrow > h2:first-child, .article-body > h2:first-child,
.container-narrow > h3:first-child, .article-body > h3:first-child { margin-top: 0; }
