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

:root {
  --blue:       #1A56FF;
  --blue-dark:  #0F3CD9;
  --blue-light: #EEF2FF;
  --teal:       #00C2A8;
  --amber:      #F59E0B;
  --dark:       #0A0F1E;
  --body:       #374151;
  --muted:      #6B7280;
  --border:     #E5E7EB;
  --bg:         #F9FAFB;
  --white:      #FFFFFF;

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.07);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.11);

  --nav-h: 72px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--dark);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-header h2 { margin-top: 8px; }
.section-sub { margin-top: 10px; color: var(--muted); font-size: 0.9rem; }

/* ── BUTTONS ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all .18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(26,86,255,.3);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,86,255,.4);
}

.btn-ghost {
  background: rgba(255,255,255,.9);
  color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: var(--white); border-color: #9CA3AF; }

.btn-white {
  background: var(--white);
  color: var(--blue);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }

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

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

/* ── HEADER / NAV ───────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229,231,235,.5);
  z-index: 1000;
  transition: box-shadow .2s;
}

.header.scrolled { box-shadow: var(--shadow-md); }

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark);
}

.logo-mark {
  width: 34px; height: 34px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-menu a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--body);
  transition: color .15s;
}
.nav-menu a:hover { color: var(--blue); }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600 !important;
  font-size: 0.85rem !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .25s; }

/* ── HERO — warme gradient, geen raster ──────────────────────────────── */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 90px) 0 110px;
  overflow: hidden;
  background: linear-gradient(150deg, #F0F4FF 0%, #FAFBFF 45%, #F0FDF9 100%);
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,86,255,.12) 0%, transparent 70%);
  top: -250px; right: -150px;
}

.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,194,168,.1) 0%, transparent 70%);
  bottom: -150px; left: -100px;
}

.blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,.08) 0%, transparent 70%);
  top: 40%; left: 55%;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(26,86,255,.18);
  box-shadow: 0 2px 8px rgba(26,86,255,.08);
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.3); }
}

.hero-title { margin-bottom: 20px; animation: fadeUp .6s ease both; }

.hero-accent {
  color: var(--blue);
  position: relative;
  display: inline-block;
}

.hero-accent::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  border-radius: 3px;
  opacity: .3;
}

.hero-sub {
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  color: #4B5563;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.75;
  animation: fadeUp .6s .1s ease both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp .6s .2s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  box-shadow: var(--shadow-sm);
  animation: fadeUp .6s .3s ease both;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.stat span {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 3px;
  display: block;
}

.stat-divider { width: 1px; height: 36px; background: var(--border); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PIJNPUNTEN ─────────────────────────────────────────────────────── */
.pain {
  background: var(--dark);
  padding: 80px 0;
  color: var(--white);
}

.pain .section-label { color: var(--teal); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.pain-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: background .2s;
}

.pain-card:hover { background: rgba(255,255,255,.07); }

.pain-icon {
  width: 34px; height: 34px;
  background: rgba(239,68,68,.14);
  color: #FCA5A5;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.pain-card p { color: rgba(255,255,255,.72); font-size: 0.94rem; line-height: 1.6; }

.pain-answer {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.pain-answer p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--teal);
}

/* ── DIENSTEN ───────────────────────────────────────────────────────── */
.diensten { padding: 100px 0; }

.diensten-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.dienst-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s, box-shadow .2s;
}

.dienst-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.dienst-card--accent {
  background: linear-gradient(140deg, #1740D9 0%, #1A56FF 100%);
  border-color: transparent;
  color: var(--white);
}

.dienst-card--accent h3,
.dienst-card--accent .dienst-number { color: var(--white); }
.dienst-card--accent .dienst-tag { background: rgba(255,255,255,.14); color: rgba(255,255,255,.9); }
.dienst-card--accent .dienst-desc { color: rgba(255,255,255,.78); }
.dienst-card--accent .dienst-features li { color: rgba(255,255,255,.75); }
.dienst-card--accent .dienst-features li::before { color: var(--teal); }
.dienst-card--accent .price-from,
.dienst-card--accent .price-period { color: rgba(255,255,255,.6); }
.dienst-card--accent .price-amount { color: var(--white); }
.dienst-card--accent .dienst-price { border-color: rgba(255,255,255,.14); }

.dienst-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .1em;
}

.dienst-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 100px;
  width: fit-content;
}

.dienst-desc { color: var(--body); font-size: 0.94rem; line-height: 1.7; }

.dienst-features { display: flex; flex-direction: column; gap: 9px; flex: 1; }

.dienst-features li {
  font-size: 0.88rem;
  color: var(--body);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.dienst-features li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.dienst-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.price-from   { font-size: 0.82rem; color: var(--muted); }
.price-amount { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--dark); letter-spacing: -.02em; }
.price-period { font-size: 0.88rem; color: var(--muted); }

/* ── PROCESS ────────────────────────────────────────────────────────── */
.process { background: var(--bg); padding: 100px 0; }

.process-steps {
  display: flex;
  align-items: flex-start;
}

.process-step {
  flex: 1;
  padding: 32px 24px;
  text-align: center;
}

