:root {
  --gold: #f9b706;
  --gold-hover: #e0a505;
  --gold-light: rgba(249, 183, 6, 0.12);
  --gold-border: rgba(249, 183, 6, 0.3);
  --blue-light: #cbe5f6;
  --blue-light-dark: #a8d4ef;
  --navy: #0e2040;
  --navy-mid: #152d56;
  --navy-light: #1e3f72;
  --white: #ffffff;
  --off-white: #f8fafc;
  --grey-50: #f9fafb;
  --grey-100: #f3f4f6;
  --grey-200: #e5e7eb;
  --grey-300: #d1d5db;
  --grey-400: #9ca3af;
  --grey-500: #6b7280;
  --grey-700: #374151;
  --grey-800: #1f2937;
  --text: #111827;

  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 2px 8px rgba(0,0,0,0.09);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;

  --max-w: 1200px;
  --header-h: 72px;
  --topbar-h: 36px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.2;
  color: var(--text);
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.125rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.3125rem); }
h4 { font-size: 1.0625rem; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 112px 0; }

.section-dark {
  background: var(--navy);
  color: white;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: white; }
.section-dark p { color: rgba(255,255,255,0.78); }

.section-gold { background: var(--gold); }
.section-off { background: var(--off-white); }
.section-light-blue { background: var(--blue-light); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.flex-center { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--grey-500); }
.text-white { color: white; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.8125rem; }
.text-lg { font-size: 1.0625rem; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.hidden { display: none !important; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.875rem; }
.btn-full { width: 100%; }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(249,183,6,0.45);
}

.btn-navy {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--grey-300);
}
.btn-outline-navy:hover {
  border-color: var(--navy);
  background: var(--off-white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--navy);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold-light);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.badge-gold { background: var(--gold-light); color: var(--gold-hover); border: 1px solid var(--gold-border); }
.badge-navy { background: rgba(14,32,64,0.08); color: var(--navy); }
.badge-blue { background: var(--blue-light); color: var(--navy); }

.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; }
.check-icon {
  width: 22px; height: 22px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon svg { width: 11px; height: 11px; color: var(--navy); stroke-width: 2.5; }
.check-item p { font-size: 0.9375rem; color: var(--grey-700); margin: 0; line-height: 1.5; }
.check-item strong { color: var(--text); }

.info-box {
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-box svg { width: 20px; height: 20px; color: var(--navy-mid); flex-shrink: 0; margin-top: 1px; }
.info-box p { color: var(--navy); font-size: 0.9375rem; line-height: 1.6; margin: 0; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid var(--grey-200);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.site-header.is-hero {
  background: transparent;
  border-color: transparent;
}
.site-header.is-hero.is-scrolled,
.site-header.is-scrolled {
  background: white;
  border-color: var(--grey-200);
  box-shadow: var(--shadow-md);
}

.topbar {
  height: var(--topbar-h);
  background: var(--navy);
  overflow: hidden;
  transition: height 0.22s ease, opacity 0.18s ease;
}
.site-header.is-scrolled .topbar {
  height: 0;
  opacity: 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-link,
.topbar-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.775rem;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
  transition: color 0.15s;
}
.topbar-link:hover { color: white; }
.topbar-link svg,
.topbar-item svg { width: 12px; height: 12px; flex-shrink: 0; }
.topbar-left .topbar-link,
.topbar-left .topbar-item {
  padding-right: 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.topbar-left .topbar-link:last-child,
.topbar-left .topbar-item:last-child { border-right: none; padding-right: 0; }
.topbar-right .topbar-link,
.topbar-right .topbar-item {
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.topbar-right .topbar-link:first-child,
.topbar-right .topbar-item:first-child { border-left: none; padding-left: 0; }

.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  flex-shrink: 0;
  line-height: 1.25;
  transition: color var(--transition);
}
.logo-img { height: 40px; width: auto; display: block; }
.site-header.is-hero:not(.is-scrolled) .logo-img { filter: brightness(0) invert(1); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--grey-700);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links > li > a:hover { color: var(--navy); background: var(--grey-100); }
.site-header.is-hero:not(.is-scrolled) .nav-links > li > a { color: rgba(255,255,255,0.82); }
.site-header.is-hero:not(.is-scrolled) .nav-links > li > a:hover { color: white; background: rgba(255,255,255,0.1); }

.nav-links .has-dropdown > a svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-links .has-dropdown:hover > a svg { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--grey-200);
  padding: 8px;
  padding-top: 18px;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  transform: translateX(-50%) translateY(-4px);
  z-index: 200;
}
.has-dropdown { position: relative; }
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--grey-700);
  transition: all var(--transition);
}
.nav-dropdown a:hover { background: var(--off-white); color: var(--navy); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
  transition: color var(--transition);
}
.nav-phone svg { width: 16px; height: 16px; color: var(--gold); }
.site-header.is-hero:not(.is-scrolled) .nav-phone { color: white; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--navy);
  transition: color var(--transition);
}
.nav-toggle svg { width: 22px; height: 22px; }
.site-header.is-hero:not(.is-scrolled) .nav-toggle { color: white; }

