/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    Arial,
    "Noto Sans",
    "Apple Color Emoji",
    "Segoe UI Emoji";
  .badge-loss {
    background: linear-gradient(
      90deg,
      rgba(229, 57, 53, 0.13) 20%,
      rgba(229, 57, 53, 0.1) 100%
    );
    border: 1px solid rgba(229, 57, 53, 0.18);
    color: #e53935;
  }
  .badge-win {
    background: linear-gradient(
      90deg,
      rgba(46, 125, 50, 0.13) 20%,
      rgba(46, 125, 50, 0.1) 100%
    );
    border: 1px solid rgba(46, 125, 50, 0.18);
    color: #2e7d32;
  }
  .badge-stress {
    background: linear-gradient(
      90deg,
      rgba(255, 193, 7, 0.13) 20%,
      rgba(229, 57, 53, 0.1) 100%
    );
    border: 1px solid rgba(255, 193, 7, 0.18);
    color: #e53935;
  }
  .badge-cashflow {
    background: linear-gradient(
      90deg,
      rgba(6, 182, 212, 0.13) 20%,
      rgba(46, 125, 50, 0.1) 100%
    );
    border: 1px solid rgba(6, 182, 212, 0.18);
    color: #2563eb;
  }
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding-left: 1.15rem;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: var(--color-heading);
  transition: color 0.3s ease;
}

h1 {
  color: var(--color-heading);
}

h2 {
  font-size: 2rem;
  color: var(--color-heading);
}

/* ---------- Variables (licht!) ---------- */
:root {
  --container-width: 1120px;

  --color-bg: #f6f8fb; /* hoofdachtergrond */
  --color-bg-alt: #eef3f8; /* afwisseling tussen secties */
  --color-surface: #ffffff; /* cards */
  --color-surface-2: #fbfdff; /* lichte variant */

  --color-text: #1f2a37;
  --color-heading: #0f172a;
  --color-muted: #5b6b7f;

  --color-border: #dbe5f1;

  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-light: #3b82f6;

  --color-accent-1: #06b6d4; /* cyan */
  --color-accent-2: #8b5cf6; /* violet */
  --color-accent-3: #ec4899; /* pink */

  --color-outline: #1f2a37;

  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 14px 40px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 64px rgba(15, 23, 42, 0.12);

  --radius: 14px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: min(var(--container-width), calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
  background: transparent;
}

.section-alt {
  background: linear-gradient(
    to bottom,
    var(--color-bg-alt),
    rgba(6, 182, 212, 0.02)
  );
}

.section-cta {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8),
    rgba(6, 182, 212, 0.04)
  );
}

.section-intro {
  max-width: 70ch;
  color: var(--color-muted);
  margin-bottom: 2rem;
  font-size: 1.02rem;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.section-intro strong {
  color: var(--color-heading);
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 248, 251, 0.86);
  border-bottom: 1px solid rgba(219, 229, 241, 0.9);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 15px;
  transition: all 0.3s ease;
  align-items: center;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo img {
  height: 1rem;
  transition: all 0.3s ease;
  padding: 1px 0;
  padding-top: 1.5px;
}

.logo-text {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.15rem;
  background: linear-gradient(
    135deg,
    var(--color-heading),
    var(--color-primary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.logo-tagline {
  font-size: 0.9rem;
  color: var(--color-muted);
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.main-nav a {
  font-size: 0.95rem;
  color: var(--color-muted);
  padding: 0.4rem 0.55rem;
  border-radius: 10px;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-accent-1)
  );
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(-50%);
}

.main-nav a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-heading);
  transform: translateY(-2px);
}

.main-nav a:hover::after {
  width: 80%;
}

.main-nav a.active {
  background: rgba(37, 99, 235, 0.12);
  color: var(--color-heading);
}

.main-nav a.active::after {
  width: 80%;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  border: 1px solid var(--color-border);
  background: #ffffff;
  border-radius: 12px;
  padding: 0.5rem 0.6rem;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-heading);
  border-radius: 2px;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.header-cta-desktop {
  display: inline-flex;
}

/* ---------- Hero ---------- */
.hero {
  padding: 5.5rem 0 4rem;
  background:
    radial-gradient(
      1200px 600px at 15% -5%,
      rgba(37, 99, 235, 0.15),
      transparent 50%
    ),
    radial-gradient(
      900px 500px at 95% 5%,
      rgba(6, 182, 212, 0.1),
      transparent 60%
    ),
    radial-gradient(
      800px 400px at 50% 100%,
      rgba(139, 92, 246, 0.08),
      transparent 70%
    ),
    linear-gradient(to bottom, #ffffff, var(--color-bg));
  border-bottom: 1px solid rgba(219, 229, 241, 0.8);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.hero-text h1 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  letter-spacing: -0.02em;
}

.highlight {
  background: rgba(30, 84, 199, 0.527);
  border-radius: 10px;
  padding: 0.05em 0.3em;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-weight: 700;
}

.hero-subtitle {
  color: var(--color-muted);
  font-size: 1.05rem;
  max-width: 65ch;
  margin-bottom: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  /* give some breathing room above the buttons so they aren’t
     jammed up against the subtitle or whatever text comes before */
  margin: 1.25rem 0 1rem;
}

.hero-illustration {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 1.5rem 0 1.5rem;
  opacity: 1;
  transition: all 0.3s ease;
  animation: float 3.5s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.15));
}

