/* ═══════════════════════════════════════════════════════════
   BOEKHOUDLIVE — SHARED PREMIUM STYLES
   DSC-level. Matches the homepage hero quality across all pages.
   ═══════════════════════════════════════════════════════════ */

:root {
  --navy: #08173A;
  --navy-mid: #102352;
  --navy-deep: #050D20;
  --blue: #1848C8;
  --blue-light: #4F7FEC;
  --blue-glow: rgba(24,72,200,0.18);
  --orange: #F5680A;
  --orange-light: #FF8533;
  --orange-soft: rgba(245,104,10,0.12);
  --orange-dark: #d95800;
  --gold: #E8A422;
  --purple: #6322D8;
  --teal: #0DB5A6;
  --green: #0a9e8a;
  --whatsapp: #25D366;
  --white: #FFFFFF;
  --off-white: #F6F8FF;
  --gray-50: #F9FAFB;
  --gray-100: #F0F2F8;
  --gray-200: #DDE1EE;
  --gray-300: #C5CCDD;
  --gray-400: #8892AA;
  --gray-500: #5C6680;
  --gray-600: #3F4658;
  --text: #0D1526;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --shadow-sm: 0 2px 12px rgba(8,23,58,0.07);
  --shadow: 0 8px 40px rgba(8,23,58,0.11);
  --shadow-lg: 0 24px 80px rgba(8,23,58,0.18);
  --shadow-glow: 0 12px 40px rgba(245,104,10,0.18);
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.6; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float-soft { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-8px) rotate(-1.5deg); } }

/* ── NAV ── */
nav.main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 40px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(246,248,255,0.85);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid rgba(221,225,238,0.5);
  transition: all .3s;
}
nav.main-nav.scrolled {
  background: rgba(246,248,255,0.95);
  box-shadow: 0 4px 30px rgba(8,23,58,0.06);
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 800;
  color: var(--navy); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.02em;
}
.nav-logo:hover { text-decoration: none; }
.nav-logo-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange);
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(245,104,10,0.18);
  animation: pulse 2s infinite;
}
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  color: var(--gray-500);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color .2s;
  position: relative;
}
.nav-links a:hover { color: var(--navy); text-decoration: none; }
.nav-links a.offerte-link {
  color: white !important;
  background: linear-gradient(135deg, var(--orange) 0%, #FF8533 100%);
  font-weight: 800;
  padding: 7px 16px !important;
  border-radius: 100px;
  font-size: 0.82rem !important;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(245,104,10,0.3);
  transition: all .2s;
  display: inline-block;
}
.nav-links a.offerte-link:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 20px rgba(245,104,10,0.45);
  color: white !important;
}
.nav-links a.offerte-link.active { color: white !important; }
.nav-links a.offerte-link.active::after { display: none; }
.nav-links a.active { color: var(--navy); font-weight: 700; }
.nav-links a.active::after {
  content: ''; position: absolute;
  bottom: -22px; left: 0; right: 0;
  height: 2px; background: var(--orange);
  border-radius: 100px;
}
.nav-actions { display: flex; gap: 10px; align-items: center; }
.lang-toggle {
  background: var(--gray-100); border: none; border-radius: 10px;
  padding: 7px 14px; font-size: 0.78rem; font-weight: 600;
  cursor: pointer; color: var(--gray-600); transition: all .2s;
  font-family: var(--font-body);
}
.lang-toggle:hover { background: var(--blue); color: white; }
.btn-nav {
  background: var(--orange); color: white; border: none;
  border-radius: 12px; padding: 11px 22px;
  font-size: 0.85rem; font-weight: 700;
  cursor: pointer; transition: all .25s;
  text-decoration: none; font-family: var(--font-body);
  display: inline-block;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(245,104,10,0.28);
}
.btn-nav:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(245,104,10,0.4);
  text-decoration: none;
}

.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; background: transparent;
  border: 1.5px solid var(--gray-200); border-radius: 8px;
  cursor: pointer; padding: 6px;
}
.nav-hamburger span {
  display: block; height: 2px; background: var(--navy);
  border-radius: 2px; transition: all .25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobileNavOverlay {
  display: none; position: fixed; inset: 0;
  background: rgba(8,23,58,0.6); z-index: 195;
  backdrop-filter: blur(4px);
}
#mobileNavMenu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  z-index: 196; background: white;
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 24px 24px;
  box-shadow: 0 8px 40px rgba(8,23,58,0.15);
}
#mobileNavMenu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
#mobileNavMenu ul a {
  display: block; padding: 12px 8px;
  color: var(--navy); text-decoration: none;
  font-weight: 600; font-size: 1rem;
  border-bottom: 1px solid var(--gray-100);
}
#mobileNavMenu ul li:last-child a { border-bottom: 0; }
#mobileNavMenu .mobile-cta {
  display: block; background: var(--orange); color: white;
  text-align: center; padding: 14px; border-radius: 12px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
}

