/* ============================================
   ENORO THEME — MAIN STYLES
   Colors: Gold #b69352 | Blue #103e4d
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --bg:        #0A1820;
  --bg-dark:   #071018;
  --surface:   #0f2535;
  --surface2:  #163040;
  --border:    rgba(182, 147, 82, 0.12);
  --border-lg: rgba(182, 147, 82, 0.22);
  --gold:      #b69352;
  --gold-lt:   #cba96a;
  --gold-dim:  rgba(182, 147, 82, 0.12);
  --blue:      #103e4d;
  --blue-lt:   #1a5568;
  --text:      #EDF0F2;
  --muted:     #7A94A4;
  --heading:   'Plus Jakarta Sans', sans-serif;
  --body:      'Plus Jakarta Sans', sans-serif;
  --radius:    10px;
  --radius-lg: 16px;
}

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

body {
  background: var(--bg-dark);
  color: var(--text);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: hidden;
}

/* NOISE TEXTURE */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-lt); }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--heading);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; }

p { color: var(--muted); font-weight: 300; }

/* ============ LAYOUT ============ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}

section { position: relative; z-index: 1; }

/* ============ NAVIGATION ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(7, 16, 24, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

.site-logo {
  font-family: var(--heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
}
.site-logo span { color: var(--gold); }

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

.nav-menu a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--text); }

.nav-menu .nav-cta {
  background: var(--gold);
  color: var(--bg-dark);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.nav-menu .nav-cta:hover { background: var(--gold-lt); color: var(--bg-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-lg);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--bg-dark);
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.25s, box-shadow 0.25s;
}
.btn-primary:hover {
  background: var(--gold-lt);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(182, 147, 82, 0.28);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 400;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-lg);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ============ EYEBROW LABELS ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 80px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(16, 62, 77, 0.5) 0%, transparent 70%);
  top: 50%; left: 60%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-gold {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(182,147,82,0.07) 0%, transparent 70%);
  top: 30%; left: 10%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 { margin-bottom: 24px; }

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* HERO CARD */
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border-lg);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(182,147,82,0.1), transparent 70%);
  border-radius: 50%;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(182,147,82,0.5);
}
.card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}
.metric {
  background: var(--surface2);
  border-radius: 8px;
  padding: 16px;
  border: 1px solid var(--border);
}
.metric-val {
  font-family: var(--heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.metric-lbl {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 300;
}

.bar-row { margin-bottom: 10px; }
.bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 5px;
  font-weight: 300;
}
.bar-track {
  height: 4px;
  background: var(--surface2);
  border-radius: 2px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
}

/* ============ STATS BAR ============ */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  background: var(--surface);
  position: relative;
  z-index: 1;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  text-align: center;
  padding: 0 40px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--gold); }
.stat-desc { font-size: 0.85rem; color: var(--muted); font-weight: 300; }

/* ============ DIENSTEN ============ */
.diensten-section {
  padding: 120px 0;
  position: relative;
}

