/* ===================================================
   LaNexus — Globale stijlen
   Kleurenpalet: diepzwart + goudgeel
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400&display=swap');

/* --- CSS variabelen --- */
:root {
  --black:        #0d0d0d;
  --black-card:   #161616;
  --black-border: #222222;
  --gold:         #C9A84C;
  --gold-light:   #E8C96B;
  --gold-dim:     #8a6f2e;
  --white:        #F5F5F0;
  --gray:         #999999;
  --gray-light:   #cccccc;
  --red:          #c94c4c;
  --green:        #4caf50;

  --font-heading: 'Lato', system-ui, sans-serif;
  --font-body:    'Lato', system-ui, sans-serif;

  --radius:       6px;
  --radius-lg:    12px;
  --shadow:       0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold:  0 4px 24px rgba(201,168,76,0.2);
  --transition:   0.25s ease;

  --gold-rich:    #D4AF37;   /* rijker goud voor logo "Nexus" */

  --max-width:    1200px;
  --section-pad:  96px 24px;
  --section-pad-sm: 56px 20px;
}

/* --- Reset & basis --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

ul {
  list-style: none;
}

/* --- Typografie --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.625rem); font-weight: 700; }
h4 { font-size: 1.125rem; font-weight: 700; letter-spacing: 0; }

.gold-text { color: var(--gold); }
.white-text { color: var(--white); }
.gray-text { color: var(--gray); }

.lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-light);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Secties --- */
section {
  padding: var(--section-pad);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header p {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--gray-light);
  font-size: 1.0625rem;
}

/* --- Gouden divider --- */
.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto 0;
  border-radius: 2px;
}

.gold-divider-left {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0 0;
  border-radius: 2px;
}

/* ===================================================
   NAVIGATIE
   =================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #000000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.navbar.scrolled {
  background: #000000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 24px 0;
}

/* Bovenste rij: logo links, hamburger rechts */
.navbar-brand-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}


/* Onderste rij: navigatielinks */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 10px 0 12px;
  width: 100%;
}

.navbar-links a {
  color: var(--gray-light);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--gold);
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition) !important;
}

.navbar-cta::after {
  display: none !important;
}

.navbar-cta:hover {
  background: var(--gold-light) !important;
  color: var(--black) !important;
  transform: translateY(-1px);
}

/* ===================================================
   LOGO
   =================================================== */

.header-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  flex-shrink: 0;
  background: transparent !important;
  border: none;
  box-shadow: none;
  padding-top: 20px;
  margin: 0;
}

@keyframes logo-shine {
  0% {
    filter: brightness(1) drop-shadow(0 0 0px rgba(201,168,76,0));
    transform: scale(1);
  }
  40% {
    filter: brightness(1.35) drop-shadow(0 0 18px rgba(212,175,55,0.85)) drop-shadow(0 0 36px rgba(201,168,76,0.45));
    transform: scale(1.06);
  }
  100% {
    filter: brightness(1) drop-shadow(0 0 0px rgba(201,168,76,0));
    transform: scale(1);
  }
}

.header-logo-img {
  height: 65px;
  width: auto;
  display: block;
  opacity: 1;
  object-fit: contain;
  background: transparent;
  border: none;
  box-shadow: none;
  outline: none;
  transform-origin: left center;
  animation: logo-shine 2.2s ease-in-out 5;
}

.header-logo-slogan {
  display: none;
}

@media (max-width: 1024px) {
  .navbar-inner {
    padding: 22px 20px 0;
  }

  .header-logo-wrap {
    padding-top: 10px;
    padding-bottom: 14px;
  }
}

@media (max-width: 768px) {
  .header-logo-img {
    height: 44px;
  }

  .navbar-inner {
    padding: 16px 18px 0;
  }

  .header-logo-wrap {
    padding-top: 8px;
    padding-bottom: 12px;
  }

  .mobile-menu {
    top: 64px;
  }
}

