/* ═══════════════════════════════════════════════════════════
   TM-OUTREACH — STYLESHEET
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --color-bg: #1a1a1a;
  --color-surface: #2b2b2b;
  --color-accent: #ff761f;
  --color-accent-dim: rgba(255, 118, 31, 0.15);
  --color-text: #f0f0f0;
  --color-text-muted: #888888;
  --color-border: rgba(255, 118, 31, 0.2);

  --font-headline: 'Geist', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container-max: 1140px;
  --section-padding: 120px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-pill: 100px;

  --transition: 0.25s ease;
  --shadow-glow: 0 0 40px rgba(255, 118, 31, 0.25);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Grain Texture ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-accent); border-radius: 2px; }

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--font-headline);
  line-height: 1.15;
  font-weight: 800;
}

h3 { font-weight: 700; }

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

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

/* ── Utility Classes ── */
.accent { color: var(--color-accent); }
.br-desktop { display: block; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--color-accent);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 118, 31, 0.4);
}

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

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255, 118, 31, 0.4);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-dim);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-xl {
  padding: 20px 48px;
  font-size: 18px;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   SECTION SHARED STYLES
   ═══════════════════════════════════════════════════════════ */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

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

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--color-text);
  max-width: 700px;
  margin: 0 auto;
}

.section-intro {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR — FLOATING ISLAND
   ═══════════════════════════════════════════════════════════ */
.nav-island {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 960px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(26, 26, 26, 0.85);
  border: 1px solid var(--color-border);
  transition: padding var(--transition), border-color var(--transition);
}

.nav-island.scrolled {
  border-color: rgba(255, 118, 31, 0.35);
  background: rgba(20, 20, 20, 0.95);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  gap: 16px;
  transition: padding var(--transition);
}

.nav-island.scrolled .nav-inner {
  padding: 10px 28px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Logo images */
.logo-img {
  display: block;
  height: auto;
}

.logo-img--nav {
  width: 140px;
}

.logo-img--footer {
  width: 160px;
}

/* Fallback: invert to white on dark bg if SVG renders on transparent */
.logo-img--nav,
.logo-img--footer {
  filter: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--color-text);
}

.btn-nav {
  padding: 10px 20px;
  font-size: 14px;
  flex-shrink: 0;
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 24px;
  cursor: pointer;
  transition: color var(--transition);
}

.mobile-close:hover {
  color: var(--color-accent);
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-link {
  font-family: var(--font-headline);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-text);
  transition: color var(--transition);
}

.mobile-link:hover {
  color: var(--color-accent);
}

.mobile-cta {
  margin-top: 8px;
}

.mobile-overlay {
  display: none;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 560px;
  background: radial-gradient(ellipse at center, rgba(255, 118, 31, 0.38) 0%, transparent 65%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.45; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.22); }
}

.hero-glow {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center bottom, rgba(255, 118, 31, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-h1 {
  font-size: clamp(44px, 8vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  max-width: 800px;
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ── Scroll Indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-arrow {
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(255, 118, 31, 0.5);
  border-bottom: 2px solid rgba(255, 118, 31, 0.5);
  transform: rotate(45deg);
  animation: arrowBounce 1.8s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════
   PROBLEEM SECTIE
   ═══════════════════════════════════════════════════════════ */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  padding: 36px 32px;
  position: relative;
  isolation: isolate;
  transition: transform var(--transition), box-shadow var(--transition);
}

.problem-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from calc((var(--start, 0) - var(--spread, 28)) * 1deg),
    transparent 0deg,
    rgba(255, 118, 31, 0.85) calc(var(--spread, 28) * 1deg),
    rgba(255, 118, 31, 0.4) calc(var(--spread, 28) * 1.6deg),
    transparent calc(var(--spread, 28) * 2deg)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: var(--active, 0);
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.card-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-accent);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.problem-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--color-text);
}

.problem-card p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   DIENSTEN SECTIE
   ═══════════════════════════════════════════════════════════ */
.diensten-section {
  background: var(--color-bg);
}

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

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  padding: 36px 32px;
  position: relative;
  isolation: isolate;
  transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from calc((var(--start, 0) - var(--spread, 28)) * 1deg),
    transparent 0deg,
    rgba(255, 118, 31, 0.85) calc(var(--spread, 28) * 1deg),
    rgba(255, 118, 31, 0.4) calc(var(--spread, 28) * 1.6deg),
    transparent calc(var(--spread, 28) * 2deg)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: var(--active, 0);
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.service-card:hover {
  background: #313131;
  transform: translateY(-3px);
}

.service-card--wide {
  grid-column: 1 / -1;
  max-width: 50%;
  margin: 0 auto;
  width: 100%;
  padding: 44px 40px;
  background: #2f2f2f;
}

.service-icon {
  color: var(--color-accent);
  margin-bottom: 20px;
  transition: transform var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--color-text);
}

.service-card p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   DIENSTEN CTA
   ═══════════════════════════════════════════════════════════ */
.diensten-cta {
  background: var(--color-bg);
  padding: 0 0 80px;
}

.diensten-cta-inner {
  display: flex;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   WERKWIJZE
   ═══════════════════════════════════════════════════════════ */
.werkwijze-section {
  background: var(--color-surface);
}

.werkwijze-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
  padding-top: 32px;
}

/* Connecting line */
.werkwijze-line {
  position: absolute;
  top: 52px;
  left: calc(16.67% + 12px);
  right: calc(16.67% + 12px);
  height: 2px;
  background: var(--color-accent);
  transform-origin: left center;
  z-index: 0;
}