/* ── PAGE HEADER (DSC-style premium) ── */
.page-header {
  margin-top: 68px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-deep) 100%);
  color: white;
  padding: 110px 32px 100px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.page-header::after {
  content: ''; position: absolute;
  bottom: -200px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,34,216,0.22), transparent 70%);
  pointer-events: none;
}
.ph-glow-orange {
  position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,104,10,0.18), transparent 70%);
  pointer-events: none;
}
.ph-glow-blue {
  position: absolute; top: 40%; right: -50px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(24,72,200,0.2), transparent 70%);
  pointer-events: none;
}
.page-header-inner {
  max-width: 1120px; margin: 0 auto;
  position: relative; z-index: 1;
}
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(245,104,10,0.12);
  border: 1px solid rgba(245,104,10,0.3);
  padding: 7px 14px; border-radius: 100px;
  color: var(--orange);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.page-eyebrow .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,104,10,0.25);
  animation: pulse 1.6s infinite;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  max-width: 880px;
}
.page-header h1 em {
  font-style: normal; font-weight: 800;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-header p.lead {
  font-size: 1.1rem; line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 660px;
  font-weight: 400;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--orange); color: white;
  border: none; border-radius: 14px;
  padding: 16px 28px;
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: all .25s;
  text-decoration: none; font-family: var(--font-body);
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(245,104,10,0.3);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: translateX(-100%); transition: transform .6s;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(245,104,10,0.45);
  text-decoration: none;
}
.btn-primary:hover::before { transform: translateX(100%); }

.btn-ghost {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--gray-200);
  border-radius: 14px;
  padding: 14.5px 26px;
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: all .25s;
  text-decoration: none; font-family: var(--font-body);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover {
  background: var(--navy); color: white;
  border-color: var(--navy);
  text-decoration: none;
}

.btn-dark-ghost {
  background: rgba(255,255,255,0.05);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 14.5px 26px;
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: all .25s;
  text-decoration: none; font-family: var(--font-body);
  display: inline-flex; align-items: center; gap: 8px;
  backdrop-filter: blur(10px);
}
.btn-dark-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  text-decoration: none;
}

/* ── SECTION ── */
.section { padding: 110px 32px; position: relative; }
.section.alt { background: white; }
.section-inner { max-width: 1120px; margin: 0 auto; position: relative; z-index: 1; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2.6px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
}
.section-eyebrow::before {
  content: ''; position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 18px; height: 1.5px;
  background: var(--blue);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 800; line-height: 1.12;
  color: var(--navy); letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  color: var(--gray-500); font-size: 1.05rem;
  max-width: 600px; line-height: 1.7;
}
.section-head .section-eyebrow { padding-left: 0; }
.section-head .section-eyebrow::before { display: none; }
.section-head .section-sub { margin: 0 auto; }

/* ── CARDS ── */
.card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245,104,10,0.15), rgba(245,104,10,0.05));
  border: 1px solid rgba(245,104,10,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--orange);
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 800;
  color: var(--navy); margin-bottom: 12px;
  letter-spacing: -0.018em;
}
.card p {
  color: var(--gray-600); font-size: 0.95rem;
  line-height: 1.7;
}

.card-dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: white;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative; overflow: hidden;
}
.card-dark::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(245,104,10,0.18), transparent 70%);
  pointer-events: none;
}
.card-dark h3 { color: white; font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; position: relative; }
.card-dark p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.7; position: relative; }

/* ── PRICE BADGE ── */
.price-badge {
  display: inline-flex; align-items: baseline; gap: 4px;
  background: var(--orange-soft);
  color: var(--orange);
  padding: 5px 14px;
  border-radius: 100px;
  font-weight: 700; font-size: 0.8rem;
  border: 1px solid rgba(245,104,10,0.2);
}
.price-badge .euro { font-size: 0.72rem; }
.price-badge .num { font-size: 0.95rem; font-weight: 800; }

/* ── STATS ── */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 26px 22px;
  text-align: center;
  transition: all .25s;
}
.stat:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 800;
  color: var(--orange);
  line-height: 1; margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-lbl { font-size: 0.82rem; color: var(--gray-500); font-weight: 500; }

/* ── DIVIDER QUOTE ── */
.divider-section {
  text-align: center; padding: 80px 32px;
  background: linear-gradient(180deg, transparent 0%, var(--gray-100) 100%);
}
.divider-section .divider-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.2;
  max-width: 760px;
  margin: 0 auto;
}
.divider-section .divider-quote em {
  font-style: normal;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-deep) 100%);
  padding: 110px 32px;
  color: white;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.final-cta::after {
  content: ''; position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(245,104,10,0.15), transparent 70%);
  pointer-events: none;
}
.final-cta-inner {
  max-width: 760px; margin: 0 auto;
  text-align: center; position: relative; z-index: 1;
}
.final-cta-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,104,10,0.12);
  border: 1px solid rgba(245,104,10,0.25);
  padding: 6px 14px; border-radius: 100px;
  color: var(--orange);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  margin-bottom: 22px;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.final-cta h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.final-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.7;
}
.final-cta-buttons {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}