.section-header { margin-bottom: 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-intro {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  font-weight: 300;
  line-height: 1.8;
}

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

.dienst-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.dienst-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s, box-shadow 0.3s;
}
.dienst-card:hover {
  border-color: var(--border-lg);
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.dienst-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.dienst-card:hover::after { transform: scaleX(1); }

.dienst-icon {
  width: 50px; height: 50px;
  border-radius: 10px;
  background: rgba(182,147,82,0.1);
  border: 1px solid rgba(182,147,82,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
}
.dienst-card h3 { margin-bottom: 12px; }
.dienst-card p { font-size: 0.92rem; line-height: 1.75; }

.dienst-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(182,147,82,0.08);
  border: 1px solid rgba(182,147,82,0.18);
  padding: 4px 10px;
  border-radius: 4px;
}

/* ============ AI SCAN ============ */
.ai-scan-section {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.scan-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Scan mock screen */
.scan-screen {
  background: var(--bg-dark);
  border: 1px solid var(--border-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.scan-topbar {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 7px;
}
.win-dot { width: 10px; height: 10px; border-radius: 50%; }
.scan-body { padding: 22px; }

.scan-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.86rem;
}
.scan-row:last-of-type { border-bottom: none; }

.scan-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  flex-shrink: 0;
  font-weight: 700;
}
.c-yes { background: rgba(182,147,82,0.15); color: var(--gold); }
.c-no  { background: rgba(255,90,90,0.12); color: #FF6B6B; }
.c-mid { background: rgba(255,180,0,0.1); color: #FFB800; }

.scan-lbl { flex: 1; color: var(--muted); font-weight: 300; font-size: 0.85rem; }

.scan-score { font-family: var(--heading); font-weight: 700; font-size: 0.85rem; }
.s-high { color: var(--gold); }
.s-low  { color: #FF6B6B; }
.s-mid  { color: #FFB800; }

.scan-result {
  margin-top: 18px;
  padding: 16px;
  background: rgba(182,147,82,0.07);
  border: 1px solid rgba(182,147,82,0.18);
  border-radius: 8px;
}
.scan-result-lbl {
  font-size: 0.68rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 6px;
}
.scan-result-txt { font-size: 0.85rem; color: var(--text); font-weight: 300; line-height: 1.65; }

/* Scan info */
.scan-info h2 { margin-bottom: 14px; }
.scan-info .section-intro { margin-bottom: 36px; }

.scan-steps { list-style: none; margin-bottom: 36px; }
.scan-steps li {
  display: flex;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}
.scan-steps li:last-child { border-bottom: none; }
.step-num {
  font-family: var(--heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 26px;
  padding-top: 3px;
  flex-shrink: 0;
}
.step-title { color: var(--text); font-weight: 500; display: block; margin-bottom: 4px; }

/* ============ TESTIMONIALS PLACEHOLDER ============ */
.testimonials-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.testimonials-placeholder {
  background: var(--surface);
  border: 1px dashed rgba(182,147,82,0.3);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
}
.placeholder-icon { font-size: 2.5rem; margin-bottom: 16px; opacity: 0.5; }
.placeholder-text { font-size: 1rem; color: var(--muted); font-weight: 300; max-width: 440px; margin: 0 auto; line-height: 1.75; }
.placeholder-note {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--gold);
  background: rgba(182,147,82,0.08);
  border: 1px solid rgba(182,147,82,0.18);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* TESTIMONIALS GRID (for when real ones are added) */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 18px; right: 24px;
  font-size: 4rem;
  font-family: var(--heading);
  color: rgba(182,147,82,0.15);
  line-height: 1;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border-lg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
}
.author-name { font-size: 0.88rem; font-weight: 500; color: var(--text); }
.author-role { font-size: 0.75rem; color: var(--muted); font-weight: 300; }

/* ============ CTA STRIP ============ */
.cta-strip {
  padding: 90px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  padding: 64px 72px;
  background: var(--bg-dark);
  border: 1px solid var(--border-lg);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(16,62,77,0.6), transparent 70%);
  pointer-events: none;
}
.cta-box h2 { margin-bottom: 12px; }
.cta-box .section-intro { margin: 0; max-width: 500px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; flex-shrink: 0; }
.trust-note {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 300;
}
.trust-note::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ============ CONTACT ============ */
.contact-section { padding: 120px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-intro { margin-bottom: 40px; font-size: 1rem; line-height: 1.8; }

.contact-list { list-style: none; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 300;
}
.contact-list li:last-child { border-bottom: none; }
.contact-list a { color: var(--gold); }
.contact-list a:hover { color: var(--gold-lt); }

.contact-ico {
  width: 38px; height: 38px;
  background: var(--surface);
  border: 1px solid var(--border-lg);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* CONTACT FORM */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-wrap h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.contact-form-wrap > p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 28px;
  font-weight: 300;
}

.wpcf7-form,
.enoro-form { display: flex; flex-direction: column; gap: 16px; }

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

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

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea,
.wpcf7-form select {
  background: var(--bg-dark);
  border: 1px solid var(--border-lg);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(182,147,82,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(122,148,164,0.5); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--surface); color: var(--text); }

.form-submit {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.form-submit .btn-primary { flex: 1; justify-content: center; }

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: rgba(182,147,82,0.07);
  border: 1px solid rgba(182,147,82,0.2);
  border-radius: 8px;
  color: var(--gold);
  font-size: 0.9rem;
}

/* ============ FOOTER ============ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  background: var(--bg-dark);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand .site-logo { font-size: 1.2rem; }
.footer-brand p { font-size: 0.8rem; color: var(--muted); font-weight: 300; margin-top: 4px; }

.footer-links { display: flex; gap: 30px; list-style: none; }
.footer-links a { font-size: 0.82rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

.footer-legal { font-size: 0.78rem; color: var(--muted); font-weight: 300; }

/* ============ WORDPRESS MENU OVERRIDES ============ */
.nav-menu .menu-item a { display: inline-flex; }
#menu-main-menu { display: flex; align-items: center; gap: 36px; list-style: none; }
#menu-main-menu li { position: relative; }
#menu-main-menu li.menu-item-has-children:hover > ul { display: block; }
#menu-main-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: var(--surface);
  border: 1px solid var(--border-lg);
  border-radius: var(--radius);
  min-width: 180px;
  padding: 8px 0;
  margin-top: 8px;
  z-index: 300;
}
#menu-main-menu .sub-menu li a {
  display: block;
  padding: 10px 18px;
  color: var(--muted);
  font-size: 0.88rem;
}
#menu-main-menu .sub-menu li a:hover { color: var(--gold); }

/* ============ SCROLL ANIMATIONS ============ */
.scroll-fade {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .cta-box { grid-template-columns: 1fr; gap: 40px; padding: 48px; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
}
/* ============================================
   RESPONSIVE
   ============================================ */

/* ---- DESKTOP: show WP menu, hide mobile nav ---- */
.nav-desktop  { display: flex; }
.nav-desktop-cta {
  display: inline-flex;
  font-size: 0.88rem !important;
  padding: 10px 20px !important;
}
.nav-mobile   { display: none; }
.nav-toggle   { display: none !important; }

/* ---- TABLET ---- */
@media (max-width: 1024px) {
  .cta-box { grid-template-columns: 1fr; gap: 40px; padding: 48px; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
}

/* ---- MOBILE ---- */
@media (max-width: 900px) {
  .container { padding: 0 24px; }

  /* --- Header: stack logo above mobile nav --- */
  .site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: rgba(7,16,24,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }

  .nav-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 20px 0;
    max-width: 100%;
  }

  .site-logo {
    font-size: 1.3rem;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
  }

  /* Hide desktop nav + CTA */
  .nav-desktop     { display: none !important; }
  .nav-desktop-cta { display: none !important; }
  .nav-toggle      { display: none !important; }

  /* --- Mobile nav: horizontal row of links --- */
  .nav-mobile {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 12px;
    gap: 0;
    width: 100%;
  }

  .nav-mobile-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-family: var(--body);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 6px;
    transition: color 0.15s;
    white-space: nowrap;
    position: relative;
  }

  /* Underline on current page — matches desktop style */
  .nav-mobile-link:hover { color: var(--text); }

  /* Highlight the active page link with gold underline */
  .nav-mobile a[href$="<?php echo $_SERVER['REQUEST_URI']; ?>"],
  .nav-mobile-link.current { color: var(--gold); }

  /* --- Page body: account for taller header --- */
  .hero,
  .page-hero-scan,
  .contact-section,
  .diensten-section + *,
  body > *:first-of-type { }

  .hero { padding-top: 160px !important; }
  .page-hero-scan { padding-top: 160px !important; }

  /* --- Layout resets --- */
  .hero-grid,
  .scan-layout,
  .contact-grid,
  .ai-teaser-inner { grid-template-columns: 1fr; }

  .efficiency-card { display: none; }
  .teaser-visual   { display: none; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) {
    grid-column: 1/-1;
    border-top: 1px solid var(--border);
    border-right: none;
    padding-top: 32px;
    margin-top: 8px;
  }

  .diensten-grid    { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .footer-inner     { flex-direction: column; gap: 32px; }

  .result-top       { grid-template-columns: 1fr; }
  .direct-contact   { grid-template-columns: 1fr; }
  .result-cta-btns  { flex-direction: column; align-items: flex-start; }
  .cta-box          { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
}

/* ---- SMALL PHONES ---- */
@media (max-width: 400px) {
  .nav-mobile-link {
    font-size: 0.78rem;
    padding: 6px 6px;
  }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
  }
  .stat-item:last-child { border-bottom: none; }
  .contact-form-wrap { padding: 24px; }
}

/* ---- WordPress active menu item: gold underline ---- */
#menu-main-menu .current-menu-item > a,
#menu-main-menu .current_page_item > a {
  color: var(--gold);
  position: relative;
}
#menu-main-menu .current-menu-item > a::after,
#menu-main-menu .current_page_item > a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
