/* ================================================================
   RESET & ROOT VARIABLES
================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Palette */
  --clr-bg:          #f8f7f4;
  --clr-surface:     #eeecea;
  --clr-surface-2:   #e4e1dd;
  --clr-border:      rgba(0,0,0,0.1);
  --clr-text:        #1a1a1a;
  --clr-muted:       #6b6b6b;
  --clr-accent:      #4682CB;   /* blue — brand / identity */
  --clr-accent-dk:   #3570b5;
  --clr-accent-2:    #F46F36;   /* orange — CTA / highlight */
  --clr-accent-2-dk: #d85e28;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --nav-h: 72px;
  --max-w: 1200px;
  --section-py: 120px;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }


/* ================================================================
   NAVIGATION
================================================================ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(248, 247, 244, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow 0.35s var(--ease);
}

.nav-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

.nav-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  margin-right: auto;
}

.logo-img {
  height: 40px;
  width: auto;
}
/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--clr-muted);
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--clr-accent);
  transition: width 0.3s var(--ease);
}
.nav-link:hover          { color: var(--clr-text); }
.nav-link:hover::after   { width: 100%; }
.nav-link.active         { color: var(--clr-text); }
.nav-link.active::after  { width: 100%; }

/* CTA button */
.nav-cta {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 9px 20px;
  border-radius: 100px;
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--clr-accent-2);
  border-color: var(--clr-accent-2);
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: var(--clr-bg);
  z-index: 99;
  padding: 48px 32px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-logo {
  margin-bottom: 32px;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-muted);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--clr-accent); }


/* ================================================================
   HERO
================================================================ */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: stretch;
  gap: 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
  position: relative;
  overflow: hidden;
}

/* Decorative blobs */
.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.shape-1 {
  width: 500px; height: 500px;
  background: rgba(70, 130, 203, 0.1);
  top: -100px; right: -100px;
}
.shape-2 {
  width: 300px; height: 300px;
  background: rgba(244, 111, 54, 0.07);
  bottom: 0; left: 20%;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: center;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: normal;
  color: var(--clr-accent-2);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--clr-muted);
  max-width: 440px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 100px;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--clr-accent-2);
  color: #fff;
}
.btn-primary:hover {
  background: var(--clr-accent-2-dk);
  box-shadow: 0 8px 32px rgba(244, 111, 54, 0.3);
}

.btn-ghost {
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}
.btn-ghost:hover {
  border-color: rgba(0,0,0,0.25);
  background: rgba(0,0,0,0.04);
}

/* Hero image */
.hero-image {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  align-self: stretch;
  min-height: 300px;
  margin-block: 60px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Scroll-triggered fade-in */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}


.section-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
}


/* ================================================================
   SHARED SECTION HELPERS
================================================================ */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-heading em {
  font-style: normal;
  color: var(--clr-accent-2);
}
.section-text {
  color: var(--clr-muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 520px;
}


/* ================================================================
   TRUST BAR
================================================================ */
.trust-bar {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 28px 32px;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.trust-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-accent);
  line-height: 1;
}
.trust-label {
  font-size: 0.75rem;
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trust-subjects {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text);
}
.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--clr-border);
  flex-shrink: 0;
}


/* ================================================================
   OVER
================================================================ */
.about-section {
  padding: var(--section-py) 32px;
  border-top: 1px solid var(--clr-border);
}
.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  border-radius: 16px;
  overflow: hidden;
  background: var(--clr-surface);
  border: none;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  font-size: 0.85rem;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-callout {
  margin-top: 8px;
  padding: 20px 24px;
  border-left: 3px solid var(--clr-accent-2);
  background: var(--clr-surface);
  border-radius: 0 12px 12px 0;
  font-size: 1rem;
  font-style: italic;
  color: var(--clr-text);
  line-height: 1.6;
  max-width: 520px;
}


/* ================================================================
   AANPAK
================================================================ */
.aanpak-section {
  padding: var(--section-py) 32px;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
}
.aanpak-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.aanpak-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.aanpak-callout {
  margin-top: 24px;
  padding: 32px 36px;
  background: rgba(244, 111, 54, 0.07);
  border: 1px solid rgba(244, 111, 54, 0.25);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aanpak-callout-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent-2);
}

