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

:root {
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --blue-light: #EFF6FF;
  --dark: #1A1A1A;
  --gray: #3D3D3D;
  --gray-mid: #6B6B6B;
  --bg: #F7F7F8;
  --white: #FFFFFF;
  --border: #E4E4E2;
  --shadow: 0 4px 24px rgba(26,26,26,0.08);
  --shadow-lg: 0 12px 48px rgba(26,26,26,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --font-head: 'Barlow Condensed', 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); color: var(--gray); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

#main-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 68px; display: flex; align-items: center; gap: 32px; }
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-text { font-family: var(--font-head); font-size: 1.2rem; font-weight: 900; color: var(--dark); letter-spacing: 0.01em; text-transform: uppercase; }
.logo-text span { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-links > li { position: relative; }
.nav-links > li > a { display: flex; align-items: center; gap: 4px; padding: 8px 11px; font-size: 0.85rem; font-weight: 500; color: var(--gray-mid); border-radius: 8px; transition: color 0.2s, background 0.2s; }
.nav-links > li > a:hover, .nav-links > li.active > a { color: var(--dark); background: var(--bg); }
.nav-links > li.active > a { color: var(--blue); }
.nav-links > li.has-sub:hover .sub-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.sub-menu { position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px; min-width: 220px; opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity 0.2s, transform 0.2s; }
.sub-menu a { display: block; padding: 8px 12px; font-size: 0.84rem; border-radius: 8px; color: var(--gray-mid); transition: background 0.15s; }
.sub-menu a:hover { background: var(--bg); color: var(--dark); }
.nav-cta { background: var(--blue) !important; color: var(--white) !important; padding: 8px 18px !important; border-radius: 50px !important; font-weight: 600 !important; font-size: 0.84rem !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--blue-dark) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.page-wrapper { padding-top: 68px; }

.hero { background: var(--dark); color: var(--white); padding: 88px 24px 72px; position: relative; overflow: hidden; min-height: 85vh; display: flex; align-items: center; }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 65%); pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; width: 100%; display: grid; grid-template-columns: 1fr 300px; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.3); color: #93C5FD; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 22px; }
.hero h1 { font-family: var(--font-head); font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 900; line-height: 1.0; letter-spacing: 0.01em; text-transform: uppercase; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--blue); display: block; }
.hero-sub { font-size: clamp(0.88rem, 2vw, 1rem); color: rgba(255,255,255,0.68); line-height: 1.65; max-width: 480px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats-box { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 32px; display: flex; flex-direction: column; gap: 20px; }
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat + .hero-stat { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }
.hs-num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 900; color: var(--blue); line-height: 1; }
.hs-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; font-family: var(--font-body); cursor: pointer; transition: transform 0.15s, background 0.2s; border: none; text-decoration: none; }
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 4px 20px rgba(37,99,235,0.35); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { transform: translateY(-2px); }

.usp-strip { background: var(--blue); padding: 18px 24px; }
.usp-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.usp-item { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 0.85rem; font-weight: 500; }
.usp-icon { width: 34px; height: 34px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }

.section { padding: 80px 24px; }
.section-alt { background: var(--bg); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.section-title { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.05; letter-spacing: 0.01em; text-transform: uppercase; color: var(--dark); margin-bottom: 14px; }
.section-sub { font-size: 0.97rem; color: var(--gray-mid); max-width: 560px; line-height: 1.65; margin-bottom: 44px; }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: box-shadow 0.2s, transform 0.2s; }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-icon { width: 48px; height: 48px; background: var(--blue-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 14px; }
.card h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; }
.card p { font-size: 0.86rem; color: var(--gray-mid); line-height: 1.6; }

.content-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.content-text h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 14px; line-height: 1.1; }
.content-text p { color: var(--gray-mid); line-height: 1.7; margin-bottom: 14px; }
.content-text ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 18px 0; }
.content-text ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--gray); line-height: 1.55; }
.content-text ul li::before { content: ''; width: 20px; height: 20px; background: var(--blue-light); border-radius: 50%; flex-shrink: 0; margin-top: 2px; background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%232563EB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

.video-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.video-wrap iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-top: 16px; }
.stat-box { background: var(--white); padding: 24px 20px; text-align: center; }
.stat-number { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 5px; }
.stat-label { font-size: 0.78rem; color: var(--gray-mid); line-height: 1.4; }

