/* ============================================
   UNLATCHED — DESIGN SYSTEM (B2B LIGHT THEME)
   ============================================ */

:root {
  --bg-base: #ffffff;
  --bg-surface: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --border: #e2e8f0;
  --border-hover: #cbd5e1;

  --accent: #ea580c; /* Orange */
  --accent-glow: rgba(234, 88, 12, 0.15);
  --accent-2: #2563eb; /* Blue */
  --accent-2-glow: rgba(37, 99, 235, 0.1);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;

  --font-sans: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Outfit', sans-serif;

  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 160px 0; /* Lots of whitespace */
  position: relative;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 10px 0;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  padding: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.8px;
  transition: var(--transition);
}

.nav-logo:hover { opacity: 0.8; }

.logo-icon {
  font-size: 22px;
  color: var(--accent-2); /* Blue icon */
}

.logo-text { color: var(--text-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--bg-surface);
}

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 8px;
  font-weight: 600;
}

.nav-cta:hover {
  background: #c2410c !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px var(--accent-glow);
}

.btn-primary:hover {
  background: #c2410c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.3);
}

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

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--text-secondary);
  background: var(--bg-surface);
}

.btn-full { width: 100%; }

/* ============================================
   SECTION TYPOGRAPHY
   ============================================ */

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-2); /* Blue label */
  margin-bottom: 24px;
}

.section-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.section-title em {
  font-family: var(--font-accent);
  font-style: normal;
  font-weight: 800;
  color: var(--accent-2);
}

.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

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

.section-header .section-sub {
  margin: 0 auto;
}

.section-body {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.04), transparent 50%),
              radial-gradient(circle at bottom left, rgba(234, 88, 12, 0.03), transparent 50%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  top: -100px; left: -200px;
  animation: orb-float 12s ease-in-out infinite;
}

.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.06) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  animation: orb-float 15s ease-in-out infinite reverse;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 80px 24px 160px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
  animation: badge-in 0.8s ease both;
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 10px var(--accent-2);
  animation: pulse 2s ease-in-out infinite;
}

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

@keyframes badge-in {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 32px;
  animation: title-in 0.9s ease 0.1s both;
  color: #0f172a;
}

.hero-italic {
  font-family: var(--font-accent);
  font-style: normal;
  font-weight: 900;
  color: var(--accent-2);
  letter-spacing: -1px;
}

@keyframes title-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 56px;
  line-height: 1.7;
  animation: title-in 0.9s ease 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 80px;
  animation: title-in 0.9s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 56px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  animation: title-in 0.9s ease 0.4s both;
}

.stat { text-align: center; padding: 0 40px; }

.stat-num {
  display: block;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--accent-2);
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: title-in 1s ease 0.8s both;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scroll-line 1.5s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0.3) translateY(20px); }
}

/* ============================================
   LOGOS BAR
   ============================================ */

.logos-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
  overflow: hidden;
}

.logos-label {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.logos-track {
  display: flex;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logos-slide {
  display: flex;
  flex-shrink: 0;
  gap: 80px;
  padding-right: 80px;
  animation: slide-left 25s linear infinite;
}

.logo-item {
  font-size: 18px;
  font-weight: 700;
  color: #94a3b8;
  white-space: nowrap;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.logo-item:hover { color: var(--text-secondary); }

@keyframes slide-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ============================================
   OVER SECTION
   ============================================ */

.over { background: var(--bg-base); }

.over-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
}

.over-text { padding-right: 24px; }

.over-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.chip {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-2);
  transition: var(--transition);
}

.chip:hover {
  background: #e2e8f0;
}

.over-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.over-abstract-shape {
  width: 100%;
  height: 100%;
  background: #f8fafc;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.over-abstract-shape::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  box-shadow: inset 0 0 0 4px rgba(234, 88, 12, 0.8), inset 0 0 40px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.3) 0%, transparent 25%, transparent 75%, rgba(234, 88, 12, 0.4) 100%);
  z-index: 10;
  pointer-events: none;
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.15) saturate(1.3);
  position: relative;
  z-index: 2;
}

.shape-orb {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--accent-2);
  opacity: 0.1;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
}

/* ============================================
   METHODE / PILLARS
   ============================================ */

.methode {
  background: var(--bg-surface);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar-card {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
  border: none;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.15);
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(37, 99, 235, 0.25);
}

.pillar-num {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.pillar-icon {
  font-size: 40px;
  margin-bottom: 24px;
}

.pillar-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: #ffffff;
}

.pillar-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  flex: 1;
}

.pillar-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pillar-list li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pillar-list li::before {
  content: '✓';
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
}

/* ============================================
   RESULTATEN / TESTIMONIALS
   ============================================ */

.resultaten { background: var(--bg-base); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: var(--font-serif);
  font-size: 100px;
  color: rgba(37, 99, 235, 0.05);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: #fff;
}

.t-large {
  grid-row: span 1;
  background: #fff;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-md);
}