/* Slogan in footer */
.logo-tagline {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-dim);
  margin-top: 4px;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.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 menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(13,13,13,0.98);
  backdrop-filter: blur(12px);
  padding: 24px;
  z-index: 999;
  border-top: 1px solid var(--black-border);
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--black-border);
  display: block;
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-menu .mobile-cta {
  margin-top: 20px;
  background: var(--gold);
  color: var(--black) !important;
  text-align: center;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  border: none;
}

/* ===================================================
   KNOPPEN
   =================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  min-height: 50px;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--black-border);
}

.btn-ghost:hover {
  border-color: var(--gold);
}

/* ===================================================
   ZermeloScan primaire knop — shimmer + scroll-pulse
   Alleen op de "Gratis ZermeloScan" CTA's
   =================================================== */

.btn-scan {
  background: var(--gold);
  color: var(--black);
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.btn-scan > * { position: relative; z-index: 2; }

.btn-scan::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.34) 50%, transparent 100%);
  transform: translateX(-160%) skewX(-14deg);
  animation: scanShimmer 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes scanShimmer {
  0%   { transform: translateX(-160%) skewX(-14deg); }
  28%  { transform: translateX(260%)  skewX(-14deg); }
  100% { transform: translateX(260%)  skewX(-14deg); }
}

@keyframes scanPulse {
  0%   { box-shadow: 0 4px 16px rgba(201,168,76,0.2), 0 0 0 0   rgba(201,168,76,0.45); }
  55%  { box-shadow: 0 4px 16px rgba(201,168,76,0.4), 0 0 0 13px rgba(201,168,76,0); }
  100% { box-shadow: 0 4px 16px rgba(201,168,76,0.2), 0 0 0 0   rgba(201,168,76,0); }
}

.btn-scan.pulsing {
  animation: scanPulse 1.15s ease-out 3;
}

.btn-scan:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.4);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
  min-height: 58px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
  min-height: 42px;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* ===================================================
   CARDS
   =================================================== */

.card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: border-color var(--transition), transform var(--transition);
}

.card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}

.card-gold {
  border-color: var(--gold-dim);
}

/* ===================================================
   HERO
   =================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 240px 24px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 30% 80%, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--gray-light);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--gray);
}

.trust-item .check {
  width: 18px;
  height: 18px;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.625rem;
  color: var(--gold);
}

/* Hero visual (rechts) */
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-card-main {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.hero-card-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}

.hero-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--black);
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--white);
  font-weight: 600;
}

.author-info span {
  font-size: 0.8125rem;
  color: var(--gold);
}

.hero-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.hero-stat {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}

.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.hero-stat .lbl {
  font-size: 0.6875rem;
  color: var(--gray);
  margin-top: 4px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===================================================
   BELOFTE BANNER
   =================================================== */

.promise-banner {
  background: var(--gold);
  padding: 32px 24px;
}

.promise-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.promise-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.promise-banner blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--black);
  font-weight: 600;
  line-height: 1.5;
}

/* ===================================================
   DIENSTEN CARDS GRID
   =================================================== */

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.dienst-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.dienst-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--black-border);
  transition: background var(--transition);
}

.dienst-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.dienst-card:hover::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.dienst-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.dienst-card h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
  color: var(--white);
}

.dienst-card p {
  color: var(--gray-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.dienst-card-tag {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(201,168,76,0.2);
}

/* ===================================================
   OVER SANDRA SECTIE
   =================================================== */

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

.about-img-wrap {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gray);
  font-size: 0.875rem;
}

.about-img-placeholder .initials {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
}

.about-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.about-badge-overlay {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 130px;
}

.about-badge-overlay .big-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  display: block;
}