.mobile-nav {
  display: none;
  position: fixed;
  top: calc(var(--topbar-h) + var(--header-h));
  left: 0; right: 0; bottom: 0;
  background: white;
  z-index: 999;
  overflow-y: auto;
  padding: 16px 16px 32px;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.is-open { display: block; }

.mobile-nav-section { margin-bottom: 8px; }
.mobile-nav-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-700);
  padding: 12px 16px 4px;
}
.mobile-nav a {
  display: block;
  padding: 11px 16px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--grey-700);
  transition: all var(--transition);
}
.mobile-nav a:hover { background: var(--off-white); color: var(--navy); }
.mobile-nav-cta { padding: 16px; border-top: 1px solid var(--grey-200); margin-top: 8px; display: flex; flex-direction: column; gap: 10px; }
.mobile-nav-cta a { color: white; }
.mobile-nav-cta a:hover { background: inherit; }

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #111;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.45) 55%,
    rgba(0,0,0,0.20) 100%
  );
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--topbar-h) + 92px) 0 88px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  width: fit-content;
  background: rgba(30,63,114,0.55);
  border: 1px solid rgba(100,160,255,0.3);
  color: rgba(180,215,255,0.95);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 {
  color: white;
  max-width: 740px;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--gold); }
.hero-lead {
  color: rgba(255,255,255,0.72);
  font-size: 1.125rem;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 52px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.78);
  font-size: 0.875rem;
  font-weight: 500;
}
.hero-trust-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

.trust-bar {
  background: transparent;
  padding: 0;
  margin-top: -52px;
  position: relative;
  z-index: 2;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy-mid);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.trust-stat {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-stat:last-child { border-right: none; }
.trust-stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #a8d4ff;
  line-height: 1;
  margin-bottom: 4px;
}
.trust-stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.62);
  font-weight: 500;
}

.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-hover);
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.section-dark .section-tag { color: var(--gold); background: rgba(249,183,6,0.12); border-color: rgba(249,183,6,0.2); }
.section-title { margin-bottom: 14px; letter-spacing: -0.01em; }
.section-subtitle { color: var(--grey-500); font-size: 1rem; line-height: 1.75; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.62); }

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

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--grey-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-md);
  transform: translateY(-3px);
}
.service-icon {
  width: 50px; height: 50px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background var(--transition);
  flex-shrink: 0;
}
.service-card:hover .service-icon { background: var(--gold); }
.service-icon svg { width: 24px; height: 24px; color: var(--navy); }
.service-card h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.service-card p { color: var(--grey-500); font-size: 0.9rem; flex: 1; line-height: 1.65; }
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 18px;
  transition: gap var(--transition), color var(--transition);
}
.service-arrow svg { width: 16px; height: 16px; }
.service-card:hover .service-arrow { gap: 10px; color: var(--gold-hover); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: var(--grey-200);
  z-index: 0;
}
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px;
  background: white;
  border: 2px solid var(--grey-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 auto 20px;
  transition: all var(--transition);
}
.process-step:hover .step-num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.875rem; color: var(--grey-500); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.stars { display: flex; gap: 2px; margin-bottom: 14px; }
.star { width: 16px; height: 16px; color: var(--gold); fill: var(--gold); }
.review-text { color: rgba(255,255,255,0.82); font-size: 0.9375rem; line-height: 1.7; flex: 1; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--navy);
  flex-shrink: 0;
}
.review-name { font-weight: 600; color: white; font-size: 0.9375rem; }
.review-place { font-size: 0.8125rem; color: rgba(255,255,255,0.72); }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 12px 20px;
  margin-top: 40px;
}
.google-badge img { width: 20px; height: 20px; }
.google-badge-score { font-size: 1.5rem; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; color: white; }
.google-badge-label { font-size: 0.8125rem; color: rgba(255,255,255,0.6); }

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: white;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.is-open {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-border);
}
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
  width: 100%;
  text-align: left;
  background: transparent;
  transition: background var(--transition);
}
.faq-item.is-open .faq-trigger { background: var(--gold-light); }
.faq-plus {
  width: 26px; height: 26px;
  border: 1.5px solid var(--grey-300);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-plus svg { width: 12px; height: 12px; transition: transform var(--transition); }
.faq-item.is-open .faq-plus { background: var(--gold); border-color: var(--gold); }
.faq-item.is-open .faq-plus svg { transform: rotate(45deg); }
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-item.is-open .faq-body { grid-template-rows: 1fr; }
.faq-inner {
  overflow: hidden;
}
.faq-answer {
  padding: 0 24px 20px;
  color: var(--grey-700);
  font-size: 0.9375rem;
  line-height: 1.75;
}
.faq-answer p { margin-bottom: 0.5em; }
.faq-answer p:last-child { margin-bottom: 0; }

.locations-wrap { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.loc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-700);
  transition: all var(--transition);
  text-decoration: none;
}
.loc-pill svg { width: 14px; height: 14px; color: var(--gold); }
.loc-pill:hover { border-color: var(--gold); color: var(--navy); background: var(--gold-light); }