.hero-illustration:hover {
  filter: drop-shadow(0 6px 16px rgba(37, 99, 235, 0.25));
  transform: translateY(-6px);
}

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

.hero-note {
  color: var(--color-muted);
  font-size: 0.95rem;
  max-width: 65ch;
}

.hero-card {
  background: linear-gradient(
    135deg,
    var(--color-surface),
    rgba(6, 182, 212, 0.04)
  );
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

/* Pilot badge and process steps (trust-building without testimonials) */
.pilot-badge {
  display: inline-block;
  background: linear-gradient(
    90deg,
    rgba(37, 99, 235, 0.08),
    rgba(6, 182, 212, 0.06)
  );
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: var(--color-heading);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.badge {
  display: inline-flex;
  background: linear-gradient(
    90deg,
    rgba(139, 92, 246, 0.1),
    rgba(6, 182, 212, 0.1)
  );
  border: 1px solid rgba(139, 92, 246, 0.18);
  color: var(--color-heading);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.7rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

.process-step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  text-align: left;
}

.process-step .kicker {
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}

.process-step .step-text {
  color: var(--color-muted);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

.hero-card-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(219, 229, 241, 0.9);
}

.rate {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.muted {
  color: var(--color-muted);
}

/* ---------- Cards ---------- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-accent-1),
    var(--color-accent-2)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}

.card:hover::before {
  transform: scaleX(1);
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--color-heading);
}

.emphasis-card {
  border-color: rgba(37, 99, 235, 0.25);
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.06),
    rgba(6, 182, 212, 0.04)
  );
}

/* Lists */
.card ul li {
  margin-bottom: 0.45rem;
  color: var(--color-muted);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.card:hover ul li {
  color: var(--color-heading);
}

.check-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 0;
  margin-bottom: 0.8rem;
  color: var(--color-muted);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.check-list li::before {
  display: none;
}

.check-list li:hover {
  transform: translateX(4px);
  color: var(--color-heading);
}

/* SVG Icons */
.check-icon {
  width: 1.4rem;
  height: 1.4rem;
  margin-right: 0.8rem;
  flex-shrink: 0;
  color: var(--color-primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}

.check-list li .check-icon {
  width: 1.4rem;
  height: 1.4rem;
  margin-right: 0.8rem;
  color: var(--color-primary);
}

.check-list li:hover .check-icon {
  color: var(--color-primary);
  filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.3));
}

.card-icon {
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 0.8rem;
  color: var(--color-primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover .card-icon {
  transform: translateY(-4px);
  color: var(--color-accent-1);
  filter: drop-shadow(0 4px 12px rgba(6, 182, 212, 0.3));
}

.process-icon {
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-step:hover .process-icon {
  transform: translateY(-6px) scale(1.1);
  color: var(--color-accent-1);
  filter: drop-shadow(0 6px 16px rgba(6, 182, 212, 0.3));
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.05rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  color: #ffffff;
  box-shadow: 0 10px 32px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--color-primary-hover),
    var(--color-primary)
  );
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.12),
    rgba(6, 182, 212, 0.08)
  );
  border-color: rgba(37, 99, 235, 0.25);
  color: var(--color-heading);
}

.btn-secondary:hover {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.16),
    rgba(6, 182, 212, 0.12)
  );
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}

.btn-outline {
  background: #ffffff;
  border-color: var(--color-border);
  color: var(--color-heading);
}

.btn-outline:hover {
  border-color: rgba(37, 99, 235, 0.5);
  background: rgba(37, 99, 235, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.1);
}