.werkwijze-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background: var(--color-accent);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--color-accent-dim);
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   FAQ SECTIE
   ═══════════════════════════════════════════════════════════ */
.faq-section {
  background: var(--color-bg);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--color-accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  border-top: 1px solid transparent;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  border-top-color: rgba(255, 118, 31, 0.2);
}

.faq-answer p {
  padding: 20px 28px 28px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTIE (JOUW GROEI)
   ═══════════════════════════════════════════════════════════ */
.cta-sectie {
  padding: 140px 40px;
  text-align: center;
  background: #1a1a1a;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.cta-sectie .sectie-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 3px;
  color: #ff761f;
  text-transform: uppercase;
}

.cta-sectie h2 {
  font-family: var(--font-headline);
  font-size: 48px;
  line-height: 1.15;
  margin: 0;
  color: var(--color-text);
}

.cta-word {
  display: inline-block;
}

.vinkjes {
  display: flex;
  flex-direction: row;
  gap: 40px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #888888;
  margin-top: 0;
}

@media (max-width: 768px) {
  .cta-sectie h2 { font-size: 32px; }
  .vinkjes { flex-direction: column; gap: 12px; align-items: center; }
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTIE
   ═══════════════════════════════════════════════════════════ */
.cta-section {
  padding: 140px 0;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.cta-heading {
  font-size: clamp(36px, 6vw, 64px);
}

.cta-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--color-text-muted);
  max-width: 520px;
  line-height: 1.7;
}

.cta-confirm {
  display: flex;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-text-muted);
  flex-wrap: wrap;
  justify-content: center;
}

.cta-confirm span {
  color: var(--color-accent);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid rgba(255, 118, 31, 0.2);
  padding: 80px 40px 40px;
}

/* ── Grid bovenste rij ── */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

/* ── Kolom basis ── */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 0;
}

/* ── Kolom 1: Brand ── */
.footer-col--brand {
  gap: 12px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
}

.footer-tagline {
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.footer-contact a {
  font-size: 14px;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: #ffffff;
}

/* ── Kolom 2: Nav ── */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

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

/* ── Kolom 3: Social + CTA ── */
.footer-social {
  display: flex;
  gap: 8px;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--color-text-muted);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.social-icon:hover {
  color: var(--color-accent);
  border-color: var(--color-border);
  background: var(--color-accent-dim);
}

.btn-footer-cta {
  align-self: flex-start;
  font-size: 13px;
  padding: 10px 20px;
  margin-top: 4px;
}

/* ── Scheidingslijn ── */
.footer-divider {
  border-top: 1px solid rgba(255, 118, 31, 0.15);
}

/* ── Onderste rij ── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* ═══════════════════════════════════════════════════════════
   OVER ONS SECTIE
   ═══════════════════════════════════════════════════════════ */
.over-ons-section {
  background: var(--color-bg);
}

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

.over-ons-label {
  font-family: var(--font-mono);
  color: var(--color-accent);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.over-ons-tekst .section-heading {
  margin-bottom: 28px;
}

.over-ons-intro {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.over-ons-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.over-ons-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.over-ons-bullets li {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.bullet-check {
  color: var(--color-accent);
  font-size: 16px;
  flex-shrink: 0;
}

/* Foto placeholder */
.foto-placeholder {
  width: 420px;
  height: 480px;
  background: #2b2b2b;
  border-radius: 16px;
  border: 2px solid rgba(255, 118, 31, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.foto-thuto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.foto-placeholder:hover .foto-thuto {
  transform: scale(1.04);
}

.foto-label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-text-muted);
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (< 1024px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 96px;
  }

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

  .service-card--wide {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (< 768px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }

  /* Nav */
  .nav-links,
  .btn-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero-h1 {
    font-size: 44px;
  }

  .br-desktop {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .hero-buttons .btn-lg {
    text-align: center;
  }

  /* Problems */
  .problems-grid {
    grid-template-columns: 1fr;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card--wide {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  /* Over ons */
  .over-ons-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .over-ons-foto {
    order: -1;
  }

  .foto-placeholder {
    width: 100%;
    height: 300px;
  }

  /* Werkwijze */
  .werkwijze-steps {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 0;
  }

  .werkwijze-line {
    display: none;
  }

  .werkwijze-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }

  .step-number {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  /* Footer */
  .footer {
    padding: 60px 24px 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-col--brand {
    align-items: center;
  }

  .footer-contact {
    align-items: center;
  }

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

  .btn-footer-cta {
    align-self: center;
  }

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

  .footer-legal {
    gap: 20px;
  }

  /* CTA section */
  .cta-confirm {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

}

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-arrow {
    animation: none;
  }

  .hero-badge .dot {
    animation: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   BOOKING MODAL
   ═══════════════════════════════════════════════════════════ */
.booking-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

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

.booking-modal {
  position: relative;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  background: #ffffff;
  border-radius: 16px;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(255, 118, 31, 0.3);
  transform: translateY(14px);
  transition: transform 0.25s ease;
}

.booking-overlay.is-open .booking-modal {
  transform: translateY(0);
}

.booking-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  z-index: 10;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1;
}

.booking-close:hover {
  background: rgba(255, 118, 31, 0.15);
  color: #ff761f;
}

.booking-modal iframe {
  width: 100%;
  min-height: 620px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .booking-modal {
    max-height: 95vh;
    border-radius: 12px;
  }

  .booking-modal iframe {
    min-height: 580px;
  }
}