.cta-section {
  background: var(--navy);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
  margin: 64px clamp(20px, 5vw, 80px);
  border-radius: 24px;
}
.cta-deco {
  position: absolute;
  top: 0; right: 0;
  width: 420px; height: 100%;
  pointer-events: none;
}
.cta-deco span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-deco span:nth-child(1) { width: 320px; height: 320px; top: -80px; right: -60px; }
.cta-deco span:nth-child(2) { width: 200px; height: 200px; bottom: -40px; right: 80px; background: rgba(212,160,23,0.08); }
.cta-deco span:nth-child(3) { width: 100px; height: 100px; top: 30px; right: 200px; background: rgba(255,255,255,0.03); }
.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 680px;
}
.cta-inner h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: white;
  margin: 0;
  line-height: 1.2;
}
.cta-accent { color: var(--gold); }
.cta-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-avatars {
  display: flex;
}
.cta-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  object-fit: cover;
  margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.625rem; font-weight: 700; color: white;
}
.cta-avatars .cta-avatar:first-child { margin-left: 0; }
.cta-avatar-count {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.6rem;
  font-weight: 800;
}
.cta-social-proof p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.4;
}
.cta-social-proof p strong { color: white; }
.cta-trust-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 10px 20px;
  width: fit-content;
  flex-wrap: wrap;
  row-gap: 8px;
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.cta-trust-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.cta-trust-item strong { color: white; }
.cta-trust-divider {
  width: 1px; height: 20px;
  background: rgba(255,255,255,0.2);
  margin: 0 16px;
  flex-shrink: 0;
}
.cta-trust-stars { color: #FBBC04; letter-spacing: 1px; font-size: 1rem; }
.cta-trust-google { width: 20px; height: 20px; flex-shrink: 0; }
.cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}
.cta-phone svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.cta-phone a { color: rgba(255,255,255,0.80); font-weight: 600; text-decoration: none; transition: color var(--transition); white-space: nowrap; }
.cta-phone a:hover { color: var(--gold); }
@media (max-width: 640px) {
  .cta-actions { flex-direction: column; align-items: flex-start; }
  .cta-trust-bar { padding: 10px 16px; row-gap: 6px; }
  .cta-trust-divider { display: none; }
}
@media (max-width: 380px) {
  .cta-trust-bar { width: 100%; }
  .cta-trust-item { white-space: normal; font-size: 0.8125rem; }
}

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.content-block.reverse .content-image { order: -1; }
.content-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--grey-100);
  position: relative;
}
.content-image img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  gap: 12px;
}
.img-placeholder svg { width: 48px; height: 48px; color: var(--gold); opacity: 0.6; }
.img-placeholder span { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }

.feature-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.feature-item { display: flex; gap: 14px; }
.feature-dot-wrap {
  width: 32px; height: 32px;
  background: var(--gold-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-dot-wrap svg { width: 16px; height: 16px; color: var(--gold-hover); }
.feature-item h4 { font-size: 0.9375rem; margin-bottom: 3px; }
.feature-item p { font-size: 0.875rem; color: var(--grey-500); margin: 0; }

.price-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--grey-200);
}
.price-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.price-card.featured h3 { color: white; }
.price-range {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  margin: 12px 0;
}
.price-note { font-size: 0.8125rem; color: var(--grey-400); }
.price-card.featured .price-note { color: rgba(255,255,255,0.5); }