.btn-small {
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  font-size: 0.92rem;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

.btn-primary:disabled {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  color: #ffffff;
}

/* ---------- About layout (foto + content) ---------- */
.about-section-layout {
  display: grid;
  grid-template-columns: auto 1fr; /* photo left, text right */
  gap: 1.25rem;
  align-items: center;
}

/* large abstract background shapes covering multiple sections */
.bg-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -2;
  overflow: visible;
}

.bg-shapes circle,
.bg-shapes ellipse,
.bg-shapes polygon {
  vector-effect: non-scaling-stroke;
}

/* Ensure same order on very small screens but keep image left */
@media (max-width: 480px) {
  .about-section-layout {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto; /* keep two columns, image still left */
  }
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}

.about-photo {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  width: 160px;
  height: 160px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(219, 229, 241, 0.9);
  display: block;
  padding: 0;
  margin: 0;
}

.about-photo-note {
  margin: 0.85rem 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.about-content {
  display: grid;
  gap: 1.25rem;
}

.about-bullets {
  margin-top: 0.75rem;
  color: var(--color-muted);
}

.about-bullets li {
  margin-bottom: 0.45rem;
}

.about-cta {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.08),
    rgba(6, 182, 212, 0.06)
  ) !important;
  border: 1.5px solid rgba(37, 99, 235, 0.3) !important;
}

.about-cta:hover {
  border-color: rgba(37, 99, 235, 0.5) !important;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.12),
    rgba(6, 182, 212, 0.1)
  ) !important;
}

.about-cta .btn {
  margin-right: 0.35rem;
}

/* ---------- Forms ---------- */
.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.contact-form:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.15);
}

.contact-form label {
  display: block;
  font-weight: 650;
  color: var(--color-heading);
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  border: 1.5px solid var(--color-border);
  background: #ffffff;
  color: var(--color-text);
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.form-note {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin: 0.7rem 0 1rem;
}

.form-success-message {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.28);
  color: #0f172a;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}

/* Contact list */
.contact-list {
  list-style: none;
  padding-left: 0;
}

.contact-list li {
  margin-bottom: 0.5rem;
  color: var(--color-muted);
}

.contact-list a {
  color: var(--color-primary);
}

.contact-list a:hover {
  text-decoration: underline;
}

/* ---------- CTA section ---------- */
.section-cta .cta-inner {
  background: linear-gradient(
    135deg,
    var(--color-surface),
    rgba(6, 182, 212, 0.04)
  );
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 2px);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.section-cta .cta-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent);
  border-radius: 50%;
}

.cta-note {
  color: var(--color-muted);
  margin-top: 0.9rem;
  font-size: 0.95rem;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 2rem 0;
  background: linear-gradient(to bottom, #ffffff, var(--color-bg));
  border-top: 1px solid rgba(219, 229, 241, 0.9);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-primary) 20%,
    var(--color-primary) 80%,
    transparent
  );
  opacity: 0.3;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 0.95rem;
  text-align: center;
  transition: color 0.3s ease;
}

.site-footer:hover .footer-inner {
  color: var(--color-heading);
}

/* ---------- Responsive ---------- */
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner {
    grid-template-columns: 1.35fr 0.85fr;
    align-items: center;
  }

  .logo-tagline {
    display: inline;
  }

  .about-section-layout {
    grid-template-columns: 0.35fr 1.65fr;
    gap: 1.75rem;
  }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 72px;
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 0.75rem 0.8rem;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }

  .header-cta-desktop {
    display: none;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 4.5rem 0 3.2rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .section-cta .cta-inner {
    padding: 1.5rem;
  }
}

/* --- About foto: compacter op mobile --- */
.about-photo img {
  width: 100%;
  object-fit: cover;
}

/* Mobile: beperk hoogte zodat de foto niet “domineert” */
@media (max-width: 480px) {
  .about-photo {
    padding: 0.75rem;
  }

  .about-photo img {
    aspect-ratio: 1 / 1; /* vierkanter = visueel rustiger */
    max-height: 240px; /* sleutel: niet te groot */
    width: 100%;
  }
}

/* Tablet: iets meer ademruimte */
@media (min-width: 481px) and (max-width: 767px) {
  .about-photo img {
    aspect-ratio: 4 / 5;
    max-height: 320px;
  }
}

/* Desktop: smaller photo next to content */
@media (min-width: 768px) {
  .about-photo img {
    aspect-ratio: 3 / 4;
    max-height: 380px;
    width: 100%;
    object-fit: cover;
  }
}