.step-num {
  width: 50px; height: 50px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 18px;
  box-shadow: 0 4px 14px rgba(26,86,255,.3);
}

.process-step h3 { margin-bottom: 10px; }
.process-step p  { color: var(--muted); font-size: 0.93rem; }

.process-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  margin-top: 57px;
  flex-shrink: 0;
}

/* ── PRIJZEN ────────────────────────────────────────────────────────── */
.prijzen { padding: 100px 0; }

.prijzen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.prijs-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}

.prijs-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.prijs-card--featured {
  border-color: var(--blue);
  border-width: 2px;
}

.prijs-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 13px;
  border-radius: 100px;
  white-space: nowrap;
  font-family: var(--font-display);
}

.prijs-naam {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

/* Strakker prijslettertype — geen display font hier */
.prijs-bedrag {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -.02em;
}

.prijs-bedrag span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
}

.prijs-card ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.prijs-card li {
  font-size: 0.86rem;
  color: var(--body);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.45;
}

.prijs-card li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.prijzen-btw {
  text-align: center;
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── WAAROM ─────────────────────────────────────────────────────────── */
.waarom { background: var(--bg); padding: 100px 0; }

.waarom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.waarom-text h2 { margin: 8px 0 16px; }
.waarom-text > p { color: var(--body); margin-bottom: 32px; line-height: 1.7; }

.waarom-punten { display: flex; flex-direction: column; gap: 22px; }

.waarom-punt { display: flex; gap: 14px; align-items: flex-start; }

.punt-icon {
  width: 30px; height: 30px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.9rem;
}

.waarom-punt strong { display: block; color: var(--dark); margin-bottom: 3px; font-size: 0.93rem; }
.waarom-punt p      { color: var(--muted); font-size: 0.88rem; }

.waarom-visual {
  position: relative;
  height: 340px;
}

.visual-card {
  position: absolute;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 190px;
  animation: float 4s ease-in-out infinite;
}

.vc-1 { top: 20px; left: 0; animation-delay: 0s; }
.vc-2 { top: 120px; right: 0; animation-delay: 1.3s; }
.vc-3 { bottom: 20px; left: 30px; animation-delay: 2.6s; }

.visual-card span    { font-size: 0.78rem; color: var(--muted); }
.visual-card strong  { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--dark); }

.vc-dot         { width: 8px; height: 8px; background: var(--blue);  border-radius: 50%; margin-bottom: 4px; }
.vc-dot--green  { background: var(--teal); }
.vc-dot--amber  { background: var(--amber); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── CONTACT ────────────────────────────────────────────────────────── */
.contact { padding: 100px 0; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-text h2 { margin: 8px 0 14px; }
.contact-text > p { color: var(--body); margin-bottom: 24px; line-height: 1.7; }

.contact-info { display: flex; flex-direction: column; gap: 8px; }

.contact-link {
  color: var(--blue);
  font-weight: 500;
  font-size: 0.93rem;
  transition: color .15s;
}
.contact-link:hover { color: var(--blue-dark); }

.contact-form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group { display: flex; flex-direction: column; gap: 5px; }

.form-group label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--dark);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,255,.1);
  background: var(--white);
}

.form-group input.error,
.form-group select.error { border-color: #EF4444; }

.form-error { font-size: 0.78rem; color: #EF4444; min-height: 16px; display: block; }

.form-disclaimer { font-size: 0.78rem; color: var(--muted); text-align: center; }

.form-success {
  display: none;
  background: var(--teal);
  color: var(--white);
  padding: 14px;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.93rem;
}
.form-success.visible { display: block; }

.btn-loading { display: none; }
.btn.loading .btn-text    { display: none; }
.btn.loading .btn-loading { display: inline; }

/* ── FOOTER ─────────────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand .logo      { color: var(--white); margin-bottom: 10px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p          { font-size: 0.88rem; color: rgba(255,255,255,.45); margin-bottom: 8px; }
.footer-email            { font-size: 0.85rem; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-email:hover      { color: var(--white); }

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

.footer-col { display: flex; flex-direction: column; gap: 11px; }

.footer-col strong {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.footer-col a { font-size: 0.86rem; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom { padding: 18px 0; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,.28); text-align: center; }
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--white); }

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .prijzen-grid { grid-template-columns: repeat(2, 1fr); }
  .waarom-inner { grid-template-columns: 1fr; gap: 48px; }
  .waarom-visual { height: 260px; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.open    { display: flex; }
  .nav-toggle       { display: flex; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero         { padding: calc(var(--nav-h) + 52px) 0 64px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats   { gap: 20px; padding: 16px 20px; }

  .pain-grid     { grid-template-columns: 1fr; }
  .diensten-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-connector { width: 2px; height: 36px; }
  .prijzen-grid  { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form  { padding: 24px 20px; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-nav   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container    { padding: 0 16px; }
  .dienst-card  { padding: 28px 20px; }
  .footer-nav   { grid-template-columns: 1fr; }
}

/* ── ACCESSIBILITY ───────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 3px;
}

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

/* 3 diensten grid */
.diensten-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .diensten-grid--3 { grid-template-columns: 1fr; }
}