.page-hero {
  background: var(--navy);
  padding: calc(var(--topbar-h) + 100px) 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 60%, rgba(249,183,6,0.08) 0%, transparent 65%),
    linear-gradient(135deg, #091729 0%, #0e2040 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.78); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg { width: 12px; height: 12px; }
.page-hero h1 { color: white; max-width: 760px; margin-bottom: 18px; }
.page-hero h1 .accent { color: var(--gold); }
.page-hero .lead {
  color: rgba(255,255,255,0.72);
  font-size: 1.0625rem;
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.68);
  font-weight: 500;
}
.hero-meta-item svg { width: 16px; height: 16px; color: var(--gold); }

.contact-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-label { font-size: 0.875rem; font-weight: 600; color: var(--grey-700); }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(249,183,6,0.15);
}

.site-footer {
  background: #1e1e1e;
  color: rgba(255,255,255,0.65);
}
.footer-top { padding: 64px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo { color: white; display: inline-flex; margin-bottom: 16px; }
.footer-brand .logo-text span { color: rgba(255,255,255,0.68); }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; max-width: 300px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--navy); }
.social-btn svg { width: 16px; height: 16px; }

.footer-col h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.72); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.62);
}
.footer-bottom a { color: rgba(255,255,255,0.62); }
.footer-bottom a:hover { color: rgba(255,255,255,0.9); }

@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-stat:nth-child(2) { border-right: none; }
  .trust-stat { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .trust-stat:nth-last-child(-n+2) { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; --topbar-h: 0px; }
  .topbar { display: none; }
  .container { padding: 0 20px; }

  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
  .section-sm { padding: 36px 0; }

  .grid-2, .grid-3, .content-block { grid-template-columns: 1fr; gap: 32px; }
  .content-block.reverse .content-image { order: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }

  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; }

  .hero { align-items: flex-start; }
  .hero-content { padding: calc(var(--header-h) + 28px) 0 80px; }
  .hero h1 { font-size: 1.875rem; line-height: 1.25; }
  .hero-lead { font-size: 0.9375rem; margin-bottom: 24px; }
  .hero-badge { font-size: 0.75rem; padding: 5px 12px; margin-bottom: 14px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: 2; }
  .hero-form-card { max-width: 100%; }
  .hero-social-proof { margin-top: 20px; padding-top: 20px; }

  .trust-bar { margin-top: -44px; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-buttons .btn { width: 100%; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .page-hero { padding: 104px 0 44px; }
  .form-row { grid-template-columns: 1fr; }

  .section-header { margin-bottom: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-stat:nth-child(2) { border-right: none; }
  h1 { font-size: 1.875rem; }
  .trust-stat-number { font-size: 1.625rem; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim { opacity: 0; }
.anim.visible { animation: fadeUp 0.55s ease both; }
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }
.anim-delay-5 { animation-delay: 0.5s; }

.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.intro-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--grey-100);
}
.intro-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.intro-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.intro-image-badge-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.intro-image-badge-icon svg { width: 18px; height: 18px; color: var(--navy); }
.intro-badge-text strong { display: block; font-size: 0.9375rem; font-weight: 700; color: var(--text); }
.intro-badge-text span { font-size: 0.8125rem; color: var(--grey-500); }

.intro-split .section-tag {
  padding: 6px 18px;
  margin-top: 12px;
  margin-bottom: 20px;
  font-size: 0.75rem;
  white-space: nowrap;
}
.intro-split .section-tag svg {
  width: 13px;
  height: 13px;
}

@media (max-width: 768px) {
  .intro-split { grid-template-columns: 1fr; gap: 36px; }
  section[aria-labelledby="intro-heading"] { padding-top: 80px !important; }
}

.about-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 32px;
  color: white;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: var(--gold);
  opacity: 0.07;
  border-radius: 50%;
}

.map-placeholder {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: linear-gradient(145deg, var(--navy-mid), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255,255,255,0.3);
  font-size: 0.875rem;
}
.map-placeholder svg { width: 40px; height: 40px; opacity: 0.4; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.stat-box {
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}
.stat-box-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--navy);
}
.stat-box-label { font-size: 0.8125rem; color: var(--grey-500); }

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