.about-badge-overlay .big-lbl {
  font-size: 0.75rem;
  color: rgba(13,13,13,0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content .lead {
  margin-bottom: 24px;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--gray-light);
}

.about-list .check-gold {
  width: 20px;
  height: 20px;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===================================================
   CONTACT CTA SECTIE
   =================================================== */

.contact-cta {
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 80px 24px;
}

.contact-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-cta h2 {
  margin-bottom: 16px;
}

.contact-cta p {
  color: var(--gray-light);
  font-size: 1.0625rem;
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.contact-cta .phone-label {
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--gray);
}

.contact-cta .phone-label a {
  color: var(--gold);
  font-weight: 600;
}

/* ===================================================
   FLOATING CONTACT KNOP
   =================================================== */

.float-contact {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.float-contact-btn.whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}

.float-contact-btn.whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #ffffff;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.float-contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 14px 20px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  overflow: hidden;
  max-width: 56px;
}

.float-contact-btn:hover {
  max-width: 300px;
  background: var(--gold-light);
  color: var(--black);
  border-color: var(--gold-light);
  box-shadow: 0 6px 28px rgba(201,168,76,0.5);
}

.float-contact-btn .float-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.float-contact-btn .float-text {
  opacity: 0;
  transition: opacity 0.2s 0.05s ease;
  white-space: nowrap;
}

.float-contact-btn:hover .float-text {
  opacity: 1;
}

/* ===================================================
   FORMULIER
   =================================================== */

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-feedback {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-top: 16px;
  font-weight: 500;
}

.form-feedback.success {
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.3);
  color: #81c784;
  display: block;
}

.form-feedback.error {
  background: rgba(201,76,76,0.1);
  border: 1px solid rgba(201,76,76,0.3);
  color: #ef9a9a;
  display: block;
}

/* ===================================================
   FOOTER
   =================================================== */

.footer {
  background: var(--black);
  border-top: 1px solid var(--black-border);
  padding: 64px 24px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}

.footer-brand .logo-text span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.875rem;
  transition: all var(--transition);
  text-decoration: none;
}

.social-btn:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

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

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--gray);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--gray);
}

.footer-contact-list li .icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list li a {
  color: var(--gray);
}

.footer-contact-list li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--gray);
}