/* ── FOOTER TOP BAR ── */
.footer-top-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-top-bar::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.footer-top-inner {
  max-width: 1120px; margin: 0 auto;
  padding: 32px 40px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
  gap: 36px; align-items: center;
  position: relative; z-index: 1;
}
.footer-location { display: flex; align-items: center; gap: 14px; }
.footer-loc-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(245,104,10,0.18);
  border: 1px solid rgba(245,104,10,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-loc-label {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.footer-loc-name {
  color: white; font-weight: 800;
  font-size: 1rem; font-family: var(--font-display);
  margin-bottom: 2px;
}
.footer-loc-sub { color: rgba(255,255,255,0.45); font-size: 0.78rem; }
.footer-info-item .footer-loc-label { color: rgba(255,255,255,0.5); }
.footer-info-item-text { color: white; font-weight: 700; font-size: 0.92rem; }

/* ── FOOTER ── */
footer {
  background: var(--navy-deep);
  padding: 56px 32px 28px;
  position: relative;
  overflow: hidden;
}
/* When site-footer class active: transparent so .footer-bg-image shows through */
footer.site-footer { background: transparent; }
footer::before {
  content: ''; position: absolute;
  top: -200px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,34,216,0.1), transparent 70%);
  pointer-events: none;
}
.footer-inner { max-width: 1120px; margin: 0 auto; position: relative; z-index: 1; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .nav-logo {
  color: white; font-size: 1.3rem;
  margin-bottom: 12px;
  display: inline-flex;
}
.footer-brand-by {
  color: rgba(255,255,255,0.4);
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-brand p {
  color: rgba(255,255,255,0.42);
  font-size: 0.86rem;
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 320px;
}
.footer-socials { display: flex; gap: 8px; }
.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all .25s;
}
.footer-social-btn:hover {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
  transform: translateY(-2px);
  text-decoration: none;
}
.footer-col h4 {
  color: rgba(255,255,255,0.7);
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.42);
  font-size: 0.86rem;
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--orange); text-decoration: none; }
.footer-contact-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.42);
  font-size: 0.86rem;
}
.footer-contact-item svg { color: var(--orange); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,0.28); font-size: 0.78rem; }
.footer-legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal-links a {
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  font-size: 0.78rem;
  transition: color .2s;
}
.footer-legal-links a:hover { color: var(--orange); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav.main-nav .nav-links { display: none; }
  nav.main-nav .lang-toggle { display: none; }
  nav.main-nav .btn-nav { display: none; }
  nav.main-nav .nav-hamburger { display: flex; }
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 24px; padding: 28px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 70px 20px; }
  .page-header { padding: 70px 20px 70px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  nav.main-nav { padding: 0 20px; }
  .footer-top-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  footer { padding: 40px 20px 24px; }
  .page-header h1 { font-size: 1.95rem; }
  .final-cta { padding: 70px 20px; }
}

/* ═══════════════════════════════════════════════════════════
   OLD-SITE COMPONENTS — preserved from original design
   ═══════════════════════════════════════════════════════════ */

/* ── PAIN CARDS ── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 56px;
}
.pain-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all .3s;
  position: relative; overflow: hidden;
}
.pain-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.pain-card:hover {
  border-color: var(--orange);
  box-shadow: 0 12px 40px rgba(8,23,58,0.1);
  transform: translateY(-3px);
}
.pain-card:hover::before { transform: scaleX(1); }
.pain-card-num {
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 2px; color: var(--orange);
  margin-bottom: 18px;
  display: inline-block; padding: 4px 10px;
  background: var(--orange-soft);
  border-radius: 100px;
}
.pain-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.02em; }
.pain-card p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; }

/* ── VS COMPARISON ── */
.pain-vs { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 12px; }
.vs-col { background: var(--off-white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px 28px; }
.vs-col.bad { border-color: rgba(220,38,38,0.18); }
.vs-col.good { border-color: rgba(13,181,166,0.25); background: linear-gradient(135deg, rgba(13,181,166,0.04), rgba(255,255,255,0.5)); }
.vs-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; margin-bottom: 18px; letter-spacing: -0.015em; }
.vs-col.bad .vs-title { color: #B91C1C; }
.vs-col.good .vs-title { color: var(--green); }
.vs-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.vs-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--gray-600); line-height: 1.55; }
.vs-list li span { flex: 1; }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px 26px;
  position: relative; transition: all .3s;
}
.step:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow); }
.step-num {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(245,104,10,0.3);
}
.step h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.015em; }
.step p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.65; }