.services-overview {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
.service-overview-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.service-overview-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.service-overview-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}
.service-overview-icon svg { width: 24px; height: 24px; }
.service-overview-body h3 { font-size: 1.0625rem; margin: 0 0 4px; color: var(--navy); }
.service-overview-body p { font-size: 0.875rem; color: var(--grey-500); margin: 0 0 6px; line-height: 1.5; }
.service-overview-price { font-size: 0.8125rem; font-weight: 600; color: var(--gold); }
.service-overview-arrow { color: var(--grey-300); flex-shrink: 0; transition: color var(--transition), transform var(--transition); }
.service-overview-arrow svg { width: 20px; height: 20px; }
.service-overview-card:hover .service-overview-arrow { color: var(--gold); transform: translateX(4px); }
@media (max-width: 640px) {
  .service-overview-card { grid-template-columns: 44px 1fr; }
  .service-overview-arrow { display: none; }
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.project-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--grey-100);
}
.project-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.project-item:hover img { transform: scale(1.04); }
@media (max-width: 768px) {
  .project-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .project-gallery { grid-template-columns: 1fr; }
}

.prijsgids-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.prijsgids-image img {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.prijsgids-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-top: 12px;
}
@media (max-width: 768px) {
  .prijsgids-split { grid-template-columns: 1fr; gap: 36px; }
  .prijsgids-image { text-align: center; }
  .prijsgids-image img { margin: 0 auto; }
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-left { display: flex; flex-direction: column; gap: 0; }
.hero-left .hero-badge { margin-bottom: 20px; }
.hero-left h1 { margin-bottom: 20px; }
.hero-left .hero-lead { margin-bottom: 24px; }
.hero-left .hero-trust { margin-bottom: 28px; }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
  gap: 12px;
}
.hero-sp-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}
.hero-sp-item svg:not(.hero-sp-google):not(.hero-sp-stars svg) {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--gold);
}
.hero-sp-item strong { color: white; font-weight: 700; }
.hero-sp-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.hero-sp-google {
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.hero-sp-stars {
  display: flex;
  gap: 1px;
}
.hero-sp-stars svg { width: 14px; height: 14px; }
@media (max-width: 540px) {
  .hero-sp-divider { display: none; }
  .hero-social-proof { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 20px; padding-top: 20px; }
  .hero-sp-item { font-size: 0.8125rem; }
}

.hero-form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
  position: relative;
}
.hero-form-header {
  margin-bottom: 24px;
}
.hero-form-avatar {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.hero-form-header strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.hero-form-header span {
  font-size: 0.8125rem;
  color: var(--grey-500);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-form-header span::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-form { display: flex; flex-direction: column; gap: 14px; }
.hero-form-field { display: flex; flex-direction: column; gap: 5px; }
.hero-form-field label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
}
.hero-form-field input,
.hero-form-field select,
.hero-form-field textarea {
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.9375rem;
  color: var(--text);
  background: white;
  transition: border-color var(--transition);
  font-family: inherit;
  -webkit-appearance: none;
}
.hero-form-field textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}
.hero-form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%236b7280' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}
.hero-form-field input:focus,
.hero-form-field select:focus,
.hero-form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.hero-form-field input::placeholder,
.hero-form-field textarea::placeholder { color: var(--grey-300); }
.btn-full { width: 100%; justify-content: center; }
.hero-form-note {
  font-size: 0.75rem;
  color: var(--grey-700);
  text-align: center;
  margin: 0;
}
@media (max-width: 960px) {
  .hero-split { grid-template-columns: 1fr; gap: 56px; }
  .hero-right { order: 2; }
  .hero-form-card { max-width: 540px; margin: 0 auto; }
  .hero-social-proof { margin-bottom: 0; padding-bottom: 0; }
}
@media (max-width: 640px) {
  .hero-form-card { padding: 24px; }
}