.footer-kvk {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-kvk span {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ===================================================
   SCROLL ANIMATIES
   =================================================== */

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ===================================================
   HERO PAGINA HEADER (voor interne pagina's)
   =================================================== */

.page-hero {
  padding: 250px 24px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 0%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-bottom: 20px;
}

.page-hero .lead {
  max-width: 640px;
  margin-bottom: 32px;
}

/* ===================================================
   RESPONSIVE — TABLET (max 1024px)
   =================================================== */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-wrap {
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .navbar-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ===================================================
   RESPONSIVE — MOBIEL (max 768px)
   =================================================== */

@media (max-width: 768px) {
  :root {
    --section-pad: var(--section-pad-sm);
  }

  section {
    padding: 56px 20px;
  }

  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .section-header {
    margin-bottom: 40px;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-badge-overlay {
    right: 0;
    bottom: -16px;
  }

  .promise-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-kvk {
    justify-content: center;
  }

  .contact-cta .cta-buttons {
    flex-direction: column;
  }

  .contact-cta .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .float-contact {
    bottom: 20px;
    right: 20px;
  }

  .hero-card-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .navbar-cta {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-badge {
    font-size: 0.6875rem;
    padding: 6px 12px;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }

  .logo-tagline-nav {
    display: none;
  }

  .logo-tooltip {
    width: calc(100vw - 48px);
    left: 0;
  }
}

/* ===================================================
   AUDIO SPELER (over-sandra.html)
   =================================================== */
.audio-photo-container {
  position: relative;
  display: block;
  line-height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.audio-photo-container img {
  width: 100%;
  display: block;
}

.audio-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(212,175,55,0.88);
  border: 2px solid rgba(212,175,55,0.95);
  color: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 10;
  backdrop-filter: blur(3px);
}

.audio-play-btn svg { flex-shrink: 0; }

.audio-play-btn:hover {
  background: #D4AF37;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 32px rgba(212,175,55,0.5);
}

@keyframes audioPulse {
  0%   { box-shadow: 0 0 0 0   rgba(212,175,55,0.55); }
  65%  { box-shadow: 0 0 0 20px rgba(212,175,55,0);   }
  100% { box-shadow: 0 0 0 0   rgba(212,175,55,0);    }
}

.audio-play-btn.pulsing {
  animation: audioPulse 1.9s ease-out 3;
}

.audio-waveform {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 52px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding: 10px 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.audio-waveform.playing { opacity: 1; }

.audio-waveform span {
  display: block;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.audio-waveform.playing span { animation: waveBar 1.1s ease-in-out infinite; }

.audio-waveform span:nth-child(1)  { animation-delay: 0s;    animation-duration: 1.0s; }
.audio-waveform span:nth-child(2)  { animation-delay: 0.11s; animation-duration: 0.85s; }
.audio-waveform span:nth-child(3)  { animation-delay: 0.23s; animation-duration: 1.15s; }
.audio-waveform span:nth-child(4)  { animation-delay: 0.06s; animation-duration: 0.95s; }
.audio-waveform span:nth-child(5)  { animation-delay: 0.17s; animation-duration: 1.05s; }
.audio-waveform span:nth-child(6)  { animation-delay: 0.29s; animation-duration: 0.9s; }
.audio-waveform span:nth-child(7)  { animation-delay: 0.08s; animation-duration: 1.2s; }
.audio-waveform span:nth-child(8)  { animation-delay: 0.21s; animation-duration: 0.8s; }
.audio-waveform span:nth-child(9)  { animation-delay: 0.14s; animation-duration: 1.1s; }
.audio-waveform span:nth-child(10) { animation-delay: 0.27s; animation-duration: 0.97s; }

@keyframes waveBar {
  0%, 100% { height: 3px; }
  50%       { height: 22px; }
}

/* ===================================================
   FILOSOFIE Q&A SECTIE (over-sandra.html)
   =================================================== */
.qa-section {
  background: var(--black);
  border-top: 1px solid var(--black-border);
}

.qa-intro-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 52px;
  text-align: center;
}

.qa-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.qa-item {
  border-left: 2px solid rgba(201,168,76,0.3);
  padding-left: 28px;
}

.qa-question {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.4;
}

.qa-answer {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.85;
}

.qa-closing {
  max-width: 820px;
  margin: 56px auto 0;
  padding: 36px;
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  text-align: center;
}

.qa-closing p {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ===================================================
   QUOTE ROTATOR — homepage kaartenbak wisselaar
   =================================================== */

.quote-rotator-section {
  background: var(--black);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 72px 24px;
}

.quote-rotator-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.quote-rotator-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.06);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.quote-rotator-mark {
  display: block;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold-dim);
  line-height: 0.6;
  margin-bottom: 20px;
  opacity: 0.6;
}

.quote-rotator-text {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.65;
  min-height: 4rem;
  transition: opacity 0.55s ease;
}

.quote-rotator-text.fade-out {
  opacity: 0;
}

.quote-rotator-cta {
  display: inline-block;
  margin-top: 32px;
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 2px;
}

.quote-rotator-cta:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

/* ===================================================
   KAARTENBAK INSCHRIJFSECTIE — kennis.html
   =================================================== */

.kaartenbak-section {
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}

.kaartenbak-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.kaartenbak-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.kaartenbak-left h2 {
  margin-top: 12px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.kaartenbak-left p {
  color: var(--gray-light);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.kaartenbak-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.kaartenbak-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-light);
}

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

.kaartenbak-right {
  background: var(--black);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

@media (max-width: 768px) {
  .kaartenbak-box {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .quote-rotator-text {
    font-size: 1.2rem;
  }
}

/* ===================================================
   TOEGANKELIJKHEID — minder beweging
   =================================================== */
@media (prefers-reduced-motion: reduce) {
  .text-gold,
  .btn-scan::after {
    animation: none;
  }
  .btn-scan.pulsing,
  .audio-play-btn.pulsing {
    animation: none;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.4);
  }
  .audio-waveform.playing span { animation: none; height: 12px; }
  .fade-up {
    transition: none;
  }
  .quote-rotator-text {
    transition: none;
  }
}