/* ── SERVICE CARDS (Onze diensten) ── */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 36px 32px;
  transition: all .3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.service-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: white; border-color: var(--navy); }
.service-card.featured h3 { color: white; }
.service-card.featured p { color: rgba(255,255,255,0.7); }
.service-card.featured .service-tags span { background: rgba(245,104,10,0.18); color: var(--orange); border-color: rgba(245,104,10,0.3); }
.service-card h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.02em; }
.service-card > p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; margin-bottom: 18px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.service-tags span { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 0.74rem; font-weight: 700; background: var(--gray-100); color: var(--gray-600); border: 1px solid transparent; }
.service-cta { display: inline-flex; align-items: center; gap: 6px; color: var(--orange); font-weight: 700; font-size: 0.88rem; text-decoration: none; }
.service-cta:hover { gap: 10px; transition: gap .2s; }

/* ── SUPPORT BAND (chat-mock layout) ── */
.support-band { padding: 110px 32px; background: linear-gradient(180deg, var(--off-white) 0%, white 100%); }
.support-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.support-features { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.support-feat { display: flex; gap: 14px; align-items: flex-start; }
.support-feat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,104,10,0.15), rgba(245,104,10,0.05));
  border: 1px solid rgba(245,104,10,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.support-feat-text h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; letter-spacing: -0.015em; }
.support-feat-text p { color: var(--gray-600); font-size: 0.92rem; line-height: 1.6; }

/* Henk chat-mock card (replacing old Marleen mock) */
.chat-mock {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.08);
}
.chat-header { display: flex; align-items: center; gap: 12px; padding: 18px 22px; background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.08); position: relative; }
.chat-avatar {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
}
.chat-info h4 { color: white; font-family: var(--font-display); font-size: 1rem; font-weight: 800; margin-bottom: 2px; }
.chat-info p { color: rgba(255,255,255,0.5); font-size: 0.78rem; }
.online-dot { position: absolute; right: 22px; top: 50%; transform: translateY(-50%); width: 10px; height: 10px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
.chat-messages { padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.msg.them div:first-child, .msg.us div:first-child {
  padding: 12px 16px; border-radius: 14px; font-size: 0.92rem; line-height: 1.5;
  max-width: 80%;
}
.msg.them { align-self: flex-start; }
.msg.us { align-self: flex-end; }
.msg.them div:first-child { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.92); border-top-left-radius: 4px; }
.msg.us div:first-child { background: var(--orange); color: white; border-top-right-radius: 4px; }
.msg-time { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-top: 4px; padding: 0 6px; }
.msg.us .msg-time { text-align: right; }

/* ── BLOG CARDS (with SVG headers) ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all .3s; text-decoration: none;
}
.blog-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-3px); text-decoration: none; }
.blog-card-img { height: 180px; }
.blog-card-body { padding: 26px 24px; }
.blog-tag { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 0.7rem; font-weight: 800; background: var(--orange-soft); color: var(--orange); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.blog-card h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--navy); line-height: 1.3; margin-bottom: 10px; letter-spacing: -0.018em; }
.blog-card p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.65; margin-bottom: 18px; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--gray-200); }
.blog-date { color: var(--gray-400); font-size: 0.78rem; font-weight: 600; }
.blog-read { color: var(--orange); font-weight: 700; font-size: 0.85rem; }

/* ── FAQ ── */
.faq-grid { display: flex; flex-direction: column; gap: 10px; max-width: 820px; margin: 0 auto; }
.faq-item { background: white; border: 1px solid var(--gray-200); border-radius: 14px; padding: 20px 26px; cursor: pointer; transition: all .25s; }
.faq-item:hover { border-color: var(--orange); }
.faq-item.open { border-color: var(--orange); box-shadow: 0 4px 20px rgba(8,23,58,0.06); }
.faq-q { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: 1.02rem; }
.faq-chevron { color: var(--orange); font-size: 0.8rem; transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; margin-top: 0; max-height: 0; overflow: hidden; transition: all .25s; }
.faq-item.open .faq-a { margin-top: 14px; max-height: 500px; }

/* ── COMMUNITY ── */
.community-section { padding: 110px 32px; background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%); color: white; position: relative; overflow: hidden; }
.community-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 50px 50px; pointer-events: none; }
.community-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.community-section .section-eyebrow { color: var(--orange); }
.community-section .section-title { color: white; }
.community-section .section-sub { color: rgba(255,255,255,0.6); }
.community-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
.comm-feat { padding: 20px 22px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; transition: all .25s; }
.comm-feat:hover { border-color: rgba(245,104,10,0.4); background: rgba(255,255,255,0.06); }
.comm-feat-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(245,104,10,0.18); border: 1px solid rgba(245,104,10,0.3); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.comm-feat h4 { color: white; font-family: var(--font-display); font-size: 0.96rem; font-weight: 800; margin-bottom: 4px; letter-spacing: -0.01em; }
.comm-feat p { color: rgba(255,255,255,0.55); font-size: 0.84rem; line-height: 1.5; }
.community-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 36px; text-align: center; }
.skool-logo { width: 64px; height: 64px; border-radius: 16px; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; margin: 0 auto 18px; box-shadow: 0 8px 24px rgba(245,104,10,0.3); }
.community-card h3 { color: white; font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.02em; }
.community-card p { color: rgba(255,255,255,0.55); font-size: 0.92rem; line-height: 1.6; margin-bottom: 22px; }
.cm-avatars { display: flex; justify-content: center; margin-bottom: 22px; }
.cm-av { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--navy); margin-left: -10px; display: flex; align-items: center; justify-content: center; color: white; font-family: var(--font-display); font-weight: 800; font-size: 0.85rem; }
.cm-av:first-child { margin-left: 0; }
.btn-community { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: white; padding: 14px 26px; border-radius: 12px; font-family: var(--font-body); font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all .25s; box-shadow: 0 8px 24px rgba(245,104,10,0.3); }
.btn-community:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(245,104,10,0.45); text-decoration: none; }