.service-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-photo-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-photo-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--grey-100);
  position: relative;
}
.service-photo-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(10, 25, 55, 0.92) 0%,
    rgba(10, 25, 55, 0.55) 45%,
    rgba(10, 25, 55, 0.18) 70%,
    transparent 100%);
  transition: background 0.35s ease;
  pointer-events: none;
}
.service-photo-card:hover .service-photo-img::after {
  background: linear-gradient(to top,
    rgba(10, 25, 55, 0.96) 0%,
    rgba(10, 25, 55, 0.80) 55%,
    rgba(10, 25, 55, 0.40) 80%,
    transparent 100%);
}
.service-photo-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-photo-card:hover .service-photo-img img { transform: scale(1.05); }
.service-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px 22px;
  z-index: 2;
}
.service-photo-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin: 0 0 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
}
.service-photo-card:hover .service-photo-desc {
  max-height: 100px;
  opacity: 1;
}
.service-photo-overlay h3 {
  font-size: 1.0625rem;
  color: white;
  margin: 0 0 10px;
  line-height: 1.3;
}
.service-photo-overlay .service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
}
.service-photo-overlay .service-arrow svg { width: 16px; height: 16px; transition: transform var(--transition); }
.service-photo-card:hover .service-arrow svg { transform: translateX(4px); }
@media (max-width: 900px) {
  .service-photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .service-photo-grid { grid-template-columns: 1fr; }
}

.service-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.service-nav-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-nav-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--gold);
}
.service-nav-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.service-nav-icon svg { width: 26px; height: 26px; }
.service-nav-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.service-nav-body h3 {
  font-size: 0.9375rem;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}
.service-nav-body p {
  font-size: 0.8125rem;
  color: var(--grey-500);
  margin: 0;
  line-height: 1.5;
}
.service-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 6px;
}
.service-nav-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.service-nav-card:hover .service-nav-link svg { transform: translateX(4px); }
.service-nav-thumb {
  flex-shrink: 0;
  width: 96px; height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--grey-100);
}
.service-nav-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-nav-card:hover .service-nav-thumb img { transform: scale(1.06); }
@media (max-width: 900px) {
  .service-nav-grid { grid-template-columns: 1fr; }
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.case-study-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.case-study-photo {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--grey-100);
}
.case-study-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.case-study-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.case-study-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.case-study-body h3 {
  font-size: 0.9375rem;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.4;
}
.case-study-body p {
  font-size: 0.875rem;
  color: var(--grey-500);
  line-height: 1.65;
  margin: 0;
  font-style: italic;
}
.case-study-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.case-study-stars .google-g {
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.case-study-stars .cs-stars {
  font-size: 1rem;
  color: #FBBC04;
  letter-spacing: 1px;
  line-height: 1;
}
@media (max-width: 900px) {
  .case-study-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .case-study-grid { grid-template-columns: 1fr; }
}

.faq-quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 64px 80px;
  background: var(--blue-bg);
  border-radius: var(--radius-xl);
  border-top: 4px solid var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), 4px 0 16px rgba(0,0,0,0.04), -4px 0 16px rgba(0,0,0,0.04);
}
.faq-quote { margin-top: 80px; }
.faq-quote svg { width: 40px; height: 40px; color: var(--gold); opacity: 0.6; }
.faq-quote blockquote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.45;
  max-width: 820px;
}
.faq-quote cite {
  font-size: 0.9375rem;
  color: var(--grey-500);
  font-style: normal;
}
@media (max-width: 768px) {
  .faq-quote { padding: 40px 28px; }
  .faq-quote blockquote { font-size: 1.25rem; }
}

.nieuws-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}
.nieuws-block {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.nieuws-block-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--grey-100);
  margin: 0;
}
.nieuws-block-title svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.nieuws-embed { padding: 0; }
.nieuws-embed iframe { display: block; }
@media (max-width: 768px) {
  .nieuws-grid { grid-template-columns: 1fr; }
  .nieuws-embed iframe { min-height: 420px !important; }
}

.google-embed-wrap {
  min-height: 80px;
  margin: 0 0 8px;
  background: white;
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
}

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

.hero-form-success {
  text-align: center;
  padding: 40px 20px;
}
.hero-form-success-icon {
  width: 56px; height: 56px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: #16a34a;
}
.hero-form-success-icon svg { width: 28px; height: 28px; }
.hero-form-success strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.hero-form-success p {
  color: var(--grey-500);
  font-size: 0.9375rem;
  margin: 0;
}

@media (max-width: 960px) {
  .hero-content {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}
@media (max-width: 768px) {
  .hero {
    align-items: flex-start !important;
  }
  .hero-content {
    padding: 92px 20px 80px !important;
  }
  .hero-split {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .hero-right {
    order: 2 !important;
  }
  .hero-form-card {
    max-width: 100% !important;
  }
  .trust-bar {
    margin-top: -44px !important;
  }
}

.signal-grid > div {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.signal-grid > div:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
}