/* --- Add-ons: pills / stats / pricing box --- */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 750;
  font-size: 0.85rem;
  color: var(--color-heading);
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.12),
    rgba(6, 182, 212, 0.1)
  );
  border: 1px solid rgba(37, 99, 235, 0.25);
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
  cursor: default;
}

.pill:hover {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.16),
    rgba(6, 182, 212, 0.14)
  );
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0.75rem;
}

.stat {
  border: 1px solid rgba(219, 229, 241, 0.9);
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8),
    rgba(6, 182, 212, 0.04)
  );
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.2);
}

.stat:hover::before {
  right: -10px;
  top: 10px;
}

.stat-kicker {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 650;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 0.25rem;
}

.stat-note {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.pricing-box {
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1.5px solid rgba(37, 99, 235, 0.25);
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.04),
    rgba(6, 182, 212, 0.04)
  );
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.pricing-box:hover {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.08),
    rgba(6, 182, 212, 0.06)
  );
  border-color: rgba(37, 99, 235, 0.35);
}

.pricing-box:hover::before {
  left: 100%;
}

/* ---------- Utility Classes ---------- */
.card-spacing-large {
  margin-top: 1.25rem;
}

.p-spacing-small {
  margin-bottom: 0.8rem;
}

.ul-spacing-top {
  margin-top: 1rem;
}

.muted-spacing {
  margin-top: 0.65rem;
}

/* visual markers for before/after examples */
.bad {
  color: #e53935; /* red */
  font-weight: 600;
}
.bad::before {
  content: "✖ ";
}
.good {
  color: #2e7d32; /* green */
  font-weight: 600;
}
.good::before {
  content: "✔ ";
}

.hero-actions-no-margin {
  margin-bottom: 0;
}

.regio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.regio-list ul {
  flex: 1;
  min-width: 150px;
}

.hidden {
  display: none;
}

/* ---------- Animations & Effects ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0);
  }
}

/* Add subtle animation to cards on load */
.card {
  animation: fadeInUp 0.6s ease-out backwards;
}

.card:nth-child(1) {
  animation-delay: 0.1s;
}

.card:nth-child(2) {
  animation-delay: 0.2s;
}

.card:nth-child(3) {
  animation-delay: 0.3s;
}

/* Enhanced section backgrounds */
.section {
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-border),
    transparent
  );
  opacity: 0.4;
}

/* Responsive improvements for creative design */
.stat-grid {
  grid-template-columns: 1fr 1fr 1fr;
}

.vragen-blok-wit {
  transition:
    transform 0.5s cubic-bezier(0.77, 0.2, 0.32, 1.01),
    opacity 0.5s cubic-bezier(0.77, 0.2, 0.32, 1.01);
  will-change: transform, opacity;
}

.vragen-blok-wit.slide-out {
  transform: translateX(-60vw);
  opacity: 0;
}

.vragen-blok-wit.slide-out-right {
  transform: translateX(60vw);
  opacity: 0;
}

.vragen-blok-wit.slide-in {
  transform: translateX(60vw);
  opacity: 0;
}

.vragen-blok-wit.slide-in-from-left {
  transform: translateX(-60vw);
  opacity: 0;
}

.vragen-blok-wit.slide-active {
  transform: translateX(0);
  opacity: 1;
}

.progress-bar-container {
  margin-bottom: 2rem;
  background: #e5e7eb;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  transition: width 0.5s ease-out;
}

.progress-label {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.5rem;
  text-align: center;
}

.form-row {
  text-align: left;
  margin: 0.75rem 0 1rem 0;
}

.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.55rem;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.15);
}

/* Make this select visually consistent with the radio "button" options */
.form-row select#employees_range {
  border: 2px solid rgba(37, 99, 235, 0.2);
  background: rgba(37, 99, 235, 0.05);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-heading);
  cursor: pointer;
  text-align: center;
  text-align-last: center;
  transition: all 0.25s ease;
}

.form-row select#employees_range:hover {
  border-color: rgba(37, 99, 235, 0.4);
  background: rgba(37, 99, 235, 0.1);
}

.form-row select#employees_range:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.form-hint {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.35rem;
}

.netlify-selftest-report-form {
  margin-top: 1rem;
}

.netlify-selftest-report-form [data-netlify-recaptcha] {
  margin-top: 0.75rem;
}

.card-section {
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 12px;
  padding: 1rem;
  margin: 1rem 0;
  text-align: left;
  background: rgba(37, 99, 235, 0.03);
}