/* ── PROCESS / OVERSTAP CHECK ── */
.overstap-block { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); border-radius: var(--radius-xl); padding: 56px 48px; color: white; position: relative; overflow: hidden; margin-top: 48px; }
.overstap-block::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(245,104,10,0.2), transparent 70%); pointer-events: none; }
.overstap-pains { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0; }
.overstap-pain { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 20px; }
.overstap-pain-emoji { font-size: 1.6rem; margin-bottom: 8px; }
.overstap-pain strong { display: block; color: white; font-family: var(--font-display); font-weight: 800; margin-bottom: 4px; }
.overstap-pain span { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.5; }

/* ── PRICING CARD (BV oprichten) ── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.price-card {
  background: white; border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 36px 32px;
  position: relative; overflow: hidden; transition: all .3s;
}
.price-card.featured { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: white; border-color: var(--orange); }
.price-card.featured h3 { color: white; }
.price-card.featured p { color: rgba(255,255,255,0.7); }
.price-card.featured ul li { color: rgba(255,255,255,0.85); }
.price-card.featured .price-amount { color: white; }
.price-tag { position: absolute; top: 22px; right: 22px; background: var(--orange-soft); color: var(--orange); padding: 4px 12px; border-radius: 100px; font-size: 0.7rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; border: 1px solid rgba(245,104,10,0.3); }
.price-card.featured .price-tag { background: rgba(245,104,10,0.2); color: var(--orange); border-color: rgba(245,104,10,0.4); }
.price-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.02em; }
.price-card > p { color: var(--gray-600); font-size: 0.92rem; line-height: 1.6; margin-bottom: 22px; }
.price-amount { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; letter-spacing: -0.025em; }
.price-amount .pa-currency { font-size: 1.4rem; vertical-align: top; }
.price-when { color: var(--gray-400); font-size: 0.85rem; margin-bottom: 24px; }
.price-card ul { list-style: none; margin-bottom: 24px; }
.price-card ul li { padding: 7px 0; color: var(--gray-600); font-size: 0.92rem; display: flex; gap: 10px; }
.price-card ul li::before { content: '✓'; color: var(--orange); font-weight: 800; }

@media (max-width: 960px) {
  .pain-grid { grid-template-columns: 1fr; gap: 16px; }
  .pain-vs { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr; }
  .support-inner { grid-template-columns: 1fr; gap: 36px; }
  .blog-grid { grid-template-columns: 1fr; }
  .community-inner { grid-template-columns: 1fr; }
  .community-features { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .overstap-pains { grid-template-columns: 1fr; }
  .overstap-block { padding: 36px 28px; }
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   OLD-SITE RICH CSS — Service cards, BV options, Blog, FAQ, etc
   ═══════════════════════════════════════════════════════════ */

/* ── PAIN SECTION (also used on subpages) ── */
.pain-section { background: white; padding: 100px 32px; }
.pain-section .container { max-width: 1120px; margin: 0 auto; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 48px 0 56px; }
.pain-card {
  background: var(--off-white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 36px 30px;
  transition: all .3s; position: relative; overflow: hidden;
}
.pain-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), var(--orange-light)); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.pain-card:hover { border-color: var(--orange); box-shadow: 0 12px 40px rgba(8,23,58,0.1); transform: translateY(-3px); }
.pain-card:hover::before { transform: scaleX(1); }
.pain-card-num { font-family: var(--font-display); font-size: 0.78rem; font-weight: 800; letter-spacing: 2px; color: var(--orange); margin-bottom: 18px; display: inline-block; padding: 4px 10px; background: var(--orange-soft); border-radius: 100px; }
.pain-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.02em; }
.pain-card p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; }
.pain-vs { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 12px; }
.vs-col { background: var(--off-white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px 28px; }
.vs-col.bad { border-color: rgba(220,38,38,0.18); }
.vs-col.good { border-color: rgba(13,181,166,0.25); background: linear-gradient(135deg, rgba(13,181,166,0.04), rgba(255,255,255,0.5)); }
.vs-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; margin-bottom: 18px; letter-spacing: -0.015em; }
.vs-col.bad .vs-title { color: #B91C1C; }
.vs-col.good .vs-title { color: var(--green); }
.vs-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.vs-list li { display: flex; gap: 10px; font-size: 0.92rem; color: var(--gray-600); line-height: 1.5; }

/* ── STEP CARDS ── */
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }
.step-card { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 30px 26px; position: relative; transition: all .3s; }
.step-card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.step-num { width: 38px; height: 38px; border-radius: 12px; background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; margin-bottom: 18px; box-shadow: 0 6px 18px rgba(245,104,10,0.3); }
.step-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.015em; }
.step-card p { color: var(--gray-600); font-size: 0.88rem; line-height: 1.6; }