.t-stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.t-quote {
  font-size: 18px;
  color: var(--text-primary);
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 32px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.t-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.t-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.t-role {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: var(--bg-surface);
  overflow: hidden;
  padding: 160px 0;
  position: relative;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.05), transparent 60%);
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 64px;
  border-radius: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.cta-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.cta-title em {
  font-family: var(--font-accent);
  font-style: normal;
  font-weight: 900;
  color: var(--accent-2);
}

.cta-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ============================================
   FORM
   ============================================ */

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

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

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

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 16px;
  color: var(--text-primary);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-success {
  text-align: center;
  padding: 48px 32px;
}

.success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #f0fdf4;
  border: 4px solid #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #22c55e;
  margin: 0 auto 24px;
  animation: success-bounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes success-bounce {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

.form-success h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.form-success p {
  color: var(--text-secondary);
  font-size: 18px;
}

/* ============================================
   QUIZ / GAMIFIED FORM
   ============================================ */

.quiz-progress {
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 99px;
  margin: 28px 0 8px;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  width: 33.33%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  border-radius: 99px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-step-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.quiz-step {
  display: none;
  animation: quiz-fade-in 0.35s ease both;
}

.quiz-step.active {
  display: block;
}

@keyframes quiz-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-question {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.4;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.quiz-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-sans);
  text-align: center;
}

.quiz-option:hover {
  border-color: var(--accent-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.quiz-option.selected {
  border-color: var(--accent-2);
  background: #eff6ff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.option-icon {
  font-size: 28px;
  line-height: 1;
}

.option-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.quiz-next {
  width: 100%;
}

.quiz-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

.quiz-nav {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.quiz-nav .btn {
  flex: 1;
}

.form-consent {
  margin-top: 4px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-2);
  margin-top: 2px;
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .quiz-options { grid-template-columns: 1fr; }
}

/* ============================================
   WIZARD OVERLAY
   ============================================ */

.wizard-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.wizard-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.wizard-card {
  background: #ffffff;
  border-radius: 24px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.wizard-overlay.open .wizard-card {
  transform: translateY(0) scale(1);
}

.wizard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.wizard-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  letter-spacing: -0.8px;
  font-weight: 800;
  color: var(--text-primary);
}

.wizard-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.wizard-close:hover {
  background: #f1f5f9;
  color: var(--text-primary);
}

.wizard-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.wizard-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s ease;
}

.wizard-dot.active {
  background: var(--accent-2);
  width: 24px;
  border-radius: 4px;
}

.wizard-dot.done {
  background: #22c55e;
}

.wizard-step-counter {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Wizard Steps */
.wizard-step {
  display: none;
  animation: quiz-fade-in 0.3s ease both;
}

.wizard-step.active {
  display: block;
}

.wizard-question {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 6px;
}

.wizard-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Option rows (like marketingkiezer but Unlatched branded) */
.wizard-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wizard-opt {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: #f8fafc;
  border: 2px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  transition: all 0.18s ease;
  font-family: var(--font-sans);
  width: 100%;
}

.wizard-opt:hover {
  border-color: var(--accent-2);
  background: #eff6ff;
  transform: translateX(4px);
}

.wizard-opt.selected {
  border-color: var(--accent-2);
  background: #eff6ff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.wopt-icon {
  font-size: 26px;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.wopt-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.wopt-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.wizard-back {
  margin-top: 16px;
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  font-family: var(--font-sans);
  transition: color 0.15s ease;
}

.wizard-back:hover { color: var(--text-primary); }

/* Step 3 form fields */
.wizard-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.wizard-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.wizard-field input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: #f8fafc;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.wizard-field input:focus {
  outline: none;
  border-color: var(--accent-2);
  background: #fff;
}

.wizard-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
}

.wizard-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent-2);
  margin-top: 3px;
  flex-shrink: 0;
}

.wizard-footer-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wizard-success {
  text-align: center;
  padding: 24px 0;
}

@media (max-width: 600px) {
  .wizard-card { padding: 28px 20px; }
  .wizard-question { font-size: 19px; }
}

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

.footer {
  background: #f1f5f9;
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-top {
  display: flex;
  gap: 100px;
  margin-bottom: 64px;
}

.footer-brand {
  flex: 1;
}

.footer-tagline {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 16px;
  line-height: 1.6;
}

.footer-links-cols {
  display: flex;
  gap: 80px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 24px;
}

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

.footer-col a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-col a:hover { color: var(--accent-2); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .over-grid { grid-template-columns: 1fr; gap: 64px; }
  .over-text { padding-right: 0; }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 100px 0; }

  .nav-links { 
    display: none; 
    position: fixed; 
    top: 70px; 
    left: 0; 
    right: 0; 
    background: #fff; 
    flex-direction: column; 
    padding: 32px; 
    gap: 24px; 
    border-bottom: 1px solid var(--border); 
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 18px; width: 100%; text-align: center; }
  .hamburger { display: flex; }

  .hero { padding-top: 120px; }
  .hero-title { font-size: 40px; }
  .hero-stats { padding: 32px; flex-direction: column; gap: 24px; }
  .stat-divider { width: 100%; height: 1px; }
  .stat { padding: 0; }
  
  .cta-inner { padding: 40px 24px; border-radius: 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links-cols { flex-wrap: wrap; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  .hero-title { letter-spacing: -1px; }
}