.review-block { background: var(--dark); color: var(--white); border-radius: var(--radius-lg); padding: 36px; position: relative; }
.review-block::before { content: '"'; position: absolute; top: 12px; left: 28px; font-family: var(--font-head); font-size: 5rem; color: var(--blue); opacity: 0.3; line-height: 1; }
.review-text { font-size: 1rem; line-height: 1.7; margin-bottom: 16px; position: relative; }
.review-author { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.5); }

.locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }
.location-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.location-card h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 4px; }
.location-card p { font-size: 0.8rem; color: var(--gray-mid); line-height: 1.5; }
.new-badge { display: inline-block; background: var(--blue); color: var(--white); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 2px 8px; border-radius: 50px; margin-bottom: 6px; }

.prose { max-width: 760px; }
.prose h2 { font-family: var(--font-head); font-size: 1.6rem; font-weight: 900; text-transform: uppercase; color: var(--dark); margin: 32px 0 10px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 900; text-transform: uppercase; color: var(--dark); margin: 24px 0 8px; }
.prose p { color: var(--gray-mid); line-height: 1.75; margin-bottom: 14px; font-size: 0.93rem; }
.prose ul { list-style: none; display: flex; flex-direction: column; gap: 7px; margin: 14px 0 20px; }
.prose ul li { padding-left: 18px; position: relative; color: var(--gray-mid); font-size: 0.9rem; line-height: 1.6; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; background: var(--blue); border-radius: 50%; }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

.page-header { background: var(--dark); color: var(--white); padding: 60px 24px 44px; }
.page-header-inner { max-width: 1200px; margin: 0 auto; }
.breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.4); }
.breadcrumb span { margin: 0 6px; }
.page-header h1 { font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; letter-spacing: 0.01em; text-transform: uppercase; line-height: 1.05; margin-bottom: 10px; }
.page-header p { font-size: 0.97rem; color: rgba(255,255,255,0.62); max-width: 520px; line-height: 1.6; }

.page-layout { max-width: 1200px; margin: 0 auto; padding: 60px 24px; display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
.sticky-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 14px; }
.sidebar-card { background: var(--bg); border-radius: var(--radius-lg); padding: 26px; }
.sidebar-card h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 12px; }
.sidebar-card p { font-size: 0.83rem; color: var(--gray-mid); line-height: 1.6; margin-bottom: 14px; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; padding: 18px 22px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-body); font-size: 0.92rem; font-weight: 600; color: var(--dark); transition: background 0.15s; }
.faq-q:hover { background: var(--bg); }
.faq-q svg { flex-shrink: 0; transition: transform 0.25s; color: var(--blue); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 22px 18px; font-size: 0.88rem; color: var(--gray-mid); line-height: 1.7; }

.cta-banner { background: linear-gradient(135deg, var(--dark) 0%, #0f1526 100%); padding: 80px 24px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(37,99,235,0.14) 0%, transparent 70%); }
.cta-banner h2 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; text-transform: uppercase; color: var(--white); margin-bottom: 10px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.6); font-size: 0.97rem; margin-bottom: 32px; position: relative; }
.cta-banner .btn { position: relative; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.88rem; color: var(--dark); background: var(--white); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); }
.form-group textarea { min-height: 110px; resize: vertical; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.team-card img { width: 100%; height: 220px; object-fit: cover; object-position: top; display: block; }
.team-info { padding: 24px; }
.team-role { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.team-info h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 10px; }
.team-info p { font-size: 0.85rem; color: var(--gray-mid); line-height: 1.7; margin-bottom: 12px; }
.team-email { font-size: 0.82rem; color: var(--blue); }

.afspraak-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 8px; }
.afspraak-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s; text-decoration: none; display: block; color: inherit; }
.afspraak-card:hover { box-shadow: 0 8px 32px rgba(37,99,235,0.15); transform: translateY(-3px); border-color: var(--blue); }
.afspraak-card h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 900; text-transform: uppercase; color: var(--dark); margin-bottom: 4px; }
.afspraak-card p { font-size: 0.83rem; color: var(--gray-mid); line-height: 1.5; margin-bottom: 14px; }
.afspraak-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--blue); color: white; font-size: 0.82rem; font-weight: 700; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.06em; padding: 8px 16px; border-radius: 50px; }
.afspraak-card:hover .afspraak-btn { background: var(--blue-dark); }