/* ── SERVICE CARDS ── */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.service-card {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 36px 32px;
  transition: all .3s; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), var(--orange-light)); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.service-card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%); border-color: var(--navy); color: white; grid-column: span 1; }
.service-card.featured::before { transform: scaleX(1); }
.service-card.featured h3 { color: white; }
.service-card.featured p { color: rgba(255,255,255,0.7); }
.service-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, rgba(245,104,10,0.15), rgba(245,104,10,0.05)); border: 1px solid rgba(245,104,10,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; color: var(--orange); }
.service-card.featured .service-icon { background: rgba(245,104,10,0.2); border-color: rgba(245,104,10,0.4); }
.service-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.018em; }
.service-card p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; margin-bottom: 18px; flex: 1; }
.service-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.service-tag { background: var(--gray-100); color: var(--gray-600); padding: 4px 10px; border-radius: 100px; font-size: 0.74rem; font-weight: 600; }
.service-card.featured .service-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
.service-cta { display: inline-flex; align-items: center; gap: 6px; color: var(--orange); font-weight: 700; font-size: 0.88rem; text-decoration: none; transition: gap .2s; }
.service-cta:hover { gap: 10px; text-decoration: none; }

/* ── BV OPTIONS ── */
.bv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 36px 0 48px; }
.bv-option {
  background: white; border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 36px 32px;
  cursor: pointer; transition: all .3s; position: relative;
}
.bv-option:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow); }
.bv-option.selected { border-color: var(--orange); background: linear-gradient(180deg, rgba(245,104,10,0.04), white 30%); }
.bv-option.selected::after { content: '✓'; position: absolute; top: 16px; right: 16px; width: 26px; height: 26px; background: var(--orange); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; }
.bv-option h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 8px; }
.bv-option .bv-price { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--orange); letter-spacing: -0.02em; margin-bottom: 14px; }
.bv-option p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.65; }
.bv-included {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px;
  margin-bottom: 36px;
}
.bv-included h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 18px; letter-spacing: -0.015em; }
.bv-included ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.bv-included li { display: flex; gap: 10px; color: var(--gray-600); font-size: 0.92rem; line-height: 1.6; }
.bv-included li svg { color: var(--orange); flex-shrink: 0; margin-top: 3px; }

/* ── BLOG GRID ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all .3s; text-decoration: none; display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow); text-decoration: none; }
.blog-card-img { height: 180px; position: relative; overflow: hidden; }
.blog-card-body { padding: 24px 22px; flex: 1; display: flex; flex-direction: column; }
.blog-tag { display: inline-block; background: var(--orange-soft); color: var(--orange); padding: 4px 12px; border-radius: 100px; font-size: 0.7rem; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 12px; align-self: flex-start; }
.blog-card-body h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.015em; line-height: 1.3; }
.blog-card-body p { color: var(--gray-500); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; flex: 1; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--gray-100); }
.blog-date { color: var(--gray-400); font-size: 0.78rem; font-weight: 500; }
.blog-read { color: var(--orange); font-size: 0.82rem; font-weight: 700; }

/* ── FAQ ── */
.faq-grid { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 48px auto 0; }
.faq-item {
  background: white; border: 1px solid var(--gray-200);
  border-radius: 14px; padding: 20px 24px;
  cursor: pointer; transition: all .25s;
}
.faq-item:hover { border-color: var(--orange); }
.faq-item.open { border-color: var(--orange); background: linear-gradient(180deg, rgba(245,104,10,0.03), white 30%); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 14px; font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: 1.02rem; letter-spacing: -0.015em; }
.faq-chevron { color: var(--orange); font-weight: 800; transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .35s, margin-top .35s; }
.faq-item.open .faq-a { max-height: 500px; margin-top: 14px; }