.aanpak-callout-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
}

.aanpak-callout-text {
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.75;
}
.step-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.step-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}
.step-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-accent);
  line-height: 1;
}
.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
}
.step-text {
  font-size: 0.9rem;
  color: var(--clr-muted);
  line-height: 1.75;
}


/* ================================================================
   RECENSIES
================================================================ */
.recensies-section {
  padding: var(--section-py) 32px;
  border-top: 1px solid var(--clr-border);
}
.recensies-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.carousel-outer {
  overflow: hidden;
  margin-top: 36px;
}

.recensies-grid {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.carousel-controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-top: 24px;
}

.carousel-arrows {
  display: flex;
  gap: 12px;
  justify-content: center;
  grid-column: 2;
}

.carousel-controls .btn {
  justify-self: end;
  grid-column: 3;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  background: var(--clr-bg);
  color: var(--clr-text);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: background 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.carousel-btn:hover {
  background: var(--clr-surface);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.carousel-btn:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

.review-card {
  flex-shrink: 0;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.review-stars {
  color: var(--clr-accent-2);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--clr-text);
  flex: 1;
  margin-bottom: 24px;
}
.review-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text);
}
.review-meta {
  font-size: 0.8rem;
  color: var(--clr-muted);
  margin-top: 2px;
}


/* ================================================================
   CONTACT
================================================================ */
.contact-section {
  padding: var(--section-py) 32px;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  text-align: center;
}
.contact-inner {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
}
.contact-sub {
  color: var(--clr-muted);
  font-size: 1rem;
  line-height: 1.75;
}
.contact-location {
  font-size: 0.85rem;
  color: var(--clr-muted);
}

.contact-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 8px;
}


/* ================================================================
   FOOTER
================================================================ */
.footer {
  border-top: 1px solid var(--clr-border);
  padding: 56px 32px 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: 28px;
}

.footer-brand {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--clr-muted);
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.85rem;
  color: var(--clr-muted);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--clr-text); }

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--clr-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}
.footer-social a:hover { transform: translateY(-2px); }

.footer-social a[aria-label="LinkedIn"] { color: #0077B5; }
.footer-social a[aria-label="Instagram"] { color: #E1306C; }
.footer-social a[aria-label="WhatsApp"] { color: #25D366; }

.footer-copy {
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 0.8rem;
  color: var(--clr-muted);
}

.footer-copy a {
  color: var(--clr-muted);
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-copy a:hover {
  color: var(--clr-text);
}


/* ================================================================
   PRIVACY
================================================================ */
.privacy-section {
  padding: var(--section-py) 32px;
  padding-top: calc(var(--nav-h) + var(--section-py));
}

.privacy-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.privacy-intro {
  color: var(--clr-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 8px;
  margin-bottom: 16px;
}

.privacy-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 0;
  border-top: 1px solid var(--clr-border);
}

.privacy-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text);
}

.privacy-block p {
  color: var(--clr-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.privacy-block a {
  color: var(--clr-accent);
  text-decoration: underline;
}

.privacy-list {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--clr-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.privacy-date {
  font-size: 0.8rem;
  color: var(--clr-muted);
  margin-top: 16px;
  font-style: italic;
}


/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 80px;
    min-height: auto;
  }
  .hero-image  { min-height: 260px; align-self: auto; }
}

@media (max-width: 860px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-photo {
    aspect-ratio: 4 / 3;
    max-width: 400px;
  }
  .aanpak-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .aanpak-steps .step-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 12px);
    margin: 0 auto;
  }
  .trust-divider { display: none; }
}

@media (max-width: 680px) {
  :root { --section-py: 80px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger            { display: flex; }
  .mobile-menu          { display: block; }

  .aanpak-steps {
    grid-template-columns: 1fr;
  }
  .aanpak-steps .step-card:last-child {
    max-width: 100%;
  }

  .carousel-arrows { display: none; }

  .carousel-controls {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .carousel-controls .btn {
    grid-column: 1;
    justify-self: center;
  }


  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
}