#main-footer { background: var(--dark); color: rgba(255,255,255,0.7); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 60px 24px 44px; display: grid; grid-template-columns: 2fr 1fr 2fr; gap: 48px; }
.footer-logo { font-family: var(--font-head); font-size: 1.3rem; font-weight: 900; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.footer-logo span { color: var(--blue); }
.footer-brand p { font-size: 0.85rem; line-height: 1.65; margin-bottom: 18px; }
.footer-contact { display: flex; flex-direction: column; gap: 5px; }
.footer-contact a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-contact a:hover { color: var(--blue); }
.footer-nav h4, .footer-locations h4 { font-family: var(--font-head); font-size: 0.82rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-nav a:hover { color: var(--white); }
.footer-locations ul { display: flex; flex-direction: column; gap: 10px; }
.footer-locations li { font-size: 0.8rem; line-height: 1.5; color: rgba(255,255,255,0.6); }
.footer-locations strong { color: rgba(255,255,255,0.88); font-weight: 500; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 18px 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: rgba(255,255,255,0.3); transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

@media (max-width: 900px) { .hero-inner, .content-split, .footer-inner { grid-template-columns: 1fr; gap: 40px; } .hero-stats-box { display: none; } .page-layout { grid-template-columns: 1fr; padding: 40px 20px; } .sticky-sidebar { position: static; } .locations-grid { grid-template-columns: repeat(2, 1fr); } .section { padding: 56px 20px; } }
@media (max-width: 768px) {
  .nav-toggle { display: flex; } .nav-links { display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; align-items: flex-start; padding: 24px 20px; gap: 2px; overflow-y: auto; z-index: 999; } .nav-links.open { display: flex; } .nav-links > li { width: 100%; } .nav-links > li > a { width: 100%; font-size: 1rem; padding: 12px 16px; border-radius: 10px; } .sub-menu { position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; border: none; background: var(--bg); margin: 4px 0 4px 12px; border-radius: 10px; } .has-sub .sub-menu { display: none; } .has-sub.sub-open .sub-menu { display: block; } .nav-cta { display: block; text-align: center !important; margin-top: 8px; }
  .hero { padding: 56px 20px 48px; min-height: auto; } .hero h1 { font-size: clamp(2.2rem, 10vw, 3.2rem); word-break: break-word; } .hero-sub { font-size: 0.88rem; } .hero-actions { flex-direction: column; } .hero-actions .btn { width: 100%; justify-content: center; }
  .usp-strip-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; } .section { padding: 48px 20px; } .cards-grid { grid-template-columns: 1fr; } .locations-grid { grid-template-columns: 1fr 1fr; } .stats-row { grid-template-columns: repeat(3,1fr); } .page-header { padding: 44px 20px 32px; } .page-header h1 { font-size: 1.8rem; } .form-row { grid-template-columns: 1fr; } .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 44px 20px 28px; } .footer-bottom { flex-direction: column; align-items: flex-start; } .cta-banner { padding: 56px 20px; } .cta-banner h2 { font-size: 1.8rem; } .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) { .usp-strip-inner { grid-template-columns: 1fr; } .locations-grid { grid-template-columns: 1fr; } .stats-row { grid-template-columns: 1fr; } .nav-inner { padding: 0 16px; } .section { padding: 40px 16px; } .page-layout { padding: 32px 16px; } }