/* ── COMMUNITY ── */
.community-section {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 110px 32px; color: white; position: relative; overflow: hidden;
}
.community-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 50px 50px; pointer-events: none; }
.community-section::after { content: ''; position: absolute; bottom: -150px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(245,104,10,0.18), transparent 70%); pointer-events: none; }
.community-inner { max-width: 1120px; margin: 0 auto; position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.community-section h2 { color: white; }
.community-section .section-sub { color: rgba(255,255,255,0.7); }
.community-features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 32px; }
.comm-feat { display: flex; gap: 14px; align-items: flex-start; }
.comm-feat-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(245,104,10,0.18); border: 1px solid rgba(245,104,10,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--orange); }
.comm-feat h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: white; margin-bottom: 4px; letter-spacing: -0.015em; }
.comm-feat p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.55; }
.community-card { background: rgba(255,255,255,0.04); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 38px; }
.skool-logo { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; margin-bottom: 22px; box-shadow: 0 8px 24px rgba(245,104,10,0.35); }
.community-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: white; margin-bottom: 10px; letter-spacing: -0.02em; }
.community-card p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.65; margin-bottom: 22px; }
.cm-avatars { display: flex; gap: -8px; margin-bottom: 22px; }
.cm-av { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--navy); display: flex; align-items: center; justify-content: center; color: white; font-family: var(--font-display); font-weight: 800; font-size: 0.85rem; margin-left: -8px; }
.cm-av:first-child { margin-left: 0; }
.btn-community { display: inline-block; background: var(--orange); color: white; padding: 14px 26px; border-radius: 12px; font-weight: 800; font-size: 0.9rem; text-decoration: none; transition: all .25s; box-shadow: 0 8px 24px rgba(245,104,10,0.3); }
.btn-community:hover { background: var(--orange-dark); transform: translateY(-1px); text-decoration: none; }

/* ── SUPPORT BAND (Contact page) ── */
.support-band { padding: 100px 32px; background: var(--off-white); }
.support-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.support-features { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.support-feat { display: flex; gap: 16px; align-items: flex-start; }
.support-feat-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--orange-soft); border: 1px solid rgba(245,104,10,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--orange); font-size: 1.1rem; }
.support-feat-text h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; letter-spacing: -0.018em; }
.support-feat-text p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.65; }

/* Henk chat mock for /contact/ */
.chat-mock { background: white; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); overflow: hidden; box-shadow: var(--shadow); }
.chat-header { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: white; padding: 18px 22px; display: flex; align-items: center; gap: 12px; }
.chat-avatar { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; box-shadow: 0 4px 14px rgba(245,104,10,0.35); }
.chat-info { flex: 1; }
.chat-info h4 { color: white; font-family: var(--font-display); font-weight: 800; font-size: 1rem; letter-spacing: -0.015em; }
.chat-info p { color: rgba(255,255,255,0.55); font-size: 0.78rem; }
.online-dot { width: 10px; height: 10px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 3px rgba(10,158,138,0.3); animation: pulse 2s infinite; }
.chat-messages { padding: 22px; display: flex; flex-direction: column; gap: 12px; max-height: 380px; overflow-y: auto; }
.chat-messages .msg { max-width: 85%; }
.chat-messages .msg.them { align-self: flex-start; }
.chat-messages .msg.us { align-self: flex-end; }
.chat-messages .msg > div:first-child { padding: 12px 16px; border-radius: 14px; font-size: 0.92rem; line-height: 1.55; }
.chat-messages .msg.them > div:first-child { background: var(--gray-100); color: var(--text); border-top-left-radius: 4px; }
.chat-messages .msg.us > div:first-child { background: var(--blue); color: white; border-top-right-radius: 4px; }
.msg-time { font-size: 0.7rem; color: var(--gray-400); margin-top: 4px; padding: 0 4px; }
.msg.us .msg-time { text-align: right; }

/* ── FINAL CARDS (multi-path final CTA) ── */
.final-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 32px auto; max-width: 880px; }
.final-card { background: rgba(255,255,255,0.04); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 22px 18px; cursor: pointer; transition: all .25s; text-align: left; }
.final-card:hover { border-color: var(--orange); background: rgba(245,104,10,0.08); transform: translateY(-2px); }
.final-card-icon { width: 40px; height: 40px; border-radius: 12px; margin-bottom: 14px; display: flex; align-items: center; justify-content: center; }
.final-card h4 { font-family: var(--font-display); font-size: 0.92rem; font-weight: 800; color: white; margin-bottom: 6px; letter-spacing: -0.015em; }
.final-card p { color: rgba(255,255,255,0.55); font-size: 0.78rem; line-height: 1.5; }
.final-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ── RESPONSIVE OVERRIDES ── */
@media (max-width: 960px) {
  .pain-grid, .service-grid, .blog-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-vs, .bv-grid, .community-inner, .support-inner { grid-template-columns: 1fr; gap: 28px; }
  .final-cards { grid-template-columns: repeat(2, 1fr); }
  .bv-included ul { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .step-grid, .final-cards { grid-template-columns: 1fr; }
}

/* HENK NAV LINK — pulserende oranje dot, valt op */
.nav-links a.henk-link {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  font-weight: 700;
}
.henk-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(10,158,138,0.18);
  animation: henk-pulse 2s ease-in-out infinite;
  display: inline-block;
}
@keyframes henk-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(10,158,138,0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(10,158,138,0.08); }
}
#mobileNavMenu .henk-dot { width: 9px; height: 9px; margin-right: 8px; vertical-align: middle; }