.card-section h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.05rem;
  color: #0f172a;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.card-section h3:hover {
  color: var(--color-primary);
}

.card-section h3::after {
  content: "▼";
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  display: inline-block;
  width: 1.2rem;
  text-align: right;
}

.card-section.collapsed h3::after {
  transform: rotate(-90deg);
}

.card-section.collapsed > *:not(h3) {
  display: none !important;
}

.card-section.collapsed {
  padding: 1rem;
}

.card-section:not(.collapsed) {
  padding: 1rem;
}

/* Option List / Button Group Styling */
.option-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.option-item {
  flex: none;
  min-width: 0;
}

.option-item input[type="radio"],
.option-item input[type="checkbox"] {
  display: none;
}

.option-item label {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 2px solid rgba(37, 99, 235, 0.2);
  background: rgba(37, 99, 235, 0.05);
  cursor: pointer;
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  user-select: none;
  color: var(--color-heading);
  margin: 0;
}

.option-item label:hover {
  border-color: rgba(37, 99, 235, 0.4);
  background: rgba(37, 99, 235, 0.1);
}

.option-item input[type="radio"]:checked + label,
.option-item input[type="checkbox"]:checked + label {
  border-color: var(--color-primary);
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.15),
    rgba(6, 182, 212, 0.08)
  );
  color: var(--color-primary);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: #fff;
  margin: 0.25rem 0.25rem 0 0;
  cursor: pointer;
  user-select: none;
}

.pill input {
  width: auto;
  margin: 0;
}

/* Checkbox pills (GDPR / nieuwsbrief) - multiline friendly */
.pill.pill--checkbox {
  display: flex;
  width: 100%;
  border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
  gap: 0.7rem;
  align-items: flex-start;
  white-space: normal;
  line-height: 1.35;
  border-color: rgba(219, 229, 241, 0.95);
  background: var(--color-surface);
  margin: 0.35rem 0 0 0;
}

/* Beat `.form-row label { display:block; margin-bottom:... }` */
.form-row label.pill.pill--checkbox {
  display: flex;
  margin-bottom: 0;
  font-weight: 600;
}

.pill.pill--checkbox:hover {
  border-color: rgba(37, 99, 235, 0.35);
  background: rgba(37, 99, 235, 0.03);
}

.pill.pill--checkbox.is-checked {
  border-color: var(--color-primary);
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(6, 182, 212, 0.06)
  );
}

.pill.pill--checkbox input[type="checkbox"] {
  margin-top: 0.1rem;
  flex: 0 0 auto;
}

.pill.pill--checkbox .pill-content {
  display: block;
  text-align: left;
}

.pill.pill--checkbox .pill-text {
  display: block;
  font-weight: 650;
  color: var(--color-heading);
}

.pill.pill--checkbox .pill-sub {
  display: block;
  margin-top: 0.2rem;
  font-weight: 500;
  color: var(--color-muted);
}

.muted {
  opacity: 0.75;
}

.hidden {
  display: none !important;
}

.button-group {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.button-group .btn-wrap {
  flex: 1;
  min-width: 120px;
  position: relative;
  display: flex;
}

.button-group .btn-wrap .btn {
  width: 100%;
}

.btn-disabled-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: not-allowed;
  display: none;
}

.btn-disabled-overlay:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.55);
  outline-offset: 3px;
  border-radius: 12px;
}

.inline-validation {
  margin-top: 1rem;
  text-align: left;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 12px;
  padding: 0.95rem 1rem;
  box-shadow: 0 10px 32px rgba(37, 99, 235, 0.08);
}

.inline-validation strong {
  display: block;
  margin-bottom: 0.35rem;
}

.inline-validation ul {
  margin: 0;
  padding-left: 1.25rem;
}

.button-group .btn {
  flex: 1;
  min-width: 120px;
}

.button-group .btn-secondary {
  background: linear-gradient(
    135deg,
    rgba(107, 114, 128, 0.12),
    rgba(107, 114, 128, 0.08)
  );
  border-color: rgba(107, 114, 128, 0.25);
  color: var(--color-heading);
}

.button-group .btn-secondary:hover {
  background: linear-gradient(
    135deg,
    rgba(107, 114, 128, 0.16),
    rgba(107, 114, 128, 0.12)
  );
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(107, 114, 128, 0.15);
}

.inline-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 520px) {
  .inline-2 {
    grid-template-columns: 1fr;
  }
}
