/* ---------- 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.10) 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.10) 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.10) 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.10) 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.10), rgba(6,182,212,0.10));
  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: 2px solid white;
  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;
  }
}