/* ════════════════════════════════════════════════════════
   NAV DROPDOWN — "Wat we doen ▼"
   ════════════════════════════════════════════════════════ */
.nav-links li.has-dropdown { position: relative; }
.nav-links a.dropdown-trigger { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-links a.dropdown-trigger .caret {
  font-size: 0.95rem; line-height: 1;
  display: inline-block; transition: transform .2s;
  color: var(--orange); font-weight: 800;
}
.nav-links li.has-dropdown:hover a.dropdown-trigger .caret { transform: rotate(180deg); }
.nav-links .dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: -16px;
  background: white; border: 1px solid var(--gray-200); border-radius: 14px;
  box-shadow: 0 18px 50px rgba(8,23,58,0.18);
  list-style: none; padding: 8px; margin: 0;
  min-width: 240px;
  display: flex !important; flex-direction: column !important; gap: 0 !important;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility 0s linear .18s;
  z-index: 200;
}
.nav-links li.has-dropdown:hover .dropdown-menu,
.nav-links li.has-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition-delay: 0s;
}
.nav-links .dropdown-menu li { display: block; }
.nav-links .dropdown-menu a {
  display: block !important; padding: 10px 14px !important;
  border-radius: 9px;
  color: var(--navy) !important;
  font-size: 0.92rem !important; font-weight: 600 !important;
  letter-spacing: -0.005em;
  transition: all .15s;
}
.nav-links .dropdown-menu a:hover { background: var(--off-white); color: var(--orange) !important; }

/* ════════════════════════════════════════════════════════
   FOOTER — Weena Rotterdam achtergrondfoto met blend
   ════════════════════════════════════════════════════════ */
.site-footer { position: relative; overflow: hidden; isolation: isolate; }
.footer-bg-image {
  position: absolute; inset: 0; z-index: -2;
  background-image: url('/assets/weena-rotterdam.jpg');
  background-size: cover; background-position: center;
  filter: blur(1.5px) saturate(0.75) brightness(0.5);
  opacity: 0.85;
}
.footer-bg-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(8,23,58,0.78) 0%, rgba(8,23,58,0.65) 35%, rgba(8,23,58,0.72) 80%, rgba(8,23,58,0.92) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(245,104,10,0.16), transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(24,72,200,0.2), transparent 60%);
}

/* ════════════════════════════════════════════════════════
   BEDRIJFSGEGEVENS CHIPS — voor Over Ons (vervangt lijstweergave)
   ════════════════════════════════════════════════════════ */
.ov-info-chips { display: flex; flex-wrap: wrap; gap: 12px; max-width: 760px; margin: 0 auto; justify-content: center; }
.ov-info-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; border: 1px solid var(--gray-200);
  padding: 12px 18px; border-radius: 100px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.92rem;
  color: var(--navy); letter-spacing: -0.01em;
  transition: all .25s; text-decoration: none;
}
.ov-info-chip:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(8,23,58,0.08); text-decoration: none; }
.ov-info-chip-icon {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ov-info-chip.c-orange .ov-info-chip-icon { background: rgba(245,104,10,0.14); color: var(--orange); }
.ov-info-chip.c-blue .ov-info-chip-icon { background: rgba(24,72,200,0.14); color: var(--blue); }
.ov-info-chip.c-green .ov-info-chip-icon { background: rgba(10,158,138,0.14); color: var(--green); }
.ov-info-chip.c-purple .ov-info-chip-icon { background: rgba(99,34,216,0.14); color: var(--purple); }
.ov-info-chip.c-teal .ov-info-chip-icon { background: rgba(13,181,166,0.14); color: var(--teal); }

/* ════════════════════════════════════════════════════════
   FIX OFFERTE TOTAL — number was being overridden by generic span selector
   ════════════════════════════════════════════════════════ */
.of-summary-total #ofTotal {
  font-size: inherit !important;
  color: inherit !important;
  font-weight: inherit !important;
}
.of-summary-total .of-summary-suffix {
  font-size: 0.9rem; color: var(--gray-400); font-weight: 500;
}

/* Nav fits 10 items — kleinere gap en font */
.nav-links { gap: 18px !important; }
.nav-links a { font-size: 0.84rem !important; }
@media (max-width: 1280px) {
  .nav-links { gap: 14px !important; }
  .nav-links a { font-size: 0.8rem !important; }
}
